summaryrefslogtreecommitdiffstats
path: root/src/GSTInput.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-09-17 15:05:35 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-09-17 15:05:35 +0200
commit321a2c3eead634329cda904dbd38d986c3f22c11 (patch)
treec4339c85c03dd103e0e3ee7b8fb1445c1fc4ffa8 /src/GSTInput.cpp
parentb65cd1fe9d453365f0dec0c80d8737eda3d1c338 (diff)
parentac10ac25317d2027e21b1390054e47201e7aec98 (diff)
downloadODR-AudioEnc-321a2c3eead634329cda904dbd38d986c3f22c11.tar.gz
ODR-AudioEnc-321a2c3eead634329cda904dbd38d986c3f22c11.tar.bz2
ODR-AudioEnc-321a2c3eead634329cda904dbd38d986c3f22c11.zip
Merge branch 'next' into padsocket
Diffstat (limited to 'src/GSTInput.cpp')
-rw-r--r--src/GSTInput.cpp4
1 files changed, 4 insertions, 0 deletions
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);