Commit 08ec1397 authored by Måns Rullgård's avatar Måns Rullgård

blackfin: use DCT function pointer in dct_quantize_bfin()

Originally committed as revision 18974 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2b7a351e
...@@ -25,10 +25,6 @@ ...@@ -25,10 +25,6 @@
#include "libavcodec/mpegvideo.h" #include "libavcodec/mpegvideo.h"
#include "dsputil_bfin.h" #include "dsputil_bfin.h"
void ff_bfin_fdct (DCTELEM *block) attribute_l1_text;
static int dct_quantize_bfin (MpegEncContext *s, static int dct_quantize_bfin (MpegEncContext *s,
DCTELEM *block, int n, DCTELEM *block, int n,
int qscale, int *overflow) int qscale, int *overflow)
...@@ -41,7 +37,7 @@ static int dct_quantize_bfin (MpegEncContext *s, ...@@ -41,7 +37,7 @@ static int dct_quantize_bfin (MpegEncContext *s,
int max=0; int max=0;
PROF("fdct",0); PROF("fdct",0);
ff_bfin_fdct (block); s->dsp.fdct(block);
EPROF(); EPROF();
PROF("denoise",1); PROF("denoise",1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment