From 81cf53e13309bd58aeb10f3574807f66b25d0091 Mon Sep 17 00:00:00 2001 From: Can Wu Date: Tue, 26 Feb 2013 10:01:21 +0800 Subject: mpegts: add support for stream_type 0x42, which is CAVS This allows demuxing and muxing of CAVS TS streams. Signed-off-by: Anton Khirnov --- libavformat/mpegts.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/mpegts.c') diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 2582c5b0bd..1540a8d118 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -523,6 +523,7 @@ static const StreamType ISO_types[] = { { 0x10, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG4 }, { 0x11, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AAC_LATM }, /* LATM syntax */ { 0x1b, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H264 }, + { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS }, { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC }, { 0xea, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1 }, { 0 }, -- cgit v1.2.3