Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/modules/jackrack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ set_target_properties(mltjackrack PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${MLT_MOD
add_library(mltladspa MODULE factory.c)


generate_export_header(mltladspa
EXPORT_MACRO_NAME MLTLADSPA_EXPORT
)
generate_export_header(mltladspa)
target_compile_options(mltladspa PRIVATE ${MLT_COMPILE_OPTIONS})

target_link_libraries(mltladspa PRIVATE mlt Threads::Threads)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/sdl2/consumer_sdl2.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

#undef MLT_IMAGE_FORMAT // only yuv422 working currently

extern pthread_mutex_t mlt_sdl_mutex;
MLT_EXPORT extern pthread_mutex_t mlt_sdl_mutex;

/** This classes definition.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/modules/sdl2/consumer_sdl2_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <string.h>
#include <sys/time.h>

extern pthread_mutex_t mlt_sdl_mutex;
MLT_EXPORT extern pthread_mutex_t mlt_sdl_mutex;

/** This classes definition.
*/
Expand Down