aboutsummaryrefslogtreecommitdiff
path: root/src/pcm_resample_internal.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-14 15:26:36 +0100
committerMax Kellermann <max@duempel.org>2009-03-14 15:26:36 +0100
commite12140cfce88985f9fcecb93214a94a0b9c33e7f (patch)
tree3e5c213af02c782e67f0a0fd902c63382e2eb56a /src/pcm_resample_internal.h
parent456201fa222ab208aba45fa2d700a56f04876886 (diff)
pcm_resample: choose the fallback resampler at runtime
Even if libsamplerate support is enabled, compile the fallback resampler. When the user specifies the option "samplerate_converter=internal", it is chosen in favor of libsamplerate. This may help users with a weak FPU who don't want to compile a custom MPD from source, because the fallback resampler does not use floating point operations.
Diffstat (limited to 'src/pcm_resample_internal.h')
-rw-r--r--src/pcm_resample_internal.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pcm_resample_internal.h b/src/pcm_resample_internal.h
index af62b766..a10ba08c 100644
--- a/src/pcm_resample_internal.h
+++ b/src/pcm_resample_internal.h
@@ -52,7 +52,7 @@ pcm_resample_lsr_32(struct pcm_resample_state *state,
unsigned dest_rate,
size_t *dest_size_r);
-#else
+#endif
void
pcm_resample_fallback_deinit(struct pcm_resample_state *state);
@@ -75,5 +75,3 @@ pcm_resample_fallback_32(struct pcm_resample_state *state,
size_t *dest_size_r);
#endif
-
-#endif