summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/Makefile.am
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-05-25 18:34:54 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-05-25 18:34:54 +0000
commit8a964239cdbe666e012774c0cd30859579319cf1 (patch)
tree42013d1fb37cf6dcb1cf8d04b6619162f76be312 /src/libffmpeg/libavcodec/Makefile.am
parente7852acb9ab9af964a59a677186c1da548174500 (diff)
downloadxine-lib-8a964239cdbe666e012774c0cd30859579319cf1.tar.gz
xine-lib-8a964239cdbe666e012774c0cd30859579319cf1.tar.bz2
compiling libavcodec's encoding part as an MPEG encoder suitable for the DXR3
* libavcodec/mpegvideo.c has been modified to work without the need to compile libavcodec/motion_est.c to save compilation time (we don't need motion estimation when encoding I-frames only anyway) * the patch to libavcodec/i386/mpegvideo_mmx_template.c has been reverted, because the encoder crashes with it CVS patchset: 4930 CVS date: 2003/05/25 18:34:54
Diffstat (limited to 'src/libffmpeg/libavcodec/Makefile.am')
-rw-r--r--src/libffmpeg/libavcodec/Makefile.am9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libffmpeg/libavcodec/Makefile.am b/src/libffmpeg/libavcodec/Makefile.am
index a27478a5a..14140396a 100644
--- a/src/libffmpeg/libavcodec/Makefile.am
+++ b/src/libffmpeg/libavcodec/Makefile.am
@@ -3,12 +3,12 @@ include $(top_srcdir)/misc/Makefile.common
SUBDIRS = armv4l i386 mlib alpha libpostproc
## we include ppc/* files since auto* doesn't dive into.
-EXTRA_DIST = fdctref.c imgresample.c motion_est_template.c svq3.c wmv2.c \
+EXTRA_DIST = fdctref.c motion_est_template.c svq3.c wmv2.c \
ppc/dsputil_ppc.c ppc/libavcodec_ppc_dummy.c ppc/mpegvideo_altivec.c \
ppc/dsputil_altivec.c ppc/fft_altivec.c ppc/Makefile.am ppc/mpegvideo_ppc.c \
ppc/dsputil_altivec.h ppc/idct_altivec.c
-AM_CFLAGS = $(LIBFFMPEG_CFLAGS) -DCONFIG_RISKY
+AM_CFLAGS = $(LIBFFMPEG_CFLAGS) -DCONFIG_RISKY -DCONFIG_ENCODERS
ASFLAGS =
noinst_LTLIBRARIES = libavcodec.la
@@ -40,12 +40,15 @@ libavcodec_la_SOURCES = \
mpegvideo.c \
msmpeg4.c \
opts.c \
+ ratecontrol.c \
rv10.c \
simple_idct.c \
svq1.c \
utils.c \
wmadec.c
-#imgresample.c
+
+# these are currently unneeded
+EXTRA_DIST += imgresample.c motion_est.c
libavcodec_la_LDFLAGS = \
$(top_builddir)/src/libffmpeg/libavcodec/armv4l/libavcodec_armv4l.la \