From c9b14925962bf6ca3978dc07bf8db32ada7003c5 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 15 Sep 2020 12:12:51 +0200 Subject: Add version check for old GStreamer versions --- src/GSTInput.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/GSTInput.cpp b/src/GSTInput.cpp index a2401cb..5c63147 100644 --- a/src/GSTInput.cpp +++ b/src/GSTInput.cpp @@ -121,7 +121,11 @@ void GSTInput::prepare() m_gst_data.audio_resample = gst_element_factory_make("audioresample", "audio_resample"); assert(m_gst_data.audio_resample != nullptr); g_object_set(m_gst_data.audio_resample, +#if (GST_VERSION_MAJOR == 1 && GST_VERSION_MINOR >= 10) || GST_VERSION_MAJOR > 1 "sinc-filter-mode", GST_AUDIO_RESAMPLER_FILTER_MODE_FULL, +#else +#warning "GStreamer version is too old to set GST_AUDIO_RESAMPLER_FILTER_MODE_FULL" GST_VERSION_MAJOR +#endif "quality", 6, // between 0 and 10, 10 being best /* default audio-resampler-method: GST_AUDIO_RESAMPLER_METHOD_KAISER */ NULL); -- cgit v1.2.3