2 * This file is part of DisOrder.
3 * Copyright (C) 2009 Richard Kettlewell
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 /** @file lib/resample.h
20 * @brief Audio resampling
27 #include <samplerate.h>
31 #define ENDIAN_LITTLE 2
34 int input_bits, input_channels, input_rate, input_signed, input_endian;
35 int output_bits, output_channels, output_rate, output_signed, output_endian;
36 int input_bytes_per_sample;
37 int input_bytes_per_frame;
43 void resample_init(struct resampler *rs,
44 int input_bits, int input_channels,
45 int input_rate, int input_signed,
47 int output_bits, int output_channels,
48 int output_rate, int output_signed,
50 size_t resample_convert(struct resampler *rs,
54 void (*converted)(uint8_t *bytes,
56 void resample_close(struct resampler *rs);
58 #endif /* RESAMPLE_H */