mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
Fixed indentation. (Don't worry, it's just a small change, and it matches the
original FFmpeg code, as far as I can tell.) svn-id: r40749
This commit is contained in:
parent
f2668f8a7d
commit
f3f0be30fd
@ -1095,16 +1095,16 @@ void Indeo3::decodeChunk(byte *cur, byte *ref, int width, int height,
|
||||
lp2 = 4;
|
||||
break;
|
||||
|
||||
case 9:
|
||||
warning("Indeo3::decodeChunk: Untested (4)");
|
||||
lv1 = *buf1++;
|
||||
lv = (lv1 & 0x7F) << 1;
|
||||
lv += (lv << 8);
|
||||
lv += (lv << 16);
|
||||
for (i = 0, j = 0; i < 4; i++, j += width_tbl[1])
|
||||
cur_lp[j] = lv;
|
||||
LV1_CHECK(buf1,rle_v3,lv1,lp2)
|
||||
break;
|
||||
case 9:
|
||||
warning("Indeo3::decodeChunk: Untested (4)");
|
||||
lv1 = *buf1++;
|
||||
lv = (lv1 & 0x7F) << 1;
|
||||
lv += (lv << 8);
|
||||
lv += (lv << 16);
|
||||
for (i = 0, j = 0; i < 4; i++, j += width_tbl[1])
|
||||
cur_lp[j] = lv;
|
||||
LV1_CHECK(buf1,rle_v3,lv1,lp2)
|
||||
break;
|
||||
|
||||
default:
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user