Skip to content

Commit

Permalink
One part of the magic glue for H265 support. Still further work todo …
Browse files Browse the repository at this point in the history
…to get it to work
  • Loading branch information
stuarta committed Feb 25, 2015
1 parent 66d5504 commit e07fa1e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythtv/libs/libmythtv/mpeg/mpegtables.h
Expand Up @@ -113,6 +113,7 @@ class MTV_PUBLIC StreamID
MPEG2Video = 0x02, ///< ISO 13818-2 & ITU H.262 (aka MPEG-2)
MPEG4Video = 0x10, ///< ISO 14492-2 (aka MPEG-4)
H264Video = 0x1b, ///< ISO 14492-10 & ITU H.264 (aka MPEG-4-AVC)
H265Video = 0x24, ///< ISO 23008-2 & ITU H.265 (aka HEVC, Ultra HD)
OpenCableVideo = 0x80, ///< Always MPEG-2??
VC1Video = 0xea, ///< SMPTE 421M video codec (aka VC1) in Blu-Ray

Expand Down Expand Up @@ -167,6 +168,7 @@ class MTV_PUBLIC StreamID
(StreamID::MPEG2Video == type) ||
(StreamID::MPEG4Video == type) ||
(StreamID::H264Video == type) ||
(StreamID::H265Video == type) ||
(StreamID::VC1Video == type) ||
(StreamID::OpenCableVideo == type));
}
Expand Down

0 comments on commit e07fa1e

Please sign in to comment.