From 238ce301b699201ed33665a3b2ae44e8b6efa249 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Sun, 29 May 2022 06:05:27 +0900 Subject: [PATCH] hlsdemux2: Adjust debug log level 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: --- subprojects/gst-plugins-good/ext/adaptivedemux2/hls/m3u8.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-good/ext/adaptivedemux2/hls/m3u8.c b/subprojects/gst-plugins-good/ext/adaptivedemux2/hls/m3u8.c index 0b8bf165d9..ffc538f17b 100644 --- a/subprojects/gst-plugins-good/ext/adaptivedemux2/hls/m3u8.c +++ b/subprojects/gst-plugins-good/ext/adaptivedemux2/hls/m3u8.c @@ -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; }