From: He Junyan Date: Tue, 15 Jun 2021 13:36:43 +0000 (+0800) Subject: h265parse: Fix a typo in get_compatible_profile_caps(). X-Git-Tag: 1.19.3~507^2~309 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7feed2f1ac70f601c9b157feb542fe1cdcbe8f8b;p=platform%2Fupstream%2Fgstreamer.git 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: --- diff --git a/gst/videoparsers/gsth265parse.c b/gst/videoparsers/gsth265parse.c index a052b1f..22fd241 100644 --- a/gst/videoparsers/gsth265parse.c +++ b/gst/videoparsers/gsth265parse.c @@ -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: