[FFmpeg-devel] [PATCH] Fix warning in wma_decode_frame (in libavcodec/wmadec.c)

Eli Friedman eli.friedman
Wed Jul 7 05:10:25 CEST 2010


Attached.  Fixes warning "new qualifiers in middle of multi-level
non-const cast are unsafe".

-Eli
-------------- next part --------------
Index: libavcodec/wmadec.c
===================================================================
--- libavcodec/wmadec.c	(revision 24068)
+++ libavcodec/wmadec.c	(working copy)
@@ -804,10 +804,10 @@
                     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-devel mailing list