Commit b5ad3a0c authored by mru's avatar mru

blackfin: use DCT function pointer in dct_quantize_bfin()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18974 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8c443813
...@@ -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