Skip to content

Commit

Permalink
Add version check for old GStreamer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mpbraendli committed Sep 15, 2020
1 parent 21d5db7 commit c9b1492
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/GSTInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c9b1492

Please sign in to comment.