From 05ee44b62be322b664078cf8238b74f7267127ae Mon Sep 17 00:00:00 2001 From: He Junyan Date: Thu, 13 Jan 2022 10:36:24 +0800 Subject: [PATCH] codecparsers: h265parser: return invalid profile if len is 0. Though the profiles[0] is inited as GST_H265_PROFILE_INVALID in the gst_h265_profile_tier_level_get_profile(), the profile detecting may change its content later. So the return of profiles[0] may not be an invalid profile even the len is 0. Part-of: --- .../gst-libs/gst/codecparsers/gsth265parser.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/gst-libs/gst/codecparsers/gsth265parser.c b/subprojects/gst-plugins-bad/gst-libs/gst/codecparsers/gsth265parser.c index d351a397e1..74fc25c0c0 100644 --- a/subprojects/gst-plugins-bad/gst-libs/gst/codecparsers/gsth265parser.c +++ b/subprojects/gst-plugins-bad/gst-libs/gst/codecparsers/gsth265parser.c @@ -3726,11 +3726,15 @@ gst_h265_profile_tier_level_get_profiles (const GstH265ProfileTierLevel * ptl, GstH265Profile gst_h265_profile_tier_level_get_profile (const GstH265ProfileTierLevel * ptl) { - guint len; + guint len = 0; GstH265Profile profiles[GST_H265_PROFILE_MAX] = { GST_H265_PROFILE_INVALID, }; gst_h265_profile_tier_level_get_profiles (ptl, profiles, &len); - return profiles[0]; + + if (len > 0) + return profiles[0]; + + return GST_H265_PROFILE_INVALID; } /**