diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2008-10-01 12:48:26 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-10-01 12:48:26 +0000 |
commit | b07e52a9557a14bb8b6fa19a96ca5d6912fe8561 (patch) | |
tree | 2fd0012deb8f7eb7e6f6b23457849ce37a4e2040 | |
parent | 3ff2a0622897f38bdec7a9112e6ac6c0ae8b942a (diff) | |
download | ffmpeg-b07e52a9557a14bb8b6fa19a96ca5d6912fe8561.tar.gz |
Fix indentation.
Originally committed as revision 15498 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/indeo3.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 9594628666..859fdb5fed 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -380,13 +380,13 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s, if(lp2 == 0) { RLE_V3_CHECK(buf1,rle_v1,rle_v2,rle_v3) - if(rle_v1 == 1 || ref_vectors != NULL) { - for(i = 0, j = 0; i < 4; i++, j += width_tbl[1]) - cur_lp[j] = ref_lp[j]; - } + if(rle_v1 == 1 || ref_vectors != NULL) { + for(i = 0, j = 0; i < 4; i++, j += width_tbl[1]) + cur_lp[j] = ref_lp[j]; + } RLE_V2_CHECK(buf1,rle_v2, rle_v3,lp2) - break; + break; } else { rle_v1 = 1; rle_v2 = *buf1 - 1; @@ -423,7 +423,7 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s, cur_lp[j] = lv; LV1_CHECK(buf1,rle_v3,lv1,lp2) - break; + break; default: return; } |