mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
blackfin: use DCT function pointer in dct_quantize_bfin()
Originally committed as revision 18974 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2b7a351eb9
commit
08ec1397f6
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user