changeset 5132:a3b82ca01e68
libavcodec
integrating MPV_common_init_bfin into the build system and mpegvideo.c
author |
mhoffman |
date |
Tue, 12 Jun 2007 19:34:06 +0000 |
parents |
757efe20a3c8 |
children |
5039df79f8cb |
files |
Makefile mpegvideo.c |
diffstat |
2 files changed, 4 insertions(+), 0 deletions(-)
[+]
|
line diff
--- a/Makefile Tue Jun 12 19:13:50 2007 +0000
+++ b/Makefile Tue Jun 12 19:34:06 2007 +0000
@@ -402,6 +402,7 @@
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 \
--- a/mpegvideo.c Tue Jun 12 19:13:50 2007 +0000
+++ b/mpegvideo.c Tue Jun 12 19:34:06 2007 +0000
@@ -295,6 +295,9 @@
#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;