diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-18 23:55:19 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-18 23:55:19 +0000 |
commit | 7231ccf4d53cea4854d4168640d6b3809d3a7771 (patch) | |
tree | 24ef5cc11c176bb61e91894b6589d4cfd263580e /libavcodec/h264_cabac.c | |
parent | 2b3649f656d68924bd9616d61bd252e7eb64bfec (diff) | |
download | ffmpeg-7231ccf4d53cea4854d4168640d6b3809d3a7771.tar.gz |
Cosmetic, get rid of &x[0]
Originally committed as revision 21309 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264_cabac.c')
-rw-r--r-- | libavcodec/h264_cabac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cabac.c b/libavcodec/h264_cabac.c index 1375e9e4f7..9eceedbd7c 100644 --- a/libavcodec/h264_cabac.c +++ b/libavcodec/h264_cabac.c @@ -740,7 +740,7 @@ static int decode_cabac_intra_mb_type(H264Context *h, int ctx_base, int intra_sl return 0; /* I4x4 */ state += 2; }else{ - if( get_cabac_noinline( &h->cabac, &state[0] ) == 0 ) + if( get_cabac_noinline( &h->cabac, state ) == 0 ) return 0; /* I4x4 */ } |