From b356f75d465779892b924b91227ffdace2c1eef0 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 20 Dec 2007 09:51:11 +0000 Subject: [PATCH] fix indentation Originally committed as revision 11282 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);