diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-10 08:43:08 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-11-11 11:49:54 +0100 |
commit | 4cb9f1a77432de6f368df69bebbc082368a88c86 (patch) | |
tree | 3f9e2e32805620cbad6ee69e1aa6702f7d46ef73 /libavcodec | |
parent | 60b055133485891405722bc9722e2c74fc9764b8 (diff) | |
download | ffmpeg-4cb9f1a77432de6f368df69bebbc082368a88c86.tar.gz |
h264_cabac: fix one fill_rectangle() indentation level
Bug-Id: CID 1087088
Diffstat (limited to 'libavcodec')
-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 a55a8f3985..5a7cdf0adf 100644 --- a/libavcodec/h264_cabac.c +++ b/libavcodec/h264_cabac.c @@ -2189,7 +2189,7 @@ decode_intra_mb: } }else ref=0; - fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, ref, 1); + fill_rectangle(&h->ref_cache[list][ scan8[0] ], 4, 4, 8, ref, 1); } } for(list=0; list<h->list_count; list++){ |