changeset 7984:24f2b8cc7918 libavcodec

Remove duplicate "const" qualifier for *matrix. This silences out a warning when compiling with Intel C Compiler. Patch by Diego 'Flameeyes' Petten %flameeyes A gmail P com%
author gpoirier
date Thu, 02 Oct 2008 19:09:56 +0000
parents 47f50599b368
children 5be50ba0ce24
files audioconvert.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/audioconvert.c	Thu Oct 02 19:05:35 2008 +0000
+++ b/audioconvert.c	Thu Oct 02 19:09:56 2008 +0000
@@ -77,7 +77,7 @@
 
 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)