summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/resampler.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-08-23 22:35:40 +0000
committerLennart Poettering <lennart@poettering.net>2007-08-23 22:35:40 +0000
commited4dc16b95ce73862540a9669c273b9d0b888100 (patch)
tree882490ec7c118c77fc29d96c1c93e40253985faa /src/pulsecore/resampler.h
parent4eb9bb074653a6ebbb925c701c69d2b101098142 (diff)
big resampler rework: support integer-only resampling, support speex resampler
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1712 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/resampler.h')
-rw-r--r--src/pulsecore/resampler.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pulsecore/resampler.h b/src/pulsecore/resampler.h
index ada293e5..35f53db3 100644
--- a/src/pulsecore/resampler.h
+++ b/src/pulsecore/resampler.h
@@ -41,6 +41,11 @@ typedef enum pa_resample_method {
PA_RESAMPLER_SRC_ZERO_ORDER_HOLD = SRC_ZERO_ORDER_HOLD,
PA_RESAMPLER_SRC_LINEAR = SRC_LINEAR,
PA_RESAMPLER_TRIVIAL,
+ PA_RESAMPLER_SPEEX_FLOAT_BASE,
+ PA_RESAMPLER_SPEEX_FLOAT_MAX = PA_RESAMPLER_SPEEX_FLOAT_BASE + 10,
+ PA_RESAMPLER_SPEEX_FIXED_BASE,
+ PA_RESAMPLER_SPEEX_FIXED_MAX = PA_RESAMPLER_SPEEX_FIXED_BASE + 10,
+ PA_RESAMPLER_AUTO, /* automatic select based on sample format */
PA_RESAMPLER_MAX
} pa_resample_method_t;