video-scaler, audio-resampler: downgrade 'can't find exact taps' to debug

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5381>
This commit is contained in:
Michiel Westerbeek 2023-09-20 16:07:35 +02:00 committed by Tim-Philipp Müller
parent 0cccb1c9a6
commit b5f72d930b
2 changed files with 2 additions and 2 deletions

View 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) \

View 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;
}