# HG changeset patch # User mru # Date 1243550156 0 # Node ID 4b63d4691d4a9a163134a560be9d583f69fca8be # Parent c65cfd4ad0009e637e39e241aa8ec5943904fc02 blackfin: use DCT function pointer in dct_quantize_bfin() diff -r c65cfd4ad000 -r 4b63d4691d4a bfin/mpegvideo_bfin.c --- a/bfin/mpegvideo_bfin.c Thu May 28 17:19:28 2009 +0000 +++ b/bfin/mpegvideo_bfin.c Thu May 28 22:35:56 2009 +0000 @@ -25,10 +25,6 @@ #include "libavcodec/mpegvideo.h" #include "dsputil_bfin.h" - -void ff_bfin_fdct (DCTELEM *block) attribute_l1_text; - - static int dct_quantize_bfin (MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow) @@ -41,7 +37,7 @@ int max=0; PROF("fdct",0); - ff_bfin_fdct (block); + s->dsp.fdct(block); EPROF(); PROF("denoise",1);