diff options
| author | Carl Eugen Hoyos <[email protected]> | 2013-10-16 04:12:27 +0200 | 
|---|---|---|
| committer | Michael Niedermayer <[email protected]> | 2013-10-16 17:54:37 +0200 | 
| commit | d0b7d24b80b390b2013adc3c8e0e2063836ee293 (patch) | |
| tree | 31a6fc555e050183938bd1090461ccdfba57a4c8 | |
| parent | 734ccf37858864c602f943c2b67e43a7e5555b36 (diff) | |
Support HEVC in transport streams.
| -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 e455aec1a5..5f2dfe9cb3 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -634,6 +634,7 @@ static const StreamType REGD_types[] = {      { MKTAG('D','T','S','1'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS },      { MKTAG('D','T','S','2'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS },      { MKTAG('D','T','S','3'), AVMEDIA_TYPE_AUDIO,   AV_CODEC_ID_DTS }, +    { MKTAG('H','E','V','C'), AVMEDIA_TYPE_VIDEO,  AV_CODEC_ID_HEVC },      { MKTAG('K','L','V','A'), AVMEDIA_TYPE_DATA,    AV_CODEC_ID_SMPTE_KLV },      { MKTAG('V','C','-','1'), AVMEDIA_TYPE_VIDEO,   AV_CODEC_ID_VC1 },      { 0 },  | 
