# HG changeset patch # User mhoffman # Date 1181676846 0 # Node ID a3b82ca01e68b44362af982dd17429a7001c72aa # Parent 757efe20a3c8f0ec42207415aed8d4f5d489d184 integrating MPV_common_init_bfin into the build system and mpegvideo.c diff -r 757efe20a3c8 -r a3b82ca01e68 Makefile --- 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 \ diff -r 757efe20a3c8 -r a3b82ca01e68 mpegvideo.c --- 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;