hlsdemux2: Adjust debug log level
authorSeungha Yang <seungha@centricular.com>
Sat, 28 May 2022 21:05:27 +0000 (06:05 +0900)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Wed, 1 Jun 2022 14:32:55 +0000 (14:32 +0000)
HLS manifest might not be represented by a single common caps
when different codecs are mixed in a playlist, but it
does not seem to be a critical issue we need to warn.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2516>

subprojects/gst-plugins-good/ext/adaptivedemux2/hls/m3u8.c

index 0b8bf16..ffc538f 100644 (file)
@@ -2146,7 +2146,8 @@ gst_caps_merge_common (GstCaps * caps1, GstCaps * caps2)
 
 fail:
   {
-    GST_ERROR ("Failed to create common caps");
+    GST_WARNING ("Failed to create common caps of %"
+        GST_PTR_FORMAT " and %" GST_PTR_FORMAT, caps1, caps2);
     gst_caps_unref (res);
     return NULL;
   }