This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Simplify loop condition for readability.
Originally committed as revision 14052 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alexander Strange
17 years ago
parent
9f734c3b57
commit
47775cb8de
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/h264.c
+ 1
- 1
libavcodec/h264.c
View File
@@ -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;
int j= scantable[index[coeff_count]];
Write
Preview
Loading…
Cancel
Save