From patchwork Fri Aug 31 09:25:59 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: libopenh264dec: Export the decoded profile and level in AVCodecContext X-Patchwork-Submitter: =?utf-8?q?Martin_Storsj=C3=B6?= X-Patchwork-Id: 64337 Message-Id: <20180831092559.76116-1-martin@martin.st> To: libav-devel@libav.org Date: Fri, 31 Aug 2018 12:25:59 +0300 From: =?utf-8?q?Martin_Storsj=C3=B6?= List-Id: libav development --- libavcodec/libopenh264dec.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavcodec/libopenh264dec.c b/libavcodec/libopenh264dec.c index 5990a72ff9..7e9e66743a 100644 --- a/libavcodec/libopenh264dec.c +++ b/libavcodec/libopenh264dec.c @@ -95,6 +95,7 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data, int linesize[3]; AVFrame *avframe = data; DECODING_STATE state; + int opt; if (!avpkt->data) { #if OPENH264_VER_AT_LEAST(1, 9) @@ -136,6 +137,10 @@ FF_DISABLE_DEPRECATION_WARNINGS avframe->pkt_pts = avpkt->pts; FF_ENABLE_DEPRECATION_WARNINGS #endif + (*s->decoder)->GetOption(s->decoder, DECODER_OPTION_PROFILE, &opt); + avctx->profile = opt; + (*s->decoder)->GetOption(s->decoder, DECODER_OPTION_LEVEL, &opt); + avctx->level = opt; *got_frame = 1; return avpkt->size;