Correct STREAM_TYPE_VIDEO_H266 to 0x32

As per "ISO/IEC 13818-1:2019/DAmd 2 - Carriage of VVC in MPEG-2 Systems":
In 2.4.4.9, in Table 2-34, Stream type assignments, replace the following line:
0x32-0x7E ITU-T Rec. H.222.0 | ISO/IEC 13818-1 Reserved
with:
0x32 VVC video stream or an VVC temporal video sub-bitstream conforming to one or more profiles defined in Annex A of Rec. ITU-T H.26X | ISO/IEC 23090-3
This commit is contained in:
jcdr428 2021-09-08 22:43:53 +01:00 committed by GitHub
parent afc5abd86b
commit 8474c6b01d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ static const uint8_t STREAM_TYPE_VIDEO_MPEG4 = 0x10;
static const uint8_t STREAM_TYPE_VIDEO_H264 = 0x1b;
static const uint8_t STREAM_TYPE_VIDEO_MVC = 0x20;
static const uint8_t STREAM_TYPE_VIDEO_H265 = 0x24;
static const uint8_t STREAM_TYPE_VIDEO_H266 = 0x25;
static const uint8_t STREAM_TYPE_VIDEO_H266 = 0x32;
static const uint8_t STREAM_TYPE_VIDEO_VC1 = 0xea;
static const uint8_t STREAM_TYPE_AUDIO_MPEG1 = 0x03;