From d72f8180295088690ead7fd1c2ed6d0294c74e51 Mon Sep 17 00:00:00 2001 From: He Junyan Date: Thu, 17 Sep 2020 15:35:11 +0800 Subject: libs: utils: h265: Use get_profile_from_sps to get profile. We now use gst_h265_get_profile_from_sps() to replace the old way of gst_h265_profile_tier_level_get_profile() to get more precise profile. The new function consider the unstandard cases and give a more suitable profile decision. Part-of: --- gst-libs/gst/vaapi/gstvaapiutils_h265.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst-libs') diff --git a/gst-libs/gst/vaapi/gstvaapiutils_h265.c b/gst-libs/gst/vaapi/gstvaapiutils_h265.c index b9120757..189f256e 100644 --- a/gst-libs/gst/vaapi/gstvaapiutils_h265.c +++ b/gst-libs/gst/vaapi/gstvaapiutils_h265.c @@ -146,7 +146,7 @@ gst_vaapi_utils_h265_get_profile (GstH265SPS * sps) g_return_val_if_fail (sps != NULL, GST_VAAPI_PROFILE_UNKNOWN); - profile = gst_h265_profile_tier_level_get_profile (&sps->profile_tier_level); + profile = gst_h265_get_profile_from_sps (sps); switch (profile) { case GST_H265_PROFILE_MAIN: /* Main Intra, recognize it as MAIN */ -- cgit v1.2.3