Skip to content

Commit 37c41b6

Browse files
committed
Add two missing import declatioms
MLT_EXPORT will be defined as __declspec(dllimport) in this case
1 parent ac933c3 commit 37c41b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/modules/sdl2/consumer_sdl2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
#undef MLT_IMAGE_FORMAT // only yuv422 working currently
3737

38-
extern pthread_mutex_t mlt_sdl_mutex;
38+
MLT_EXPORT extern pthread_mutex_t mlt_sdl_mutex;
3939

4040
/** This classes definition.
4141
*/

src/modules/sdl2/consumer_sdl2_audio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include <string.h>
3434
#include <sys/time.h>
3535

36-
extern pthread_mutex_t mlt_sdl_mutex;
36+
MLT_EXPORT extern pthread_mutex_t mlt_sdl_mutex;
3737

3838
/** This classes definition.
3939
*/

0 commit comments

Comments
 (0)