Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2008-04-14 17:15:16 +0400
committerBenoit Fouet <benoit.fouet@free.fr>2008-04-14 17:15:16 +0400
commit6f7b915a0d69ea33a6777c35f720cf31f122ed02 (patch)
tree44f00c015ff925428c28b9342e013f0899374f67 /libavcodec/bmp.c
parentb65213c021c458f104189755ea3ac3e76668b458 (diff)
Indentation
Originally committed as revision 12816 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bmp.c')
-rw-r--r--libavcodec/bmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/bmp.c b/libavcodec/bmp.c
index de97e6bd3b..f475469fd2 100644
--- a/libavcodec/bmp.c
+++ b/libavcodec/bmp.c
@@ -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);