/** * * \section COPYRIGHT * * Copyright 2013-2014 The libLTE Developers. See the * COPYRIGHT file at the top-level directory of this distribution. * * \section LICENSE * * This file is part of the libLTE library. * * libLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * libLTE 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 Lesser General Public License for more details. * * A copy of the GNU Lesser 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 #include #include #include #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; uint32_t len = q->tail_biting ? frame_length : (frame_length + q->K - 1); if (q != NULL && input != NULL && output != NULL && frame_length > q->K + 1) { if (q->tail_biting) { sr = 0; for (i=frame_length - q->K + 1; iR;j++) { output[q->R * i + j] = parity(sr & q->poly[j]); } } return q->R*len; } else { return SRSLTE_ERROR_INVALID_INPUTS; } } int srslte_convcoder_initialize(srslte_convcoder_hl* h) { return 0; } int srslte_convcoder_work(srslte_convcoder_hl* hl) { hl->obj.K = hl->ctrl_in.constraint_length; hl->obj.R = hl->ctrl_in.rate; hl->obj.poly[0] = hl->ctrl_in.generator_0; hl->obj.poly[1] = hl->ctrl_in.generator_1; hl->obj.poly[2] = hl->ctrl_in.generator_2; hl->obj.tail_biting = hl->ctrl_in.tail_bitting?true:false; hl->out_len = srslte_convcoder_encode(&hl->obj, hl->input, hl->output, hl->in_len); return 0; } int srslte_convcoder_stop(srslte_convcoder_hl* h) { return 0; }