|
template<typename T > |
void | resample (const Buffer< T > &srcBuf, Buffer< T > &dstBuf, int dstSamples, int channels) |
| Resample audio data so that the complete src buffer fits into dstSamples in the dst buffer. The buffers contain audio with the same number of channels. More...
|
|
template<typename T > |
void | resample (const Buffer< T > &srcBuf, int srcOffsetSamples, int srcSamples, Buffer< T > &dstBuf, int dstOffsetSamples, int dstSamples, int channels) |
| Resample audio data with offsets and sizes specified for both src and dst buffers. The buffers contain audio with the same number of channels. More...
|
|
template<typename T > |
void | resample (const Buffer< T > &srcBuf, int srcOffsetSamples, int srcSamples, int srcChannels, Buffer< T > &dstBuf, int dstOffsetSamples, int dstSamples, int dstChannels) |
| Resample audio data with offsets and sizes specified for both src and dst buffers. More...
|
|
void | resampleAndConvert (const Buffer< short > &srcBuf, Buffer< float > &dstBuf, int dstCount, int channels) |
| Resample audio data so that the complete src buffer fits into dstCount samples in the dst buffer, and convert short to float samples along the way. More...
|
|
void | resampleAndConvert (const Buffer< float > &srcBuf, Buffer< short > &dstBuf, int dstCount, int channels) |
| Resample audio data so that the complete src buffer fits into dstCount samples in the dst buffer, and convert float to short samples along the way. More...
|
|
void | convert (const Buffer< float > &srcBuf, Buffer< short > &dstBuf, int dstCount) |
| Convert audio buffer from float to short samples. More...
|
|
void | convert (const Buffer< short > &srcBuf, Buffer< float > &dstBuf, int dstCount) |
| Convert audio buffer from short to float samples. More...
|
|
template<typename T > |
void | forceToStereo (const Buffer< T > &srcBuf, Buffer< T > &dstBuf, int srcChannels) |
| Convert audio buffer with arbitrary number of channels to stereo. More...
|
|