summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudiodsp.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-05-19 20:46:24 +0100
committerMans Rullgard <mans@mansr.com>2011-05-20 01:20:53 +0100
commit89a20987355757be64c49fb714721c38902ac1cc (patch)
tree62de8974305ed169facc12da20c664765c3e038a /libavcodec/mpegaudiodsp.h
parent4887f8245c5dcd2a27817a678122eea4d1a0f31a (diff)
Fix ff_mpa_synth_filter_fixed() prototype
The prototype should use the same typedefs as the definition, or it will fail where int32_t is not int (DOS apparently). Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/mpegaudiodsp.h')
-rw-r--r--libavcodec/mpegaudiodsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodsp.h b/libavcodec/mpegaudiodsp.h
index 7b05b68eee..597e2533f5 100644
--- a/libavcodec/mpegaudiodsp.h
+++ b/libavcodec/mpegaudiodsp.h
@@ -39,7 +39,7 @@ void ff_mpa_synth_filter_fixed(MPADSPContext *s,
int32_t *synth_buf_ptr, int *synth_buf_offset,
int32_t *window, int *dither_state,
int16_t *samples, int incr,
- int *sb_samples);
+ int32_t *sb_samples);
void ff_mpa_synth_filter_float(MPADSPContext *s,
float *synth_buf_ptr, int *synth_buf_offset,