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_INIT(src/main.cpp)
AM_INIT_AUTOMAKE(llcon,3.0.0)
AM_INIT_AUTOMAKE(llcon,3.0.1cvs)
AM_CONFIG_HEADER(config.h)

View File

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

View File

@ -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

View File

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