Commit 13cef15f authored by benoit's avatar benoit

Fix indentation.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15498 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 13117e5d
...@@ -380,13 +380,13 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s, ...@@ -380,13 +380,13 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s,
if(lp2 == 0) { if(lp2 == 0) {
RLE_V3_CHECK(buf1,rle_v1,rle_v2,rle_v3) RLE_V3_CHECK(buf1,rle_v1,rle_v2,rle_v3)
if(rle_v1 == 1 || ref_vectors != NULL) { if(rle_v1 == 1 || ref_vectors != NULL) {
for(i = 0, j = 0; i < 4; i++, j += width_tbl[1]) for(i = 0, j = 0; i < 4; i++, j += width_tbl[1])
cur_lp[j] = ref_lp[j]; cur_lp[j] = ref_lp[j];
} }
RLE_V2_CHECK(buf1,rle_v2, rle_v3,lp2) RLE_V2_CHECK(buf1,rle_v2, rle_v3,lp2)
break; break;
} else { } else {
rle_v1 = 1; rle_v1 = 1;
rle_v2 = *buf1 - 1; rle_v2 = *buf1 - 1;
...@@ -423,7 +423,7 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s, ...@@ -423,7 +423,7 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s,
cur_lp[j] = lv; cur_lp[j] = lv;
LV1_CHECK(buf1,rle_v3,lv1,lp2) LV1_CHECK(buf1,rle_v3,lv1,lp2)
break; break;
default: default:
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment