summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorGildas Bazin <gbazi@altern.org>2004-10-22 19:55:57 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-22 19:55:57 +0000
commit03393cb766d3c0a60a1c04e7515670b7225fd185 (patch)
tree4830f1373d560b36247199a59e2b7589880382de /libavcodec/h264.c
parentd5af70c3b8d50edf54fdd4e7e9304827c44d0fb0 (diff)
small typo patch by (Gildas Bazin <gbazin at altern dot org>)
Originally committed as revision 3624 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
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] ) )