[FFmpeg-devel] [PATCH 6/8] Remove a double const.

Diego 'Flameeyes' Pettenò flameeyes
Thu Oct 2 16:39:48 CEST 2008


ICC warns of "type qualifier specified more than once" for this double
const float type.
---

 libavcodec/audioconvert.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/audioconvert.c b/libavcodec/audioconvert.c
index 745f01d..f6a22bf 100644
--- a/libavcodec/audioconvert.c
+++ b/libavcodec/audioconvert.c
@@ -77,7 +77,7 @@ struct AVAudioConvert {
 
 AVAudioConvert *av_audio_convert_alloc(enum SampleFormat out_fmt, int out_channels,
                                        enum SampleFormat in_fmt, int in_channels,
-                                       const const float *matrix, int flags)
+                                       const float *matrix, int flags)
 {
     AVAudioConvert *ctx;
     if (in_channels!=out_channels)





More information about the ffmpeg-devel mailing list