TCH_FS
| 1374 | |
| 1375 | // TCH_FS |
| 1376 | TCHFACCHL1Decoder::TCHFACCHL1Decoder( |
| 1377 | unsigned wCN, |
| 1378 | unsigned wTN, |
| 1379 | const TDMAMapping& wMapping, |
| 1380 | L1FEC *wParent) |
| 1381 | :XCCHL1Decoder(wCN,wTN, wMapping, wParent) |
| 1382 | { |
| 1383 | for (int i=0; i<8; i++) { |
| 1384 | mE[i] = SoftVector(114); |
| 1385 | mI[i] = SoftVector(114); |
| 1386 | // Fill with zeros just to make Valgrind happy. |
| 1387 | mI[i].fill(.0); |
| 1388 | mE[i].fill(.0); |
| 1389 | } |
| 1390 | } |
| 1391 | |
| 1392 | ViterbiBase *newViterbi(AMRMode mode) |
| 1393 | { |