mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
h265parse: Fix a typo in get_compatible_profile_caps().
The GST_H265_PROFILE_MAIN_444_10 profile should be compatible with GST_H265_PROFILE_SCREEN_EXTENDED_MAIN_444_10, not the current GST_H265_PROFILE_SCREEN_EXTENDED_MAIN_10. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2328>
This commit is contained in:
parent
0d746d1022
commit
7feed2f1ac
1 changed files with 2 additions and 1 deletions
|
@ -1813,7 +1813,8 @@ get_compatible_profile_caps (GstH265SPS * sps, GstH265Profile profile)
|
|||
case GST_H265_PROFILE_MAIN_444_10:
|
||||
{
|
||||
/* A.3.7 */
|
||||
profiles |= profile_to_flag (GST_H265_PROFILE_SCREEN_EXTENDED_MAIN_10);
|
||||
profiles |=
|
||||
profile_to_flag (GST_H265_PROFILE_SCREEN_EXTENDED_MAIN_444_10);
|
||||
break;
|
||||
}
|
||||
case GST_H265_PROFILE_HIGH_THROUGHPUT_444:
|
||||
|
|
Loading…
Reference in a new issue