[FFmpeg-cvslog] r24080 - trunk/libavcodec/wmadec.c

cehoyos subversion
Wed Jul 7 12:24:34 CEST 2010


Author: cehoyos
Date: Wed Jul  7 12:24:34 2010
New Revision: 24080

Log:
Silence warning "new qualifiers in middle of multi-level
non-const cast are unsafe".

Patch by Eli Friedman, eli d friedman a gmail

Modified:
   trunk/libavcodec/wmadec.c

Modified: trunk/libavcodec/wmadec.c
==============================================================================
--- trunk/libavcodec/wmadec.c	Wed Jul  7 12:19:59 2010	(r24079)
+++ trunk/libavcodec/wmadec.c	Wed Jul  7 12:24:34 2010	(r24080)
@@ -804,10 +804,10 @@ static int wma_decode_frame(WMACodecCont
                     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));



More information about the ffmpeg-cvslog mailing list