diff options
Diffstat (limited to 'src/pcm_utils.h')
-rw-r--r-- | src/pcm_utils.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/pcm_utils.h b/src/pcm_utils.h index 4041e2f64..b67fae00e 100644 --- a/src/pcm_utils.h +++ b/src/pcm_utils.h @@ -44,18 +44,20 @@ struct pcm_convert_state { int error; }; -void pcm_volumeChange(char *buffer, int bufferSize, const struct audio_format *format, - int volume); +void pcm_volume(char *buffer, int bufferSize, + const struct audio_format *format, + int volume); void pcm_mix(char *buffer1, const char *buffer2, size_t size, const struct audio_format *format, float portion1); -size_t pcm_convertAudioFormat(const struct audio_format *inFormat, - const char *inBuffer, size_t inSize, - const struct audio_format *outFormat, - char *outBuffer, - struct pcm_convert_state *convState); +size_t pcm_convert(const struct audio_format *inFormat, + const char *inBuffer, size_t inSize, + const struct audio_format *outFormat, + char *outBuffer, + struct pcm_convert_state *convState); + +size_t pcm_convert_size(const struct audio_format *inFormat, size_t inSize, + const struct audio_format *outFormat); -size_t pcm_sizeOfConvBuffer(const struct audio_format *inFormat, size_t inSize, - const struct audio_format *outFormat); #endif |