diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2007-09-25 08:43:49 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2007-09-25 08:43:49 +0000 |
commit | 58f66029b6bb8f14ae0dcadf0cd73d92f38ccb38 (patch) | |
tree | 5def54e26bcbe203fb63895ab1ad7a03aa01fcb9 /libavcodec/h264.c | |
parent | e0a5d771323cd376bdc438f74222ccb644ab549e (diff) | |
download | ffmpeg-58f66029b6bb8f14ae0dcadf0cd73d92f38ccb38.tar.gz |
reindent
Originally committed as revision 10573 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 16258afff0..8537b9672d 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -5634,14 +5634,14 @@ decode_intra_mb: decode_cabac_residual(h, h->mb + 64*i8x8, 5, 4*i8x8, scan8x8, h->dequant8_coeff[IS_INTRA( mb_type ) ? 0:1][s->qscale], 64); } else { - qmul = h->dequant4_coeff[IS_INTRA( mb_type ) ? 0:3][s->qscale]; - for( i4x4 = 0; i4x4 < 4; i4x4++ ) { - const int index = 4*i8x8 + i4x4; - //av_log( s->avctx, AV_LOG_ERROR, "Luma4x4: %d\n", index ); + qmul = h->dequant4_coeff[IS_INTRA( mb_type ) ? 0:3][s->qscale]; + for( i4x4 = 0; i4x4 < 4; i4x4++ ) { + const int index = 4*i8x8 + i4x4; + //av_log( s->avctx, AV_LOG_ERROR, "Luma4x4: %d\n", index ); //START_TIMER - decode_cabac_residual(h, h->mb + 16*index, 2, index, scan, qmul, 16); + decode_cabac_residual(h, h->mb + 16*index, 2, index, scan, qmul, 16); //STOP_TIMER("decode_residual") - } + } } } else { uint8_t * const nnz= &h->non_zero_count_cache[ scan8[4*i8x8] ]; |