diff --git a/configure.in b/configure.in index 92f93436..41b2e07f 100755 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.50) AC_INIT(src/main.cpp) -AM_INIT_AUTOMAKE(llcon,3.0.0) +AM_INIT_AUTOMAKE(llcon,3.0.1cvs) AM_CONFIG_HEADER(config.h) diff --git a/src/client.cpp b/src/client.cpp index cf6f05e5..60c2090f 100755 --- a/src/client.cpp +++ b/src/client.cpp @@ -544,7 +544,7 @@ void CClient::ProcessAudioData ( CVector& vecsStereoSndCrd ) // lost packet celt_decode ( CeltDecoder, NULL, - iCeltNumCodedBytes, + 0, &vecsAudioSndCrdMono[i * SYSTEM_FRAME_SIZE_SAMPLES] ); } } diff --git a/src/global.h b/src/global.h index 5977159d..92e9955a 100755 --- a/src/global.h +++ b/src/global.h @@ -43,7 +43,7 @@ // version and application name (always use this version) #undef VERSION -#define VERSION "3.0.0" +#define VERSION "3.0.1cvs" #define APP_NAME "llcon" // file name for logging file diff --git a/src/server.cpp b/src/server.cpp index 91c778d5..f39da92c 100755 --- a/src/server.cpp +++ b/src/server.cpp @@ -369,7 +369,7 @@ void CServer::OnTimer() // lost packet celt_decode ( CeltDecoder[iCurChanID], NULL, - iCeltNumCodedBytes, + 0, &vecvecsData[i][0] ); }