diff options
author | Manoj Bonda <mbonda@nvidia.com> | 2020-06-19 12:31:22 +0530 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-07-02 22:26:39 -0300 |
commit | 797574400d531503ff46009784c0b97c0091733a (patch) | |
tree | dc3e1bc11ab9c74e76f7dc938cbab4601cecc2b5 /libavcodec | |
parent | b303fe926ef153b01de3f1ae6bba8fbb0b7190bf (diff) | |
download | ffmpeg-797574400d531503ff46009784c0b97c0091733a.tar.gz |
avcodec/av1_parser: initialize avctx->pix_fmt
Initialize avctx->pix_fmt in av1_parser.c
AV1 Chroma format is invalid when quering using below code if no AV1 decoder
is available:
iVideoStream = av_find_best_stream(fmtc, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
eChromaFormat = (AVPixelFormat)fmtc->streams[iVideoStream]->codecpar->format;
Signed-off-by: James Almer <jamrial@gmail.com>
(cherry picked from commit 23d06f606e58779d47ca9d312c570b8e64f99f9e)
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/av1_parser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/av1_parser.c b/libavcodec/av1_parser.c index c5bdc6b25f..036ab5e14e 100644 --- a/libavcodec/av1_parser.c +++ b/libavcodec/av1_parser.c @@ -171,6 +171,8 @@ static int av1_parser_parse(AVCodecParserContext *ctx, color->transfer_characteristics == AVCOL_TRC_IEC61966_2_1) ctx->format = pix_fmts_rgb[color->high_bitdepth + color->twelve_bit]; + avctx->pix_fmt = ctx->format; + avctx->profile = seq->seq_profile; avctx->level = seq->seq_level_idx[0]; |