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.
29 lines
615 B
C
29 lines
615 B
C
4 years ago
|
/**
|
||
4 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
4 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
4 years ago
|
*
|
||
4 years ago
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
4 years ago
|
*
|
||
|
*/
|
||
|
|
||
|
/*!
|
||
|
* \file ldpc_common.h
|
||
|
* \brief Declaration of elements common to both the LDPC encoder and the LDPC decoder.
|
||
4 years ago
|
* \author David Gregoratti
|
||
4 years ago
|
* \date 2020
|
||
|
*
|
||
|
* \copyright Software Radio Systems Limited
|
||
|
*
|
||
|
*/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_LDPCCOMMON_H
|
||
|
#define SRSRAN_LDPCCOMMON_H
|
||
4 years ago
|
|
||
|
#define FILLER_BIT 254 /*!< \brief Identifies a filler bit. */
|
||
|
|
||
4 years ago
|
#endif // SRSRAN_LDPCCOMMON_H
|