Commit 5b106ed4 authored by aurel's avatar aurel

mxfdec: set sample_aspect_ratio


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14983 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8c591a66
...@@ -778,6 +778,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) ...@@ -778,6 +778,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
st->codec->width = descriptor->width; st->codec->width = descriptor->width;
st->codec->height = descriptor->height; st->codec->height = descriptor->height;
st->codec->bits_per_sample = descriptor->bits_per_sample; /* Uncompressed */ st->codec->bits_per_sample = descriptor->bits_per_sample; /* Uncompressed */
st->sample_aspect_ratio = descriptor->aspect_ratio;
st->need_parsing = AVSTREAM_PARSE_HEADERS; st->need_parsing = AVSTREAM_PARSE_HEADERS;
} else if (st->codec->codec_type == CODEC_TYPE_AUDIO) { } else if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
container_ul = mxf_get_codec_ul(ff_mxf_essence_container_uls, essence_container_ul); container_ul = mxf_get_codec_ul(ff_mxf_essence_container_uls, essence_container_ul);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment