From 524bab349528883e965a086400566555f0b6131b Mon Sep 17 00:00:00 2001 From: zhangdi Date: Tue, 20 Feb 2024 16:54:39 +0800 Subject: [PATCH] =?UTF-8?q?fixed=2084e3845=20from=20https://gitee.com/ZDAX?= =?UTF-8?q?O/third=5Fparty=5Fgstreamer/pulls/362=20=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhangdi --- gstplugins_base/gst-libs/gst/audio/audio-resampler.c | 2 +- gstplugins_good/gst/isomp4/qtdemux_types.c | 2 +- gstreamer/gst/gstelementfactory.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gstplugins_base/gst-libs/gst/audio/audio-resampler.c b/gstplugins_base/gst-libs/gst/audio/audio-resampler.c index c67f8605..59ed120a 100644 --- a/gstplugins_base/gst-libs/gst/audio/audio-resampler.c +++ b/gstplugins_base/gst-libs/gst/audio/audio-resampler.c @@ -257,7 +257,7 @@ convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \ for (j = 0; j < n_taps; j++) \ t[j] = floor (offset + tmp_taps[j] * multiplier / weight); \ if (!exact) \ - GST_WARNING ("can't find exact taps"); \ + GST_DEBUG ("can't find exact taps"); \ } #define MAKE_CONVERT_TAPS_FLOAT_FUNC(type) \ diff --git a/gstplugins_good/gst/isomp4/qtdemux_types.c b/gstplugins_good/gst/isomp4/qtdemux_types.c index a78415a0..5a156f35 100644 --- a/gstplugins_good/gst/isomp4/qtdemux_types.c +++ b/gstplugins_good/gst/isomp4/qtdemux_types.c @@ -246,7 +246,7 @@ qtdemux_type_get (guint32 fourcc) return qt_node_types + i; } - GST_WARNING ("unknown QuickTime node type %" GST_FOURCC_FORMAT, + GST_DEBUG ("unknown QuickTime node type %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS (fourcc)); return qt_node_types + n_qt_node_types - 1; diff --git a/gstreamer/gst/gstelementfactory.c b/gstreamer/gst/gstelementfactory.c index 29d09e8e..f409463a 100644 --- a/gstreamer/gst/gstelementfactory.c +++ b/gstreamer/gst/gstelementfactory.c @@ -751,7 +751,7 @@ gst_element_factory_make_valist (const gchar * factoryname, /* ERRORS */ no_factory: { - GST_WARNING ("no such element factory \"%s\"!", factoryname); + GST_DEBUG ("no such element factory \"%s\"!", factoryname); return NULL; } create_failed: -- Gitee