Commit d3b9e7f1 authored by Diego Pettenò's avatar Diego Pettenò Committed by Guillaume Poirier

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%

Originally committed as revision 15524 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a5d24133
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment