From 08ec1397f66df7de8e4a99e12e35a3005e88d3d5 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Thu, 28 May 2009 22:35:56 +0000 Subject: blackfin: use DCT function pointer in dct_quantize_bfin() Originally committed as revision 18974 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/bfin/mpegvideo_bfin.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libavcodec/bfin') diff --git a/libavcodec/bfin/mpegvideo_bfin.c b/libavcodec/bfin/mpegvideo_bfin.c index d1c33a10ac..5c96f8f29d 100644 --- a/libavcodec/bfin/mpegvideo_bfin.c +++ b/libavcodec/bfin/mpegvideo_bfin.c @@ -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 @@ static int dct_quantize_bfin (MpegEncContext *s, int max=0; PROF("fdct",0); - ff_bfin_fdct (block); + s->dsp.fdct(block); EPROF(); PROF("denoise",1); -- cgit v1.2.3