test: pbutils: Add check for high throughput scc.
authorHe Junyan <junyan.he@hotmail.com>
Tue, 28 Apr 2020 13:27:36 +0000 (21:27 +0800)
committerHe Junyan <junyan.he@hotmail.com>
Tue, 28 Apr 2020 13:27:36 +0000 (21:27 +0800)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/645>

tests/check/libs/pbutils.c

index 434ea4f..ea1092b 100644 (file)
@@ -1283,6 +1283,21 @@ GST_START_TEST (test_pb_utils_h265_profiles)
   profile = gst_codec_utils_h265_get_profile (profile_tier_level,
       sizeof (profile_tier_level));
   fail_unless_equals_string (profile, "scalable-main-444");
+
+  fill_h265_profile (profile_tier_level, 11, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1);
+  profile = gst_codec_utils_h265_get_profile (profile_tier_level,
+      sizeof (profile_tier_level));
+  fail_unless_equals_string (profile, "screen-extended-main-444-10");
+
+  fill_h265_profile (profile_tier_level, 11, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1);
+  profile = gst_codec_utils_h265_get_profile (profile_tier_level,
+      sizeof (profile_tier_level));
+  fail_unless_equals_string (profile, "screen-extended-main-444");
+
+  fill_h265_profile (profile_tier_level, 11, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1);
+  profile = gst_codec_utils_h265_get_profile (profile_tier_level,
+      sizeof (profile_tier_level));
+  fail_unless_equals_string (profile, "screen-extended-high-throughput-444-14");
 }
 
 GST_END_TEST;