summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudiodsp.h
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2011-11-07 21:54:49 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-07 22:35:55 +0100
commite32aaba3581a8ffd0737c9c00d2a42533687952b (patch)
tree726bb7c9c553ff939184d4e003ab184e09a12772 /libavcodec/mpegaudiodsp.h
parentdf9c1cfb48c2d8ddb3c11b4d1e8c4c33c6b0d8a2 (diff)
mpegaudiodec: move imdct36() to MPADSPContext
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegaudiodsp.h')
-rw-r--r--libavcodec/mpegaudiodsp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/mpegaudiodsp.h b/libavcodec/mpegaudiodsp.h
index 8a18db8325..9e84784403 100644
--- a/libavcodec/mpegaudiodsp.h
+++ b/libavcodec/mpegaudiodsp.h
@@ -28,6 +28,8 @@ typedef struct MPADSPContext {
int *dither_state, int16_t *samples, int incr);
void (*dct32_float)(float *dst, const float *src);
void (*dct32_fixed)(int *dst, const int *src);
+ void (*imdct36_float)(float *out, float *buf, float *in, float *win);
+ void (*imdct36_fixed)(int *out, int *buf, int *in, int *win);
} MPADSPContext;
void ff_mpadsp_init(MPADSPContext *s);
@@ -61,4 +63,7 @@ void ff_mpadsp_apply_window_fixed(int32_t *synth_buf, int32_t *window,
int *dither_state, int16_t *samples,
int incr);
+void ff_imdct36_fixed(int *out, int *buf, int *in, int *win);
+void ff_imdct36_float(float *out, float *buf, float *in, float *win);
+
#endif /* AVCODEC_MPEGAUDIODSP_H */