Commit 330e892c authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'def69553'

* commit 'def69553':
  h264_cabac: Break infinite loops

Conflicts:
	libavcodec/h264_cabac.c

See: cdf0877bMerged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 2bc84181 def69553
......@@ -1714,7 +1714,7 @@ decode_cabac_residual_internal(H264Context *h, int16_t *block,
\
if( coeff_abs >= 15 ) { \
int j = 0; \
while(get_cabac_bypass( CC ) && j<30) { \
while (get_cabac_bypass(CC) && j < 30) { \
j++; \
} \
\
......
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