diff options
Diffstat (limited to 'src/libffmpeg/Makefile.am')
| -rw-r--r-- | src/libffmpeg/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libffmpeg/Makefile.am b/src/libffmpeg/Makefile.am index 44297a054..45e97dcaa 100644 --- a/src/libffmpeg/Makefile.am +++ b/src/libffmpeg/Makefile.am @@ -12,8 +12,12 @@ libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = xineplug_decode_ff.la -xineplug_decode_ff_la_SOURCES = xine_decoder.c -xineplug_decode_ff_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_decode_ff_la_SOURCES = xine_decoder.c xine_encoder.c +# The dxr3 uses ffmpegs MPEG encoder by dlopen()ing the ffmpeg plugin and +# dlsym()ing the necessary function. Therefore we must allow more exported +# symbols and cannot use @XINE_PLUGIN_MIN_SYMS@ +#xineplug_decode_ff_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_decode_ff_la_LDFLAGS = -avoid-version -module xineplug_decode_ff_la_LIBADD = $(XINE_LIB) \ $(top_builddir)/src/libffmpeg/libavcodec/libavcodec.la \ $(top_builddir)/src/libffmpeg/libavcodec/libpostproc/libpostprocess.la |
