mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
h264parser lib: Add more profile_idc to the recognised set
Update the list of profile_idc recognised during SPS parsing based on H.264 201704
This commit is contained in:
parent
8899a471e3
commit
de115dac4e
1 changed files with 3 additions and 1 deletions
|
@ -1604,7 +1604,9 @@ gst_h264_parse_sps_data (NalReader * nr, GstH264SPS * sps)
|
|||
sps->profile_idc == 122 || sps->profile_idc == 244 ||
|
||||
sps->profile_idc == 44 || sps->profile_idc == 83 ||
|
||||
sps->profile_idc == 86 || sps->profile_idc == 118 ||
|
||||
sps->profile_idc == 128) {
|
||||
sps->profile_idc == 128 || sps->profile_idc == 138 ||
|
||||
sps->profile_idc == 139 || sps->profile_idc == 134 ||
|
||||
sps->profile_idc == 135) {
|
||||
READ_UE_MAX (nr, sps->chroma_format_idc, 3);
|
||||
if (sps->chroma_format_idc == 3)
|
||||
READ_UINT8 (nr, sps->separate_colour_plane_flag, 1);
|
||||
|
|
Loading…
Reference in a new issue