From 7e4a525e7299f46212a61ca7b39c2f60957b68df Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Thu, 10 Jan 2008 16:54:39 +0000 Subject: [PATCH] fixed compilation warning about const (depends on speex lib ver) git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@597 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/speex/speex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/plug-in/speex/speex.c b/core/plug-in/speex/speex.c index 80e64b0b..f43a127c 100644 --- a/core/plug-in/speex/speex.c +++ b/core/plug-in/speex/speex.c @@ -282,7 +282,7 @@ int Pcm16_2_SpeexNB( unsigned char* out_buf, unsigned char* in_buf, unsigned int { SpeexState* ss; OneWay *encoder; - const short* pcm = (const short*) in_buf; + short* pcm = (short*) in_buf; char* buffer = (char*)out_buf; div_t blocks;