new version number, small fix for celt decoding

This commit is contained in:
Volker Fischer 2009-08-21 05:53:54 +00:00
parent 86e52813a9
commit dae4e63e3a
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT(src/main.cpp) AC_INIT(src/main.cpp)
AM_INIT_AUTOMAKE(llcon,3.0.0) AM_INIT_AUTOMAKE(llcon,3.0.1cvs)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)

View file

@ -544,7 +544,7 @@ void CClient::ProcessAudioData ( CVector<int16_t>& vecsStereoSndCrd )
// lost packet // lost packet
celt_decode ( CeltDecoder, celt_decode ( CeltDecoder,
NULL, NULL,
iCeltNumCodedBytes, 0,
&vecsAudioSndCrdMono[i * SYSTEM_FRAME_SIZE_SAMPLES] ); &vecsAudioSndCrdMono[i * SYSTEM_FRAME_SIZE_SAMPLES] );
} }
} }

View file

@ -43,7 +43,7 @@
// version and application name (always use this version) // version and application name (always use this version)
#undef VERSION #undef VERSION
#define VERSION "3.0.0" #define VERSION "3.0.1cvs"
#define APP_NAME "llcon" #define APP_NAME "llcon"
// file name for logging file // file name for logging file

View file

@ -369,7 +369,7 @@ void CServer::OnTimer()
// lost packet // lost packet
celt_decode ( CeltDecoder[iCurChanID], celt_decode ( CeltDecoder[iCurChanID],
NULL, NULL,
iCeltNumCodedBytes, 0,
&vecvecsData[i][0] ); &vecvecsData[i][0] );
} }