Commit 0da6f2ee authored by astrange's avatar astrange

Simplify loop condition for readability.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14052 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d30cf9a1
...@@ -5514,7 +5514,7 @@ static av_always_inline void decode_cabac_residual_internal( H264Context *h, DCT ...@@ -5514,7 +5514,7 @@ static av_always_inline void decode_cabac_residual_internal( H264Context *h, DCT
} }
} }
for( coeff_count--; coeff_count >= 0; coeff_count-- ) { while( coeff_count-- ) {
uint8_t *ctx = coeff_abs_level1_ctx[node_ctx] + abs_level_m1_ctx_base; uint8_t *ctx = coeff_abs_level1_ctx[node_ctx] + abs_level_m1_ctx_base;
int j= scantable[index[coeff_count]]; int j= scantable[index[coeff_count]];
......
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