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:
Sreerenj Balachandran 2016-07-29 16:32:22 +03:00 committed by Sebastian Dröge
parent 2ff2ad9353
commit 14cc51cddc

View file

@ -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;