![]() |
LIBML
Version 3.2.4
LIBML DSP Software Library
|
Functions | |
void | tpt_imdct12_f32 (f32_t *aOutData, const f32_t *aInData) |
Processing function for the floating-point 12-point IMDCT. More... | |
void | tpt_imdct12_q15 (q3_12_t *aOutData, const q15_t *aInData) |
Processing function for the Q15 12-point IMDCT. More... | |
void | tpt_imdct12_q31 (q3_28_t *aOutData, const q31_t *aInData) |
Processing function for the Q31 12-point IMDCT. More... | |
void | tpt_imdct36_f32 (f32_t *aOutData, const f32_t *aInData) |
Processing function for the floating-point 36-point IMDCT. More... | |
void | tpt_imdct36_q15 (q5_10_t *aOutData, const q15_t *aInData) |
Processing function for the Q31 36-point IMDCT. More... | |
void | tpt_imdct36_q31 (q5_26_t *aOutData, const q31_t *aInData) |
Processing function for the Q31 36-point IMDCT. More... | |
void | tpt_mdct12_f32 (f32_t *aOutData, const f32_t *aInData) |
Processing function for the floating-point 12-point MDCT. More... | |
void | tpt_mdct12_q15 (q4_11_t *aOutData, const q15_t *aInData) |
Processing function for the Q15 12-point MDCT. More... | |
void | tpt_mdct12_q31 (q4_27_t *aOutData, const q31_t *aInData) |
Processing function for the Q31 12-point MDCT. More... | |
void | tpt_mdct36_f32 (f32_t *aOutData, const f32_t *aInData) |
Processing function for the floating-point 36-point MDCT. More... | |
void | tpt_mdct36_q15 (q6_9_t *aOutData, const q15_t *aInData) |
Processing function for the Q15 36-point MDCT. More... | |
void | tpt_mdct36_q31 (q6_25_t *aOutData, const q31_t *aInData) |
Processing function for the Q31 36-point MDCT. More... | |
tpt_status | tpt_mdct_f32 (f32_t *aOutData, f32_t *aInData, size_t aLogN, bool aImdctFlag) |
Processing function for the floating-point MDCT. Source buffer is modified by this function. More... | |
tpt_status | tpt_mdct_q15 (q15_t *aOutData, q15_t *aInData, size_t aLogN, bool aImdctFlag) |
Processing function for the Q15 MDCT. Source buffer is modified by this function. More... | |
tpt_status | tpt_mdct_q31 (q31_t *aOutData, q31_t *aInData, size_t aLogN, bool aImdctFlag) |
Processing function for the Q31 MDCT. Source buffer is modified by this function. More... | |
The Modified Discrete Cosine Transform (MDCT) is widely used in speech and audio coding as analysis/synthesis filter bank with time domain alias cancellation property. Since it is a lapped transform it is particularly useful in mitigating blocking artifacts that arise in audio coding because of quantization of the spectral coefficients.
N-1 X[k] = sum { x[n] * cos(PI * (4n + 2 + N) * (2k + 1) / (4N) } n=0 for k = 0, 1, ..., N/2 - 12] inverse transform
N/2-1 x[k] = sum { X[n] * cos(PI * (4k + 2 + N) * (2n + 1) / (4N) } n=0 for k = 0, 1, ..., N - 1The N-point MDCT internally uses N/2-point DCT4 implementation. It supports lengths of [64, 128, ..., 4096] and the corresponding
aLogN
value is [6, 7, ..., 12]. There are separate functions for 12-point and 36-point.Processing function for the floating-point 12-point IMDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 6 and the output length is 12. |
Processing function for the Q15 12-point IMDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 6 and the output length is 12. |
Processing function for the Q31 12-point IMDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 6 and the output length is 12. |
Processing function for the floating-point 36-point IMDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 18 and the output length is 36. |
Processing function for the Q31 36-point IMDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 18 and the output length is 36. |
Processing function for the Q31 36-point IMDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 18 and the output length is 36. |
Processing function for the floating-point 12-point MDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 12 and the output length is 6. |
Processing function for the Q15 12-point MDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 12 and the output length is 6. |
Processing function for the Q31 12-point MDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 12 and the output length is 6. |
Processing function for the floating-point 36-point MDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 36 and the output length is 18. |
Processing function for the Q15 36-point MDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 36 and the output length is 18. |
Processing function for the Q31 36-point MDCT.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer. Note: the input length is 36 and the output length is 18. |
tpt_status tpt_mdct_f32 | ( | f32_t * | aOutData, |
f32_t * | aInData, | ||
size_t | aLogN, | ||
bool | aImdctFlag | ||
) |
Processing function for the floating-point MDCT. Source buffer is modified by this function.
[out] | aOutData | points to output buffer |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | length is 2^aLogN |
[in] | aImdctFlag | flag that selects transform direction.
|
tpt_status tpt_mdct_q15 | ( | q15_t * | aOutData, |
q15_t * | aInData, | ||
size_t | aLogN, | ||
bool | aImdctFlag | ||
) |
Processing function for the Q15 MDCT. Source buffer is modified by this function.
[out] | aOutData | points to output buffer |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | length is 2^aLogN |
[in] | aImdctFlag | flag that selects transform direction.
|
tpt_status tpt_mdct_q31 | ( | q31_t * | aOutData, |
q31_t * | aInData, | ||
size_t | aLogN, | ||
bool | aImdctFlag | ||
) |
Processing function for the Q31 MDCT. Source buffer is modified by this function.
[out] | aOutData | points to output buffer |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | length is 2^aLogN |
[in] | aImdctFlag | flag that selects transform direction.
|