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.c | |
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.c')
-rw-r--r-- | libavcodec/sbrdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sbrdsp.c b/libavcodec/sbrdsp.c index 2711e71338..aef894a51d 100644 --- a/libavcodec/sbrdsp.c +++ b/libavcodec/sbrdsp.c @@ -151,7 +151,7 @@ static void sbr_hf_gen_c(float (*X_high)[2], const float (*X_low)[2], } static void sbr_hf_g_filt_c(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) { int m; |