[SCM] libav/experimental: In mov muxer, write pixel aspect ratio tag in mov files. Based on a patch by Daniel Kristjansson, danielk at cuymedia dot net

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:10:44 UTC 2013


The following commit has been merged in the experimental branch:
commit b015be214235b5f93129be71a3613f6ab06270d1
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Thu Jul 8 21:57:20 2010 +0000

    In mov muxer, write pixel aspect ratio tag in mov files.
    Based on a patch by Daniel Kristjansson, danielk at cuymedia dot net
    
    Originally committed as revision 24124 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index c401862..c0efa3a 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -747,6 +747,19 @@ static int mov_write_subtitle_tag(ByteIOContext *pb, MOVTrack *track)
     return updateSize(pb, pos);
 }
 
+static int mov_write_pasp_tag(ByteIOContext *pb, MOVTrack *track)
+{
+    AVRational sar;
+    av_reduce(&sar.num, &sar.den, track->enc->sample_aspect_ratio.num,
+              track->enc->sample_aspect_ratio.den, INT_MAX);
+
+    put_be32(pb, 16);
+    put_tag(pb, "pasp");
+    put_be32(pb, track->enc->sample_aspect_ratio.num);
+    put_be32(pb, track->enc->sample_aspect_ratio.den);
+    return 16;
+}
+
 static int mov_write_video_tag(ByteIOContext *pb, MOVTrack *track)
 {
     int64_t pos = url_ftell(pb);
@@ -808,6 +821,12 @@ static int mov_write_video_tag(ByteIOContext *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 &&
+        track->enc->sample_aspect_ratio.den != track->enc->sample_aspect_ratio.num) {
+        mov_write_pasp_tag(pb, track);
+    }
+
     return updateSize(pb, pos);
 }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list