diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-12-10 10:15:27 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-12-10 17:35:38 +0100 |
commit | 14156e607d4941079a400c3969173518ebb6f6ed (patch) | |
tree | 8f309a9572fdac361d94b8df57e85a629d5762d7 | |
parent | 5e0d54a031e313abda0204bb95d88deaebba97a0 (diff) | |
download | ffmpeg-14156e607d4941079a400c3969173518ebb6f6ed.tar.gz |
avformat/mxfenc: calculate and store DAR from user SAR
-rw-r--r-- | libavformat/mxfenc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index e481b19ff3..4f9f353ffc 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -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; |