]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/libdav1d: export level from the Sequence Header
authorJames Almer <jamrial@gmail.com>
Mon, 27 May 2019 15:47:33 +0000 (12:47 -0300)
committerJames Almer <jamrial@gmail.com>
Mon, 27 May 2019 15:47:33 +0000 (12:47 -0300)
Signed-off-by: James Almer <jamrial@gmail.com>
libavcodec/libdav1d.c

index 4fa3b0ae4402aefa3ccfd97f3c09c5b9ca158e2a..541d56dac895c2d5271e1f67a508ebc42d5ec751 100644 (file)
@@ -223,6 +223,8 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
     frame->linesize[2] = p->stride[1];
 
     c->profile = p->seq_hdr->profile;
+    c->level = ((p->seq_hdr->operating_points[0].major_level - 2) << 2)
+               | p->seq_hdr->operating_points[0].minor_level;
     frame->format = c->pix_fmt = pix_fmt[p->p.layout][p->seq_hdr->hbd];
     frame->width = p->p.w;
     frame->height = p->p.h;