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);
}
_______________________________________________
FFmpeg-soc mailing list
[email protected]
http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc