mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-02 09:51:11 +00:00
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:
parent
69f90adbaf
commit
e5a67d71f7
1 changed files with 6 additions and 1 deletions
|
@ -557,7 +557,12 @@ gst_codec_utils_h264_get_profile (const guint8 * sps, guint len)
|
||||||
profile = "scalable-baseline";
|
profile = "scalable-baseline";
|
||||||
break;
|
break;
|
||||||
case 86:
|
case 86:
|
||||||
profile = "scalable-high";
|
if (csf3)
|
||||||
|
profile = "scalable-high-intra";
|
||||||
|
else if (csf5)
|
||||||
|
profile = "scalable-constrained-high";
|
||||||
|
else
|
||||||
|
profile = "scalable-high";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue