mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
arm: remove disabled function dct_unquantize_h263_inter_iwmmxt()
This commit is contained in:
parent
4d4c7f8ef0
commit
8342a82680
@ -93,29 +93,9 @@ static void dct_unquantize_h263_intra_iwmmxt(MpegEncContext *s,
|
||||
block_orig[0] = level;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void dct_unquantize_h263_inter_iwmmxt(MpegEncContext *s,
|
||||
DCTELEM *block, int n, int qscale)
|
||||
{
|
||||
int nCoeffs;
|
||||
|
||||
assert(s->block_last_index[n]>=0);
|
||||
|
||||
if(s->ac_pred)
|
||||
nCoeffs=63;
|
||||
else
|
||||
nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ];
|
||||
|
||||
ippiQuantInvInter_Compact_H263_16s_I(block, nCoeffs+1, qscale);
|
||||
}
|
||||
#endif
|
||||
|
||||
void MPV_common_init_iwmmxt(MpegEncContext *s)
|
||||
{
|
||||
if (!(mm_flags & AV_CPU_FLAG_IWMMXT)) return;
|
||||
|
||||
s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_iwmmxt;
|
||||
#if 0
|
||||
s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_iwmmxt;
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user