summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorHe Junyan <junyan.he@intel.com>2021-06-15 21:36:43 +0800
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-06-16 13:23:50 +0000
commit7feed2f1ac70f601c9b157feb542fe1cdcbe8f8b (patch)
tree720f8fef76db053b36eac5eeff7ccf49b1328c48 /gst
parent0d746d1022c7f83bc297584cb4d456cae4697cbf (diff)
downloadgstreamer-plugins-bad-7feed2f1ac70f601c9b157feb542fe1cdcbe8f8b.tar.gz
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>
Diffstat (limited to 'gst')
-rw-r--r--gst/videoparsers/gsth265parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/videoparsers/gsth265parse.c b/gst/videoparsers/gsth265parse.c
index a052b1f0c..22fd241f3 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: