diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-08-07 14:19:33 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-08-07 14:19:33 +0000 |
commit | 915282e5b81e5f9ac92d91da8bcdf73e6f7fe819 (patch) | |
tree | 74966b550e4673eccd1a6520cf8f61e0dc7dfb4c /libavformat/movenc.c | |
parent | 5997ed786a0d67fc4357aaef3437fa29614c3e29 (diff) | |
download | ffmpeg-915282e5b81e5f9ac92d91da8bcdf73e6f7fe819.tar.gz |
indention
Originally committed as revision 5950 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 16 |
1 files changed, 8 insertions, 8 deletions
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 */ |