diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-12-20 09:51:11 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-12-20 09:51:11 +0000 |
commit | b356f75d465779892b924b91227ffdace2c1eef0 (patch) | |
tree | 53a93ea07e6d5b905b29749cf34927b0e60e9f49 /libavformat | |
parent | 252f17e292064da25a82c99bf1f752ed5fedd434 (diff) | |
download | ffmpeg-b356f75d465779892b924b91227ffdace2c1eef0.tar.gz |
fix indentation
Originally committed as revision 11282 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d0679e8417..042c2b5d27 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -686,7 +686,7 @@ static int mov_write_video_tag(ByteIOContext *pb, MOVTrack* track) mov_write_avcc_tag(pb, track); else if(track->enc->codec_id == CODEC_ID_DNXHD) mov_write_avid_tag(pb, track); - else if(track->vosLen > 0) + else if(track->vosLen > 0) mov_write_glbl_tag(pb, track); return updateSize (pb, pos); |