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
@ -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…
x
Reference in New Issue
Block a user