mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
videoparsers: h264: Add more scalable profiles to the profile list
Adding Scalable Constrained High (G.10.1.2.1) and Scalable High Intra(G.10.1.3) profiles to the profile list https://bugzilla.gnome.org/show_bug.cgi?id=769303
This commit is contained in:
parent
2ff2ad9353
commit
14cc51cddc
1 changed files with 6 additions and 1 deletions
|
@ -1635,7 +1635,12 @@ get_profile_string (GstH264SPS * sps)
|
|||
profile = "scalable-baseline";
|
||||
break;
|
||||
case 86:
|
||||
profile = "scalable-high";
|
||||
if (sps->constraint_set3_flag)
|
||||
profile = "scalable-high-intra";
|
||||
else if (sps->constraint_set5_flag)
|
||||
profile = "scalable-constrained-high";
|
||||
else
|
||||
profile = "scalable-high";
|
||||
break;
|
||||
default:
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in a new issue