diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dxr3/dxr3_decode_video.c | 5 | ||||
-rw-r--r-- | src/libffmpeg/Makefile.am | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/src/dxr3/dxr3_decode_video.c b/src/dxr3/dxr3_decode_video.c index 15084853a..2a4721fe4 100644 --- a/src/dxr3/dxr3_decode_video.c +++ b/src/dxr3/dxr3_decode_video.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: dxr3_decode_video.c,v 1.34 2003/05/23 10:52:40 mroi Exp $ + * $Id: dxr3_decode_video.c,v 1.35 2003/05/28 01:52:19 komadori Exp $ */ /* dxr3 video decoder plugin. @@ -28,9 +28,6 @@ #include <sys/types.h> #include <sys/ioctl.h> -#if defined(__sun) -#include <sys/ioccom.h> -#endif #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/src/libffmpeg/Makefile.am b/src/libffmpeg/Makefile.am index 45e97dcaa..0ef516358 100644 --- a/src/libffmpeg/Makefile.am +++ b/src/libffmpeg/Makefile.am @@ -12,12 +12,17 @@ libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = xineplug_decode_ff.la +if HAVE_DXR3 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 +else +xineplug_decode_ff_la_SOURCES = xine_decoder.c +xineplug_decode_ff_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +endif + xineplug_decode_ff_la_LIBADD = $(XINE_LIB) \ $(top_builddir)/src/libffmpeg/libavcodec/libavcodec.la \ $(top_builddir)/src/libffmpeg/libavcodec/libpostproc/libpostprocess.la |