summaryrefslogtreecommitdiff
path: root/libavformat/riffenc.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2013-12-23 20:37:13 +1100
committerMichael Niedermayer <michaelni@gmx.at>2013-12-23 15:55:47 +0100
commitf93b0abe4041b75f0dbb590ee932b37a07662856 (patch)
tree70480e76cd42e6b63bce071354efef301261a5fd /libavformat/riffenc.c
parentfcbb94712d9873a37cdc8b526e368154b5982186 (diff)
avformat/riffenc: indent
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/riffenc.c')
-rw-r--r--libavformat/riffenc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c
index d7cf846413..7b4b7ddffe 100644
--- a/libavformat/riffenc.c
+++ b/libavformat/riffenc.c
@@ -221,10 +221,10 @@ void ff_put_bmp_header(AVIOContext *pb, AVCodecContext *enc,
avio_wl32(pb, 0);
if (!ignore_extradata) {
- avio_write(pb, enc->extradata, enc->extradata_size);
+ avio_write(pb, enc->extradata, enc->extradata_size);
- if (!for_asf && enc->extradata_size & 1)
- avio_w8(pb, 0);
+ if (!for_asf && enc->extradata_size & 1)
+ avio_w8(pb, 0);
}
}