diff options
author | hwrenx <hwrenx@126.com> | 2019-09-18 02:18:13 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2019-09-18 02:18:13 +0200 |
commit | 96f1d34d0cd28d5b2ad2977f5d19d6f11063c691 (patch) | |
tree | e422213ec877fdc23974563381aa4718b24b2b21 /libavformat/mpegts.c | |
parent | 251284e44aa568f344e973d4d0b8f03d2b3734aa (diff) | |
download | ffmpeg-96f1d34d0cd28d5b2ad2977f5d19d6f11063c691.tar.gz |
lavf/mpegts: Support demuxing AVS2.
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 }, }; |