add API for resetting allocated resamplers
[pulseaudio.git] / src / pulsecore / resampler.h
blob82d01082e327efebfb01a454d5408148b500e742
1 #ifndef fooresamplerhfoo
2 #define fooresamplerhfoo
4 /* $Id$ */
6 /***
7 This file is part of PulseAudio.
9 Copyright 2004-2006 Lennart Poettering
11 PulseAudio is free software; you can redistribute it and/or modify
12 it under the terms of the GNU Lesser General Public License as published
13 by the Free Software Foundation; either version 2 of the License,
14 or (at your option) any later version.
16 PulseAudio is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU Lesser General Public License
22 along with PulseAudio; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 USA.
25 ***/
27 #include <pulse/sample.h>
28 #include <pulse/channelmap.h>
29 #include <pulsecore/memblock.h>
30 #include <pulsecore/memchunk.h>
32 typedef struct pa_resampler pa_resampler;
34 typedef enum pa_resample_method {
35 PA_RESAMPLER_INVALID = -1,
36 PA_RESAMPLER_SRC_SINC_BEST_QUALITY = 0, /* = SRC_SINC_BEST_QUALITY */
37 PA_RESAMPLER_SRC_SINC_MEDIUM_QUALITY = 1, /* = SRC_SINC_MEDIUM_QUALITY */
38 PA_RESAMPLER_SRC_SINC_FASTEST = 2, /* = SRC_SINC_FASTEST */
39 PA_RESAMPLER_SRC_ZERO_ORDER_HOLD = 3, /* = SRC_ZERO_ORDER_HOLD */
40 PA_RESAMPLER_SRC_LINEAR = 4, /* = SRC_LINEAR */
41 PA_RESAMPLER_TRIVIAL,
42 PA_RESAMPLER_SPEEX_FLOAT_BASE,
43 PA_RESAMPLER_SPEEX_FLOAT_MAX = PA_RESAMPLER_SPEEX_FLOAT_BASE + 10,
44 PA_RESAMPLER_SPEEX_FIXED_BASE,
45 PA_RESAMPLER_SPEEX_FIXED_MAX = PA_RESAMPLER_SPEEX_FIXED_BASE + 10,
46 PA_RESAMPLER_FFMPEG,
47 PA_RESAMPLER_AUTO, /* automatic select based on sample format */
48 PA_RESAMPLER_COPY,
49 PA_RESAMPLER_MAX
50 } pa_resample_method_t;
52 typedef enum pa_resample_flags {
53 PA_RESAMPLER_VARIABLE_RATE = 1,
54 PA_RESAMPLER_NO_REMAP = 2, /* implies NO_REMIX */
55 PA_RESAMPLER_NO_REMIX = 4
56 } pa_resample_flags_t;
58 pa_resampler* pa_resampler_new(
59 pa_mempool *pool,
60 const pa_sample_spec *a,
61 const pa_channel_map *am,
62 const pa_sample_spec *b,
63 const pa_channel_map *bm,
64 pa_resample_method_t resample_method,
65 pa_resample_flags_t flags);
67 void pa_resampler_free(pa_resampler *r);
69 /* Returns the size of an input memory block which is required to return the specified amount of output data */
70 size_t pa_resampler_request(pa_resampler *r, size_t out_length);
72 /* Returns the maximum size of input blocks we can process without needing bounce buffers larger than the mempool tile size. */
73 size_t pa_resampler_max_block_size(pa_resampler *r);
75 /* Pass the specified memory chunk to the resampler and return the newly resampled data */
76 void pa_resampler_run(pa_resampler *r, const pa_memchunk *in, pa_memchunk *out);
78 /* Change the input rate of the resampler object */
79 void pa_resampler_set_input_rate(pa_resampler *r, uint32_t rate);
81 /* Change the output rate of the resampler object */
82 void pa_resampler_set_output_rate(pa_resampler *r, uint32_t rate);
84 /* Reinitialize state of the resampler, possibly due to seeking or other discontinuities */
85 void pa_resampler_reset(pa_resampler *r);
87 /* Return the resampling method of the resampler object */
88 pa_resample_method_t pa_resampler_get_method(pa_resampler *r);
90 /* Try to parse the resampler method */
91 pa_resample_method_t pa_parse_resample_method(const char *string);
93 /* return a human readable string for the specified resampling method. Inverse of pa_parse_resample_method() */
94 const char *pa_resample_method_to_string(pa_resample_method_t m);
96 /* Return 1 when the specified resampling method is supported */
97 int pa_resample_method_supported(pa_resample_method_t m);
100 #endif