video-scaler, audio-resampler: downgrade 'can't find exact taps' to debug
authorMichiel Westerbeek <happylinks@gmail.com>
Wed, 20 Sep 2023 14:07:35 +0000 (16:07 +0200)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 22 Sep 2023 13:47:39 +0000 (15:47 +0200)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5381>

subprojects/gst-plugins-base/gst-libs/gst/audio/audio-resampler.c
subprojects/gst-plugins-base/gst-libs/gst/video/video-scaler.c

index a612d85..c676f7e 100644 (file)
@@ -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)                              \
index a4d8fb8..fd76da7 100644 (file)
@@ -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;
 }