Commit 03393cb7 authored by Gildas Bazin's avatar Gildas Bazin Committed by Michael Niedermayer

small typo patch by (Gildas Bazin <gbazin at altern dot org>)

Originally committed as revision 3624 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d5af70c3
......@@ -4115,7 +4115,7 @@ static int decode_cabac_b_mb_sub_type( H264Context *h ) {
if( !get_cabac( &h->cabac, &h->cabac_state[36] ) )
return 0; /* B_Direct_8x8 */
if( !get_cabac( &h->cabac, &h->cabac_state[37] ) )
return 1 + get_cabac( &h->cabac, &h->cabac_state[38] ); /* B_L0_8x8, B_L1_8x8 */
return 1 + get_cabac( &h->cabac, &h->cabac_state[39] ); /* B_L0_8x8, B_L1_8x8 */
type = 3;
if( get_cabac( &h->cabac, &h->cabac_state[38] ) ) {
if( get_cabac( &h->cabac, &h->cabac_state[39] ) )
......
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