From 03bf8e938649df31e14d5e13b1ea961b7f85b576 Mon Sep 17 00:00:00 2001 From: Michiel Westerbeek Date: Wed, 20 Sep 2023 16:07:35 +0200 Subject: [PATCH] video-scaler, audio-resampler: downgrade 'can't find exact taps' to debug Part-of: --- .../gst-plugins-base/gst-libs/gst/audio/audio-resampler.c | 2 +- subprojects/gst-plugins-base/gst-libs/gst/video/video-scaler.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/audio/audio-resampler.c b/subprojects/gst-plugins-base/gst-libs/gst/audio/audio-resampler.c index fc80a2ddfc..b2f7f20128 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/audio/audio-resampler.c +++ b/subprojects/gst-plugins-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/subprojects/gst-plugins-base/gst-libs/gst/video/video-scaler.c b/subprojects/gst-plugins-base/gst-libs/gst/video/video-scaler.c index ba556f1790..d645087719 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/video/video-scaler.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/video/video-scaler.c @@ -382,7 +382,7 @@ resampler_convert_coeff (const gdouble * src, } if (!exact) - GST_WARNING ("can't find exact taps"); + GST_DEBUG ("can't find exact taps"); return exact; }