|
Rubber Band Library
1.8.1
|
Go to the source code of this file.
| #define RUBBERBAND_VERSION "1.8.1" |
Definition at line 31 of file rubberband-c.h.
| #define RUBBERBAND_API_MAJOR_VERSION 2 |
Definition at line 32 of file rubberband-c.h.
| #define RUBBERBAND_API_MINOR_VERSION 5 |
Definition at line 33 of file rubberband-c.h.
| typedef int RubberBandOptions |
Definition at line 89 of file rubberband-c.h.
| typedef struct RubberBandState_* RubberBandState |
Definition at line 92 of file rubberband-c.h.
| enum RubberBandOption |
This is a C-linkage interface to the Rubber Band time stretcher.
This is a wrapper interface: the primary interface is in C++ and is defined and documented in RubberBandStretcher.h. The library itself is implemented in C++, and requires C++ standard library support even when using the C-linkage API.
Please see RubberBandStretcher.h for documentation.
If you are writing to the C++ API, do not include this header.
Definition at line 48 of file rubberband-c.h.
| RubberBandState rubberband_new | ( | unsigned int | sampleRate, |
| unsigned int | channels, | ||
| RubberBandOptions | options, | ||
| double | initialTimeRatio, | ||
| double | initialPitchScale | ||
| ) |
| void rubberband_delete | ( | RubberBandState | ) |
| void rubberband_reset | ( | RubberBandState | ) |
| void rubberband_set_time_ratio | ( | RubberBandState | , |
| double | ratio | ||
| ) |
| void rubberband_set_pitch_scale | ( | RubberBandState | , |
| double | scale | ||
| ) |
| double rubberband_get_time_ratio | ( | const RubberBandState | ) |
| double rubberband_get_pitch_scale | ( | const RubberBandState | ) |
| unsigned int rubberband_get_latency | ( | const RubberBandState | ) |
| void rubberband_set_transients_option | ( | RubberBandState | , |
| RubberBandOptions | options | ||
| ) |
| void rubberband_set_detector_option | ( | RubberBandState | , |
| RubberBandOptions | options | ||
| ) |
| void rubberband_set_phase_option | ( | RubberBandState | , |
| RubberBandOptions | options | ||
| ) |
| void rubberband_set_formant_option | ( | RubberBandState | , |
| RubberBandOptions | options | ||
| ) |
| void rubberband_set_pitch_option | ( | RubberBandState | , |
| RubberBandOptions | options | ||
| ) |
| void rubberband_set_expected_input_duration | ( | RubberBandState | , |
| unsigned int | samples | ||
| ) |
| unsigned int rubberband_get_samples_required | ( | const RubberBandState | ) |
| void rubberband_set_max_process_size | ( | RubberBandState | , |
| unsigned int | samples | ||
| ) |
| void rubberband_set_key_frame_map | ( | RubberBandState | , |
| unsigned int | keyframecount, | ||
| unsigned int * | from, | ||
| unsigned int * | to | ||
| ) |
| void rubberband_study | ( | RubberBandState | , |
| const float *const * | input, | ||
| unsigned int | samples, | ||
| int | final | ||
| ) |
| void rubberband_process | ( | RubberBandState | , |
| const float *const * | input, | ||
| unsigned int | samples, | ||
| int | final | ||
| ) |
| int rubberband_available | ( | const RubberBandState | ) |
| unsigned int rubberband_retrieve | ( | const RubberBandState | , |
| float *const * | output, | ||
| unsigned int | samples | ||
| ) |
| unsigned int rubberband_get_channel_count | ( | const RubberBandState | ) |
| void rubberband_set_debug_level | ( | RubberBandState | , |
| int | level | ||
| ) |
| void rubberband_set_default_debug_level | ( | int | level | ) |