summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/resampler.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-09-05 16:04:42 +0300
committerLennart Poettering <lennart@poettering.net>2008-09-05 16:04:42 +0300
commitf2164023fd0fda8c1a456c5c2f144f8943c24db9 (patch)
treec2c14f0d6b09640b40858eb889304dbb87d56a47 /src/pulsecore/resampler.h
parent33d349dcbbef0952e9e59ca105e08fdff5454803 (diff)
Add new option to disable remixing from/to LFE and set it to on by default
Diffstat (limited to 'src/pulsecore/resampler.h')
-rw-r--r--src/pulsecore/resampler.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pulsecore/resampler.h b/src/pulsecore/resampler.h
index 5e302a9b..87110cc2 100644
--- a/src/pulsecore/resampler.h
+++ b/src/pulsecore/resampler.h
@@ -49,9 +49,10 @@ typedef enum pa_resample_method {
} pa_resample_method_t;
typedef enum pa_resample_flags {
- PA_RESAMPLER_VARIABLE_RATE = 1,
- PA_RESAMPLER_NO_REMAP = 2, /* implies NO_REMIX */
- PA_RESAMPLER_NO_REMIX = 4
+ PA_RESAMPLER_VARIABLE_RATE = 0x0001U,
+ PA_RESAMPLER_NO_REMAP = 0x0002U, /* implies NO_REMIX */
+ PA_RESAMPLER_NO_REMIX = 0x0004U,
+ PA_RESAMPLER_NO_LFE = 0x0008U
} pa_resample_flags_t;
pa_resampler* pa_resampler_new(