[FFmpeg-cvslog] store pasp atom for all types of quicktime movie
Maksym Veremeyenko
git
Sat Feb 26 04:51:54 CET 2011
ffmpeg | branch: master | Maksym Veremeyenko <verem at m1stereo.tv> | Tue Feb 15 12:44:08 2011 +0200| [aaa71a3e1df951df2f94845cd56ed1d26a588b58] | committer: Michael Niedermayer
store pasp atom for all types of quicktime movie
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>
(cherry picked from commit d184c86cd309bbd61c5d1a1dfcf60d133da4c1e3)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aaa71a3e1df951df2f94845cd56ed1d26a588b58
---
libavformat/movenc.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 59c579a..93d6ce9 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -840,8 +840,7 @@ static int mov_write_video_tag(AVIOContext *pb, MOVTrack *track)
} else if(track->vosLen > 0)
mov_write_glbl_tag(pb, track);
- if (track->mode == MODE_MOV &&
- track->enc->sample_aspect_ratio.den && track->enc->sample_aspect_ratio.num &&
+ if (track->enc->sample_aspect_ratio.den && track->enc->sample_aspect_ratio.num &&
track->enc->sample_aspect_ratio.den != track->enc->sample_aspect_ratio.num) {
mov_write_pasp_tag(pb, track);
}
More information about the ffmpeg-cvslog
mailing list