[FFmpeg-cvslog] wavpackenc: remove duplicate 'const' declaration specifier

Reimar Döffinger Reimar.Doeffinger at gmx.de
Mon Aug 26 21:49:46 CEST 2013


On Mon, Aug 26, 2013 at 09:31:45PM +0200, Paul B Mahol wrote:
> ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Mon Aug 26 19:30:45 2013 +0000| [b74213db0803848ab61a815161fbb5fb4fb8b220] | committer: Paul B Mahol
> 
> wavpackenc: remove duplicate 'const' declaration specifier
> 
> Signed-off-by: Paul B Mahol <onemda at gmail.com>
> 
> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b74213db0803848ab61a815161fbb5fb4fb8b220
> ---
> 
>  libavcodec/wavpackenc.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/wavpackenc.h b/libavcodec/wavpackenc.h
> index 1582d68..7a482ce 100644
> --- a/libavcodec/wavpackenc.h
> +++ b/libavcodec/wavpackenc.h
> @@ -637,7 +637,7 @@ static const WavPackDecorrSpec very_high_specs[] = {
>   { 0, 1, { -1,18,18, 2,18, 3, 5,18, 2,18, 6, 8, 4, 5, 7,-1 } },
>  };
>  
> -static const WavPackDecorrSpec const *decorr_filters[] = {
> +static const WavPackDecorrSpec *decorr_filters[] = {

I suspect this wasn't meant to be duplicate but was supposed to be

static const WavPackDecorrSpec * const decorr_filters


More information about the ffmpeg-cvslog mailing list