From f3f0be30fd520550ab286d660210dc099a8a3ced Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 21 May 2009 07:23:48 +0000 Subject: 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 --- graphics/video/indeo3.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'graphics/video') diff --git a/graphics/video/indeo3.cpp b/graphics/video/indeo3.cpp index 0e0bd757a2..f34621a6a5 100644 --- a/graphics/video/indeo3.cpp +++ b/graphics/video/indeo3.cpp @@ -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; -- cgit v1.2.3