]> git.sesse.net Git - ffmpeg/commitdiff
avformat/mxfenc: calculate and store DAR from user SAR
authorPaul B Mahol <onemda@gmail.com>
Mon, 10 Dec 2018 09:15:27 +0000 (10:15 +0100)
committerPaul B Mahol <onemda@gmail.com>
Mon, 10 Dec 2018 16:35:38 +0000 (17:35 +0100)
libavformat/mxfenc.c

index e481b19ff3dd64096d9798842ee4fe4cb62d1399..4f9f353ffc323f25b335afa1ea96ee1eed75d58e 100644 (file)
@@ -2412,6 +2412,11 @@ static int mxf_write_header(AVFormatContext *s)
             sc->v_chroma_sub_sample = 2;
             sc->color_siting = 0xFF;
 
+            if (st->codecpar->sample_aspect_ratio.num && st->codecpar->sample_aspect_ratio.den) {
+                sc->aspect_ratio = av_mul_q(st->codecpar->sample_aspect_ratio,
+                                            av_make_q(st->codecpar->width, st->codecpar->height));
+            }
+
             if (pix_desc) {
                 sc->component_depth     = pix_desc->comp[0].depth;
                 sc->h_chroma_sub_sample = 1 << pix_desc->log2_chroma_w;