Browse Source

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>
tags/n0.8
Mans Rullgard 14 years ago
parent
commit
89a2098735
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpegaudiodsp.h

+ 1
- 1
libavcodec/mpegaudiodsp.h View File

@@ -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,


Loading…
Cancel
Save