[FFmpeg-cvslog] r9294 - in trunk/libavcodec: Makefile mpegvideo.c
mhoffman
subversion
Tue Jun 12 21:34:06 CEST 2007
Author: mhoffman
Date: Tue Jun 12 21:34:06 2007
New Revision: 9294
Log:
integrating MPV_common_init_bfin into the build system and mpegvideo.c
Modified:
trunk/libavcodec/Makefile
trunk/libavcodec/mpegvideo.c
Modified: trunk/libavcodec/Makefile
==============================================================================
--- trunk/libavcodec/Makefile (original)
+++ trunk/libavcodec/Makefile Tue Jun 12 21:34:06 2007
@@ -402,6 +402,7 @@ OBJS-$(CONFIG_WMV3_DECODER) +
endif
OBJS-$(TARGET_ARCH_BFIN) += bfin/dsputil_bfin.o \
+ bfin/mpegvideo_bfin.o \
ASM_OBJS-$(TARGET_ARCH_BFIN) += bfin/pixels_bfin.o \
bfin/idct_bfin.o \
Modified: trunk/libavcodec/mpegvideo.c
==============================================================================
--- trunk/libavcodec/mpegvideo.c (original)
+++ trunk/libavcodec/mpegvideo.c Tue Jun 12 21:34:06 2007
@@ -295,6 +295,9 @@ int DCT_common_init(MpegEncContext *s)
#ifdef ARCH_POWERPC
MPV_common_init_ppc(s);
#endif
+#ifdef ARCH_BFIN
+ MPV_common_init_bfin(s);
+#endif
#ifdef CONFIG_ENCODERS
s->fast_dct_quantize= s->dct_quantize;
More information about the ffmpeg-cvslog
mailing list