Definition in file resample.c.
Go to the source code of this file.
Classes | |
| struct | ReSampleContext |
Functions | |
| static void | stereo_to_mono (short *output, short *input, int n1) |
| static void | mono_to_stereo (short *output, short *input, int n1) |
| static void | stereo_split (short *output1, short *output2, short *input, int n) |
| static void | stereo_mux (short *output, short *input1, short *input2, int n) |
| static void | ac3_5p1_mux (short *output, short *input1, short *input2, int n) |
| ReSampleContext * | audio_resample_init (int output_channels, int input_channels, int output_rate, int input_rate) |
| int | audio_resample (ReSampleContext *s, short *output, short *input, int nb_samples) |
| void | audio_resample_close (ReSampleContext *s) |
| static void stereo_to_mono | ( | short * | output, | |
| short * | input, | |||
| int | n1 | |||
| ) | [static] |
| static void mono_to_stereo | ( | short * | output, | |
| short * | input, | |||
| int | n1 | |||
| ) | [static] |
| static void stereo_split | ( | short * | output1, | |
| short * | output2, | |||
| short * | input, | |||
| int | n | |||
| ) | [static] |
| static void stereo_mux | ( | short * | output, | |
| short * | input1, | |||
| short * | input2, | |||
| int | n | |||
| ) | [static] |
| static void ac3_5p1_mux | ( | short * | output, | |
| short * | input1, | |||
| short * | input2, | |||
| int | n | |||
| ) | [static] |
| ReSampleContext* audio_resample_init | ( | int | output_channels, | |
| int | input_channels, | |||
| int | output_rate, | |||
| int | input_rate | |||
| ) |
Definition at line 129 of file resample.c.
| int audio_resample | ( | ReSampleContext * | s, | |
| short * | output, | |||
| short * | input, | |||
| int | nb_samples | |||
| ) |
Definition at line 172 of file resample.c.
| void audio_resample_close | ( | ReSampleContext * | s | ) |
Definition at line 244 of file resample.c.
1.5.5