diff options
Diffstat (limited to 'src/libfaad/sbr_dct.h')
-rw-r--r-- | src/libfaad/sbr_dct.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/libfaad/sbr_dct.h b/src/libfaad/sbr_dct.h index 4eadc5056..6293486c7 100644 --- a/src/libfaad/sbr_dct.h +++ b/src/libfaad/sbr_dct.h @@ -22,7 +22,7 @@ ** Commercial non-GPL licensing of this software is possible. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. ** -** $Id: sbr_dct.h,v 1.4 2004/12/03 01:15:30 tmattern Exp $ +** $Id: sbr_dct.h,v 1.5 2005/10/29 23:57:07 tmmm Exp $ **/ #ifndef __SBR_DCT_H__ @@ -32,11 +32,14 @@ extern "C" { #endif +void dct4_kernel(real_t * in_real, real_t * in_imag, real_t * out_real, real_t * out_imag); + void DCT3_32_unscaled(real_t *y, real_t *x); -void DCT2_64_unscaled(real_t *y, real_t *x); -void DST2_64_unscaled(real_t *y, real_t *x); -void DCT4_64(real_t *y, real_t *x); -void DCT4_64_kernel(real_t *y, real_t *t2); +void DCT4_32(real_t *y, real_t *x); +void DST4_32(real_t *y, real_t *x); +void DCT2_32_unscaled(real_t *y, real_t *x); +void DCT4_16(real_t *y, real_t *x); +void DCT2_16_unscaled(real_t *y, real_t *x); #ifdef __cplusplus |