]> git.sesse.net Git - ffmpeg/commitdiff
avformat/gifdec: export sample aspect ratio
authorPaul B Mahol <onemda@gmail.com>
Wed, 12 Dec 2018 10:12:32 +0000 (11:12 +0100)
committerPaul B Mahol <onemda@gmail.com>
Thu, 13 Dec 2018 17:58:48 +0000 (18:58 +0100)
libavformat/gifdec.c

index 8993ca615c054b1e1973055b5743f9bde5b2af11..1f3ac8d8d9c79e6dbc34a3f22c548a2b68f6082d 100644 (file)
@@ -99,7 +99,7 @@ static int gif_read_header(AVFormatContext *s)
     GIFDemuxContext *gdc = s->priv_data;
     AVIOContext     *pb  = s->pb;
     AVStream        *st;
-    int width, height, ret;
+    int width, height, ret, n;
 
     if ((ret = resync(pb)) < 0)
         return ret;
@@ -107,6 +107,8 @@ static int gif_read_header(AVFormatContext *s)
     gdc->delay  = gdc->default_delay;
     width  = avio_rl16(pb);
     height = avio_rl16(pb);
+    avio_skip(pb, 2);
+    n      = avio_r8(pb);
 
     if (width == 0 || height == 0)
         return AVERROR_INVALIDDATA;
@@ -122,6 +124,10 @@ static int gif_read_header(AVFormatContext *s)
     st->codecpar->codec_id   = AV_CODEC_ID_GIF;
     st->codecpar->width      = width;
     st->codecpar->height     = height;
+    if (n) {
+        st->codecpar->sample_aspect_ratio.num = n + 15;
+        st->codecpar->sample_aspect_ratio.den = 64;
+    }
 
     /* jump to start because gif decoder needs header data too */
     if (avio_seek(pb, 0, SEEK_SET) != 0)