[FFmpeg-cvslog] hevc: Return stream format information from parser

Mark Thompson git at videolan.org
Mon Oct 31 21:43:45 EET 2016


ffmpeg | branch: master | Mark Thompson <sw at jkqxz.net> | Wed Oct 26 20:27:57 2016 +0100| [0c559f7893e6f47aad1b0c1429287eaa218ec87c] | committer: Mark Thompson

hevc: Return stream format information from parser

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c559f7893e6f47aad1b0c1429287eaa218ec87c
---

 libavcodec/hevc_parser.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/libavcodec/hevc_parser.c b/libavcodec/hevc_parser.c
index d93586b..508f22f 100644
--- a/libavcodec/hevc_parser.c
+++ b/libavcodec/hevc_parser.c
@@ -312,6 +312,14 @@ static inline int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
                 ps->vps = (HEVCVPS*)ps->vps_list[ps->sps->vps_id]->data;
             }
 
+            s->coded_width  = ps->sps->width;
+            s->coded_height = ps->sps->height;
+            s->width        = ps->sps->output_width;
+            s->height       = ps->sps->output_height;
+            s->format       = ps->sps->pix_fmt;
+            avctx->profile  = ps->sps->ptl.general_ptl.profile_idc;
+            avctx->level    = ps->sps->ptl.general_ptl.level_idc;
+
             if (!sh->first_slice_in_pic_flag) {
                 int slice_address_length;
 



More information about the ffmpeg-cvslog mailing list