1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
|
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 Edouard Griffiths, F4EXB. //
// //
// Class specialized for K=5 decoding //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation as version 3 of the License, or //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <string.h>
#include <limits.h>
#include "viterbi5.h"
namespace DSDcc
{
Viterbi5::Viterbi5(int n, const unsigned int *polys, bool msbFirst) :
Viterbi(5, n, polys, msbFirst)
{
}
Viterbi5::~Viterbi5()
{
}
void Viterbi5::decodeFromBits(
unsigned char *dataBits, //!< Decoded output data bits
const unsigned char *bits, //!< Input bits
unsigned int nbBits, //!< Number of input bits
unsigned int startstate) //!< Encoder starting state
{
if (nbBits > m_nbBitsMax)
{
if (m_symbols) {
delete[] m_symbols;
}
m_symbols = new unsigned char[nbBits/m_n];
m_nbBitsMax = nbBits;
}
for (unsigned int i = 0; i < nbBits; i += m_n)
{
m_symbols[i/m_n] = bits[i];
for (int j = m_n-1; j > 0; j--)
{
m_symbols[i/m_n] += bits[i+j] << j;
}
}
decodeFromSymbols(dataBits, m_symbols, nbBits/m_n, startstate);
}
void Viterbi5::decodeFromSymbols(
unsigned char *dataBits, //!< Decoded output data bits
const unsigned char *symbols, //!< Input symbols
unsigned int nbSymbols, //!< Number of input symbols
unsigned int startstate) //!< Encoder starting state
{
if (nbSymbols > m_nbSymbolsMax)
{
if (m_traceback) {
delete[] m_traceback;
}
if (m_pathMetrics) {
delete[] m_pathMetrics;
}
m_traceback = new unsigned char[16 * nbSymbols];
m_pathMetrics = new uint32_t[16];
m_nbSymbolsMax = nbSymbols;
}
// initial path metrics state
memset(m_pathMetrics, Viterbi::m_maxMetric, 16 * sizeof(uint32_t));
m_pathMetrics[startstate] = 0;
for (unsigned int is = 0; is < nbSymbols; is++)
{
// std::cerr << "Viterbi3::decodeFromSymbols: S[" << is << "]=" << (int) symbols[is] << std::endl;
// compute metrics
doMetrics(
is,
m_branchCodes,
symbols[is],
&m_traceback[0*nbSymbols],
&m_traceback[1*nbSymbols],
&m_traceback[2*nbSymbols],
&m_traceback[3*nbSymbols],
&m_traceback[4*nbSymbols],
&m_traceback[5*nbSymbols],
&m_traceback[6*nbSymbols],
&m_traceback[7*nbSymbols],
&m_traceback[8*nbSymbols],
&m_traceback[9*nbSymbols],
&m_traceback[10*nbSymbols],
&m_traceback[11*nbSymbols],
&m_traceback[12*nbSymbols],
&m_traceback[13*nbSymbols],
&m_traceback[14*nbSymbols],
&m_traceback[15*nbSymbols],
m_pathMetrics
);
} // symbols
// trace back
uint32_t minPathMetric = m_pathMetrics[0];
unsigned int minPathIndex = 0;
for (int i = 1; i < 16; i++)
{
if (m_pathMetrics[i] < minPathMetric)
{
minPathMetric = m_pathMetrics[i];
minPathIndex = i;
}
}
// std::cerr << "Viterbi3::decodeFromSymbols: last path node: " << minPathIndex << std::endl;
traceBack(
nbSymbols,
minPathIndex,
dataBits,
&m_traceback[0*nbSymbols],
&m_traceback[1*nbSymbols],
&m_traceback[2*nbSymbols],
&m_traceback[3*nbSymbols],
&m_traceback[4*nbSymbols],
&m_traceback[5*nbSymbols],
&m_traceback[6*nbSymbols],
&m_traceback[7*nbSymbols],
&m_traceback[8*nbSymbols],
&m_traceback[9*nbSymbols],
&m_traceback[10*nbSymbols],
&m_traceback[11*nbSymbols],
&m_traceback[12*nbSymbols],
&m_traceback[13*nbSymbols],
&m_traceback[14*nbSymbols],
&m_traceback[15*nbSymbols]
);
}
void Viterbi5::doMetrics(
int n,
unsigned char *branchCodes,
unsigned char symbol,
unsigned char *m_pathMemory0,
unsigned char *m_pathMemory1,
unsigned char *m_pathMemory2,
unsigned char *m_pathMemory3,
unsigned char *m_pathMemory4,
unsigned char *m_pathMemory5,
unsigned char *m_pathMemory6,
unsigned char *m_pathMemory7,
unsigned char *m_pathMemory8,
unsigned char *m_pathMemory9,
unsigned char *m_pathMemory10,
unsigned char *m_pathMemory11,
unsigned char *m_pathMemory12,
unsigned char *m_pathMemory13,
unsigned char *m_pathMemory14,
unsigned char *m_pathMemory15,
uint32_t *m_pathMetric
)
{
uint32_t tempMetric[16];
uint32_t metric[32];
uint32_t m1;
uint32_t m2;
// Treillis edges:
// State Received
metric[0] = NbOnes[branchCodes[0] ^ symbol]; // 0000 0
metric[1] = NbOnes[branchCodes[1] ^ symbol]; // 0000 1
metric[2] = NbOnes[branchCodes[2] ^ symbol]; // 0001 0
metric[3] = NbOnes[branchCodes[3] ^ symbol]; // 0001 1
metric[4] = NbOnes[branchCodes[4] ^ symbol]; // 0010 0
metric[5] = NbOnes[branchCodes[5] ^ symbol]; // 0010 1
metric[6] = NbOnes[branchCodes[6] ^ symbol]; // 0011 0
metric[7] = NbOnes[branchCodes[7] ^ symbol]; // 0011 1
metric[8] = NbOnes[branchCodes[8] ^ symbol]; // 0100 0
metric[9] = NbOnes[branchCodes[9] ^ symbol]; // 0100 1
metric[10] = NbOnes[branchCodes[10] ^ symbol]; // 0101 0
metric[11] = NbOnes[branchCodes[11] ^ symbol]; // 0101 1
metric[12] = NbOnes[branchCodes[12] ^ symbol]; // 0110 0
metric[13] = NbOnes[branchCodes[13] ^ symbol]; // 0110 1
metric[14] = NbOnes[branchCodes[14] ^ symbol]; // 0111 0
metric[15] = NbOnes[branchCodes[15] ^ symbol]; // 0111 1
metric[16] = NbOnes[branchCodes[16] ^ symbol]; // 1000 0
metric[17] = NbOnes[branchCodes[17] ^ symbol]; // 1000 1
metric[18] = NbOnes[branchCodes[18] ^ symbol]; // 1001 0
metric[19] = NbOnes[branchCodes[19] ^ symbol]; // 1001 1
metric[20] = NbOnes[branchCodes[20] ^ symbol]; // 1010 0
metric[21] = NbOnes[branchCodes[21] ^ symbol]; // 1010 1
metric[22] = NbOnes[branchCodes[22] ^ symbol]; // 1011 0
metric[23] = NbOnes[branchCodes[23] ^ symbol]; // 1011 1
metric[24] = NbOnes[branchCodes[24] ^ symbol]; // 1100 0
metric[25] = NbOnes[branchCodes[25] ^ symbol]; // 1100 1
metric[26] = NbOnes[branchCodes[26] ^ symbol]; // 1101 0
metric[27] = NbOnes[branchCodes[27] ^ symbol]; // 1101 1
metric[28] = NbOnes[branchCodes[28] ^ symbol]; // 1110 0
metric[29] = NbOnes[branchCodes[29] ^ symbol]; // 1110 1
metric[30] = NbOnes[branchCodes[30] ^ symbol]; // 1111 0
metric[31] = NbOnes[branchCodes[31] ^ symbol]; // 1111 1
// This hardcodes the Treillis structure:
// Pres. state = S0, Prev. state = S0 & S1
m1 = metric[0] + m_pathMetric[0];
m2 = metric[2] + m_pathMetric[1];
if (m1 < m2)
{
m_pathMemory0[n] = 0; // upper path (S0)
tempMetric[0] = m1;
}
else
{
m_pathMemory0[n] = 1; // lower path (S1)
tempMetric[0] = m2;
}; // end else - if
// Pres. state = S1, Prev. state = S2 & S3
m1 = metric[4] + m_pathMetric[2];
m2 = metric[6] + m_pathMetric[3];
if (m1 < m2)
{
m_pathMemory1[n] = 2; // upper path (S2)
tempMetric[1] = m1;
}
else
{
m_pathMemory1[n] = 3; // lower path (S3)
tempMetric[1] = m2;
}; // end else - if
// Pres. state = S2, Prev. state = S4 & S5
m1 = metric[8] + m_pathMetric[4];
m2 = metric[10] + m_pathMetric[5];
if (m1 < m2)
{
m_pathMemory2[n] = 4; // upper path (S4)
tempMetric[2] = m1;
}
else
{
m_pathMemory2[n] = 5; // lower path (S5)
tempMetric[2] = m2;
}
// Pres. state = S3, Prev. state = S6 & S7
m1 = metric[12] + m_pathMetric[6];
m2 = metric[14] + m_pathMetric[7];
if (m1 < m2)
{
m_pathMemory3[n] = 6; // upper path (S6)
tempMetric[3] = m1;
}
else
{
m_pathMemory3[n] = 7; // lower path (S7)
tempMetric[3] = m2;
}; // end else - if
// Pres. state = S4, Prev. state = S8 & S9
m1 = metric[16] + m_pathMetric[8];
m2 = metric[18] + m_pathMetric[9];
if (m1 < m2)
{
m_pathMemory4[n] = 8; // upper path (S8)
tempMetric[4] = m1;
}
else
{
m_pathMemory4[n] = 9; // lower path (S9)
tempMetric[4] = m2;
}; // end else - if
// Pres. state = S5, Prev. state = S10 & S11
m1 = metric[20] + m_pathMetric[10];
m2 = metric[22] + m_pathMetric[11];
if (m1 < m2)
{
m_pathMemory5[n] = 10; // upper path (S10)
tempMetric[5] = m1;
}
else
{
m_pathMemory5[n] = 11; // lower path (S11)
tempMetric[5] = m2;
}; // end else - if
// Pres. state = S6, Prev. state = S12 & S13
m1 = metric[24] + m_pathMetric[12];
m2 = metric[26] + m_pathMetric[13];
if (m1 < m2)
{
m_pathMemory6[n] = 12; // upper path (S12)
tempMetric[6] = m1;
}
else
{
m_pathMemory6[n] = 13; // lower path (S13)
tempMetric[6] = m2;
}; // end else - if
// Pres. state = S7, Prev. state = S14 & S15
m1 = metric[28] + m_pathMetric[14];
m2 = metric[30] + m_pathMetric[15];
if (m1 < m2)
{
m_pathMemory7[n] = 14; // upper path (S14)
tempMetric[7] = m1;
}
else
{
m_pathMemory7[n] = 15; // lower path (S15)
tempMetric[7] = m2;
}; // end else - if
// -- ones --
// Pres. state = S8, Prev. state = S0 & S1
m1 = metric[1] + m_pathMetric[0];
m2 = metric[3] + m_pathMetric[1];
if (m1 < m2)
{
m_pathMemory8[n] = 0; // upper path (S0)
tempMetric[8] = m1;
}
else
{
m_pathMemory8[n] = 1; // lower path (S1)
tempMetric[8] = m2;
}; // end else - if
// Pres. state = S9, Prev. state = S2 & S3
m1 = metric[5] + m_pathMetric[2];
m2 = metric[7] + m_pathMetric[3];
if (m1 < m2)
{
m_pathMemory9[n] = 2; // upper path (S2)
tempMetric[9] = m1;
}
else
{
m_pathMemory9[n] = 3; // lower path (S3)
tempMetric[9] = m2;
}; // end else - if
// Pres. state = S10, Prev. state = S4 & S5
m1 = metric[9] + m_pathMetric[4];
m2 = metric[11] + m_pathMetric[5];
if (m1 < m2)
{
m_pathMemory10[n] = 4; // upper path (S4)
tempMetric[10] = m1;
}
else
{
m_pathMemory10[n] = 5; // lower path (S5)
tempMetric[10] = m2;
}
// Pres. state = S11, Prev. state = S6 & S7
m1 = metric[13] + m_pathMetric[6];
m2 = metric[15] + m_pathMetric[7];
if (m1 < m2)
{
m_pathMemory11[n] = 6; // upper path (S6)
tempMetric[11] = m1;
}
else
{
m_pathMemory11[n] = 7; // lower path (S7)
tempMetric[11] = m2;
}; // end else - if
// Pres. state = S12, Prev. state = S8 & S9
m1 = metric[17] + m_pathMetric[8];
m2 = metric[19] + m_pathMetric[9];
if (m1 < m2)
{
m_pathMemory12[n] = 8; // upper path (S8)
tempMetric[12] = m1;
}
else
{
m_pathMemory12[n] = 9; // lower path (S9)
tempMetric[12] = m2;
}; // end else - if
// Pres. state = S13, Prev. state = S10 & S11
m1 = metric[21] + m_pathMetric[10];
m2 = metric[23] + m_pathMetric[11];
if (m1 < m2)
{
m_pathMemory13[n] = 10; // upper path (S10)
tempMetric[13] = m1;
}
else
{
m_pathMemory13[n] = 11; // lower path (S11)
tempMetric[13] = m2;
}; // end else - if
// Pres. state = S14, Prev. state = S12 & S13
m1 = metric[25] + m_pathMetric[12];
m2 = metric[27] + m_pathMetric[13];
if (m1 < m2)
{
m_pathMemory14[n] = 12; // upper path (S12)
tempMetric[14] = m1;
}
else
{
m_pathMemory14[n] = 13; // lower path (S13)
tempMetric[14] = m2;
}; // end else - if
// Pres. state = S15, Prev. state = S14 & S15
m1 = metric[29] + m_pathMetric[14];
m2 = metric[31] + m_pathMetric[15];
if (m1 < m2)
{
m_pathMemory15[n] = 14; // upper path (S14)
tempMetric[15] = m1;
}
else
{
m_pathMemory15[n] = 15; // lower path (S15)
tempMetric[15] = m2;
}; // end else - if
// Store new path metrics
m_pathMetric[0] = tempMetric[0];
m_pathMetric[1] = tempMetric[1];
m_pathMetric[2] = tempMetric[2];
m_pathMetric[3] = tempMetric[3];
m_pathMetric[4] = tempMetric[4];
m_pathMetric[5] = tempMetric[5];
m_pathMetric[6] = tempMetric[6];
m_pathMetric[7] = tempMetric[7];
m_pathMetric[8] = tempMetric[8];
m_pathMetric[9] = tempMetric[9];
m_pathMetric[10] = tempMetric[10];
m_pathMetric[11] = tempMetric[11];
m_pathMetric[12] = tempMetric[12];
m_pathMetric[13] = tempMetric[13];
m_pathMetric[14] = tempMetric[14];
m_pathMetric[15] = tempMetric[15];
} // end function ViterbiDecode
void Viterbi5::traceBack (
int nbSymbols,
unsigned int startState,
unsigned char *out,
unsigned char *m_pathMemory0,
unsigned char *m_pathMemory1,
unsigned char *m_pathMemory2,
unsigned char *m_pathMemory3,
unsigned char *m_pathMemory4,
unsigned char *m_pathMemory5,
unsigned char *m_pathMemory6,
unsigned char *m_pathMemory7,
unsigned char *m_pathMemory8,
unsigned char *m_pathMemory9,
unsigned char *m_pathMemory10,
unsigned char *m_pathMemory11,
unsigned char *m_pathMemory12,
unsigned char *m_pathMemory13,
unsigned char *m_pathMemory14,
unsigned char *m_pathMemory15
)
{
unsigned int state = startState;
for (int loop = nbSymbols - 1; loop >= 0; loop--)
{
switch (state)
{
case 0: // if state S0
state = m_pathMemory0[loop];
out[loop] = 0;
break;
case 1: // if state S1
state = m_pathMemory1[loop];
out[loop] = 0;
break;
case 2: // if state S2
state = m_pathMemory2[loop];
out[loop] = 0;
break;
case 3: // if state S3
state = m_pathMemory3[loop];
out[loop] = 0;
break;
case 4: // if state S4
state = m_pathMemory4[loop];
out[loop] = 0;
break;
case 5: // if state S5
state = m_pathMemory5[loop];
out[loop] = 0;
break;
case 6: // if state S6
state = m_pathMemory6[loop];
out[loop] = 0;
break;
case 7: // if state S7
state = m_pathMemory7[loop];
out[loop] = 0;
break;
case 8: // if state S8
state = m_pathMemory8[loop];
out[loop] = 1;
break;
case 9: // if state S9
state = m_pathMemory9[loop];
out[loop] = 1;
break;
case 10: // if state S10
state = m_pathMemory10[loop];
out[loop] = 1;
break;
case 11: // if state S11
state = m_pathMemory11[loop];
out[loop] = 1;
break;
case 12: // if state S12
state = m_pathMemory12[loop];
out[loop] = 1;
break;
case 13: // if state S13
state = m_pathMemory13[loop];
out[loop] = 1;
break;
case 14: // if state S14
state = m_pathMemory14[loop];
out[loop] = 1;
break;
case 15: // if state S15
state = m_pathMemory15[loop];
out[loop] = 1;
break;
}; // end switch
}; // end for
}
}
|