mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2015 Software Radio Systems Limited
|
|
*
|
|
* \section LICENSE
|
|
*
|
|
* This file is part of the srsLTE library.
|
|
*
|
|
* srsLTE is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsLTE 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 Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero General Public License can be found in
|
|
* the LICENSE file in the top-level directory of this distribution
|
|
* and at http://www.gnu.org/licenses/.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <math.h>
|
|
|
|
#include "srslte/fec/convcoder.h"
|
|
#include "parity.h"
|
|
|
|
int srslte_convcoder_encode(srslte_convcoder_t *q, uint8_t *input, uint8_t *output, uint32_t frame_length) {
|
|
uint32_t sr;
|
|
uint32_t i,j;
|
|
|
|
if (q != NULL &&
|
|
input != NULL &&
|
|
output != NULL &&
|
|
frame_length > q->K + 1)
|
|
{
|
|
uint32_t len = q->tail_biting ? frame_length : (frame_length + q->K - 1);
|
|
if (q->tail_biting) {
|
|
sr = 0;
|
|
for (i=frame_length - q->K + 1; i<frame_length; i++) {
|
|
sr = (sr << 1) | (input[i] & 1);
|
|
}
|
|
} else {
|
|
sr = 0;
|
|
}
|
|
for (i = 0; i < len; i++) {
|
|
uint8_t bit = (i < frame_length) ? (input[i] & 1) : 0;
|
|
sr = (sr << 1) | bit;
|
|
for (j=0;j<q->R;j++) {
|
|
output[q->R * i + j] = parity(sr & q->poly[j]);
|
|
}
|
|
}
|
|
return q->R*len;
|
|
} else {
|
|
return SRSLTE_ERROR_INVALID_INPUTS;
|
|
}
|
|
}
|
|
|