pbutils: Add more h264 scalable profiles

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 15:51:35 +03:00 committed by Sebastian Dröge
parent 69f90adbaf
commit e5a67d71f7

View file

@ -557,7 +557,12 @@ gst_codec_utils_h264_get_profile (const guint8 * sps, guint len)
profile = "scalable-baseline";
break;
case 86:
profile = "scalable-high";
if (csf3)
profile = "scalable-high-intra";
else if (csf5)
profile = "scalable-constrained-high";
else
profile = "scalable-high";
break;
default:
return NULL;