diff mbox series

[FFmpeg-devel] avformat/mpegts: support demuxing AVS3

Message ID 20201010084433.53873-1-hbj515@sina.com
State New
Headers show
Series [FFmpeg-devel] avformat/mpegts: support demuxing AVS3 | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make warning Make failed

Commit Message

hanbingjie Oct. 10, 2020, 8:44 a.m. UTC
From: hanbingjie <hanbj@pku.edu.cn>

Signed-off-by: hanbingjie <hanbj@pku.edu.cn>
---
 libavformat/mpegts.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 432b1c3ea2..fe891aa100 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -806,6 +806,7 @@  static const StreamType ISO_types[] = {
     { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS       },
     { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC      },
     { 0xd2, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_AVS2       },
+    { 0xd4, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_AVS3       },
     { 0xea, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1        },
     { 0 },
 };