From 03393cb766d3c0a60a1c04e7515670b7225fd185 Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Fri, 22 Oct 2004 19:55:57 +0000 Subject: small typo patch by (Gildas Bazin ) Originally committed as revision 3624 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h264.c') diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 83c89dd9cd..6ad4bf606d 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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] ) ) -- cgit v1.2.3