Delete noise.

git-svn-id: http://op25.osmocom.org/svn/trunk@169 65a5c917-d112-43f1-993d-58c26a4786be
This commit is contained in:
stevie 2009-09-06 05:36:09 +00:00
parent 9f124e42e4
commit 4d32ec6a7b
2 changed files with 1 additions and 4 deletions

View File

@ -795,9 +795,7 @@ software_imbe_decoder::decode(uint8_t *buf)
correct(buf, u0, u1, u2, u3, u4, u5, u6, u7, E0, ET) ;
//replace the sync bit(LSB of u7) with the BOT flag
BOT = 1;
u7 = u7 | BOT; //ECC procedure called above always returns u7 LSB = 0
BOT = 0;
u7 = u7 | 0x01; //ECC procedure called above always returns u7 LSB = 0
// 'because E0 is 3 max and ET is 15 max, the 2 MSB of the error count byte are
// ' free for other data such as a 100 bit/sec serial bit stream to carry info

View File

@ -56,7 +56,6 @@ private:
float w0;
float Oldw0;
float Luv; //number of unvoiced spectral amplitudes
int BOT;
char sym_b[4096];
char RxData[4096];