new version number, small fix for celt decoding
This commit is contained in:
parent
86e52813a9
commit
dae4e63e3a
4 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||||
|
|
|
@ -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] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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] );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue