Browse Source

Indentation

Originally committed as revision 12816 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Benoit Fouet 17 years ago
parent
commit
6f7b915a0d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/bmp.c

+ 2
- 2
libavcodec/bmp.c View 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);


Loading…
Cancel
Save