Commit 99145022 authored by zhaoxiu.zeng's avatar zhaoxiu.zeng Committed by Michael Niedermayer

avcodec/vc1_block: Use av_clip_uintp2()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ec908ce4
...@@ -930,7 +930,7 @@ static int vc1_decode_intra_block(VC1Context *v, int16_t block[64], int n, ...@@ -930,7 +930,7 @@ static int vc1_decode_intra_block(VC1Context *v, int16_t block[64], int n,
s->bdsp.clear_block(block); s->bdsp.clear_block(block);
/* XXX: Guard against dumb values of mquant */ /* XXX: Guard against dumb values of mquant */
mquant = (mquant < 1) ? 0 : ((mquant > 31) ? 31 : mquant); mquant = av_clip_uintp2(mquant, 5);
/* Set DC scale - y and c use the same */ /* Set DC scale - y and c use the same */
s->y_dc_scale = s->y_dc_scale_table[mquant]; s->y_dc_scale = s->y_dc_scale_table[mquant];
......
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