From 915282e5b81e5f9ac92d91da8bcdf73e6f7fe819 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Mon, 7 Aug 2006 14:19:33 +0000 Subject: indention Originally committed as revision 5950 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libavformat') diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 1d019ce40d..f14171bf63 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -606,14 +606,14 @@ static int mov_write_video_tag(ByteIOContext *pb, MOVTrack* track) put_be16(pb, 0); /* Codec stream version */ put_be16(pb, 0); /* Codec stream revision (=0) */ if (track->mode == MODE_MOV) { - put_tag(pb, "FFMP"); /* Vendor */ - if(track->enc->codec_id == CODEC_ID_RAWVIDEO) { - put_be32(pb, 0); /* Temporal Quality */ - put_be32(pb, 0x400); /* Spatial Quality = lossless*/ - } else { - put_be32(pb, 0x200); /* Temporal Quality = normal */ - put_be32(pb, 0x200); /* Spatial Quality = normal */ - } + put_tag(pb, "FFMP"); /* Vendor */ + if(track->enc->codec_id == CODEC_ID_RAWVIDEO) { + put_be32(pb, 0); /* Temporal Quality */ + put_be32(pb, 0x400); /* Spatial Quality = lossless*/ + } else { + put_be32(pb, 0x200); /* Temporal Quality = normal */ + put_be32(pb, 0x200); /* Spatial Quality = normal */ + } } else { put_be32(pb, 0); /* Reserved */ put_be32(pb, 0); /* Reserved */ -- cgit v1.2.3