mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
video-scaler, audio-resampler: downgrade 'can't find exact taps' to debug
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5369>
This commit is contained in:
parent
72742dee30
commit
03bf8e9386
2 changed files with 2 additions and 2 deletions
|
@ -257,7 +257,7 @@ convert_taps_##type##_c (gdouble *tmp_taps, gpointer taps, \
|
||||||
for (j = 0; j < n_taps; j++) \
|
for (j = 0; j < n_taps; j++) \
|
||||||
t[j] = floor (offset + tmp_taps[j] * multiplier / weight); \
|
t[j] = floor (offset + tmp_taps[j] * multiplier / weight); \
|
||||||
if (!exact) \
|
if (!exact) \
|
||||||
GST_WARNING ("can't find exact taps"); \
|
GST_DEBUG ("can't find exact taps"); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MAKE_CONVERT_TAPS_FLOAT_FUNC(type) \
|
#define MAKE_CONVERT_TAPS_FLOAT_FUNC(type) \
|
||||||
|
|
|
@ -382,7 +382,7 @@ resampler_convert_coeff (const gdouble * src,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!exact)
|
if (!exact)
|
||||||
GST_WARNING ("can't find exact taps");
|
GST_DEBUG ("can't find exact taps");
|
||||||
|
|
||||||
return exact;
|
return exact;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue