From 96f1d34d0cd28d5b2ad2977f5d19d6f11063c691 Mon Sep 17 00:00:00 2001 From: hwrenx Date: Wed, 18 Sep 2019 02:18:13 +0200 Subject: [PATCH] lavf/mpegts: Support demuxing AVS2. --- libavformat/mpegts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 0415ceea02..63ac071619 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -803,6 +803,7 @@ static const StreamType ISO_types[] = { { 0x24, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC }, { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS }, { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC }, + { 0xd2, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_AVS2 }, { 0xea, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1 }, { 0 }, };