From 49dc43fd64bb77001494be6721380895f1bba971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigrid=20Solveig=20Hafl=C3=ADnud=C3=B3ttir?= Date: Tue, 28 Dec 2021 14:27:40 +0000 Subject: [PATCH] matroska: handle av1 --- matroska.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matroska.c b/matroska.c index 681f601..df76736 100644 --- a/matroska.c +++ b/matroska.c @@ -135,6 +135,8 @@ initctx(Ebml *e, double duration) e->fmt = FmtVp08; else if(strcmp(c, "h264") == 0) e->fmt = FmtAvc1; + else if(strcmp(c, "av1") == 0) + e->fmt = FmtAv01; else if(strcmp(c, "theora") == 0){ e->fmt = FmtTheora; e->fpacket = oggpacket; -- 2.34.4