diff options
author | Christophe GISQUET <christophe.gisquet@gmail.com> | 2012-02-23 22:25:48 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-02-23 15:48:40 -0800 |
commit | 2e74a5abc2fda6cfbc86589852d6194d502332cb (patch) | |
tree | 56d646c92e61cbcff4f6b1f08b2f6bd444731d46 /libavcodec/sbrdsp.h | |
parent | 31632e73f47d25e2077fce729571259ee6354854 (diff) | |
download | ffmpeg-2e74a5abc2fda6cfbc86589852d6194d502332cb.tar.gz |
SBR DSP: use intptr_t for the ixh parameter.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/sbrdsp.h')
-rw-r--r-- | libavcodec/sbrdsp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/sbrdsp.h b/libavcodec/sbrdsp.h index 88285b07ec..ee5d5a0972 100644 --- a/libavcodec/sbrdsp.h +++ b/libavcodec/sbrdsp.h @@ -21,6 +21,8 @@ #ifndef LIBAVCODEC_SBRDSP_H #define LIBAVCODEC_SBRDSP_H +#include <stdint.h> + typedef struct SBRDSPContext { void (*sum64x5)(float *z); float (*sum_square)(float (*x)[2], int n); @@ -34,7 +36,7 @@ typedef struct SBRDSPContext { const float alpha0[2], const float alpha1[2], float bw, int start, int end); void (*hf_g_filt)(float (*Y)[2], const float (*X_high)[40][2], - const float *g_filt, int m_max, int ixh); + const float *g_filt, int m_max, intptr_t ixh); void (*hf_apply_noise[4])(float (*Y)[2], const float *s_m, const float *q_filt, int noise, int kx, int m_max); |