[FFmpeg-soc] [soc]: r1384 - rv40/rv34.c
kostya
subversion at mplayerhq.hu
Thu Sep 20 07:01:08 CEST 2007
Author: kostya
Date: Thu Sep 20 07:01:07 2007
New Revision: 1384
Log:
av_clip() is redundant here
Modified:
rv40/rv34.c
Modified: rv40/rv34.c
==============================================================================
--- rv40/rv34.c (original)
+++ rv40/rv34.c Thu Sep 20 07:01:07 2007
@@ -461,7 +461,7 @@ int ff_rv34_get_omega_signed(GetBitConte
static inline int rv34_decode_dquant(GetBitContext *gb, int quant)
{
if(get_bits1(gb))
- return av_clip(quant + rv34_dquant_tab[quant * 2 + get_bits1(gb)], 0, 31);
+ return quant + rv34_dquant_tab[quant * 2 + get_bits1(gb)];
else
return get_bits(gb, 5);
}
More information about the FFmpeg-soc
mailing list