]> git.sesse.net Git - ffmpeg/commitdiff
Indentation
authorBenoit Fouet <benoit.fouet@free.fr>
Mon, 14 Apr 2008 13:15:16 +0000 (13:15 +0000)
committerBenoit Fouet <benoit.fouet@free.fr>
Mon, 14 Apr 2008 13:15:16 +0000 (13:15 +0000)
Originally committed as revision 12816 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/bmp.c

index de97e6bd3bece463fcb771f102918e079004465b..f475469fd2b119212efd241ab1180eb981897618 100644 (file)
@@ -85,8 +85,8 @@ static int bmp_decode_frame(AVCodecContext *avctx,
     }
 
     if (ihsize == 40) {
-    width = bytestream_get_le32(&buf);
-    height = bytestream_get_le32(&buf);
+        width = bytestream_get_le32(&buf);
+        height = bytestream_get_le32(&buf);
     } else if (ihsize == 12) {
         width  = bytestream_get_le16(&buf);
         height = bytestream_get_le16(&buf);