diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2010-07-07 10:24:34 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-07-07 10:24:34 +0000 |
commit | c7310b7b2bb65bd31786840ecd0fab459bd3a6bd (patch) | |
tree | 786a6d86831c9b1c5a89a029e92b962a93e979cc /libavcodec/wmadec.c | |
parent | bba66fc7be8d3c47bc9659ffe9ccd63aea84352f (diff) | |
download | ffmpeg-c7310b7b2bb65bd31786840ecd0fab459bd3a6bd.tar.gz |
Silence warning "new qualifiers in middle of multi-level
non-const cast are unsafe".
Patch by Eli Friedman, eli d friedman a gmail
Originally committed as revision 24080 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r-- | libavcodec/wmadec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index a24256d457..5582a7236b 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -804,10 +804,10 @@ static int wma_decode_frame(WMACodecContext *s, int16_t *samples) s->frame_len * sizeof(float)); } } else { - float *output[MAX_CHANNELS]; + const float *output[MAX_CHANNELS]; for (ch = 0; ch < MAX_CHANNELS; ch++) output[ch] = s->frame_out[ch]; - s->dsp.float_to_int16_interleave(samples, (const float **)output, n, incr); + s->dsp.float_to_int16_interleave(samples, output, n, incr); for(ch = 0; ch < incr; ch++) { /* prepare for next block */ memmove(&s->frame_out[ch][0], &s->frame_out[ch][n], n * sizeof(float)); |