summaryrefslogtreecommitdiff
path: root/gr-fec/lib/cc_decoder_impl.h
Commit message (Collapse)AuthorAgeFilesLines
* modernization: `override` instead of virtual in all compilation unitsMarcus Müller2020-11-031-10/+10
|
* fec: Remove manual memory managementThomas Habets2020-09-071-1/+5
| | | | | This removes almost all manual memory management in gr-fec/. `scl_list` is a bit of magic, so requires more thinking.
* fec/cc_decoder: Remove manual memory managementThomas Habets2020-08-141-3/+3
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* clang-format: Ordering all the includesMarcus Müller2019-08-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang-format: ordering includes in gnuradio-runtime clang-format: ordering includes in gr-filter clang-format: ordering includes in gr-fft clang-format: ordering includes in gr-audio clang-format: ordering includes in gr-analog clang-format: ordering includes in gr-fec clang-format: ordering includes in gr-wavelet clang-format: ordering includes in gr-zeromq clang-format: ordering includes in gr-vocoder clang-format: ordering includes in gr-video-sdl clang-format: ordering includes in gr-trellis clang-format: ordering includes in gr-blocks clang-format: ordering includes in gr-digital clang-format: ordering includes in gr-uhd clang-format: ordering includes in gr-dtv clang-format: ordering includes in gr-channels clang-format: ordering includes in gr-qtgui clang_format.py: re-enable include reordering
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-60/+66
|
* Clean-up: Remove unused private variables (Issue #1621, #1622, #1624)andriy gelman2018-04-281-2/+0
|
* fec: Move the definition of yp_kernel from the class into a temp variable in ↵Michael Dickens2015-04-021-1/+0
| | | | the main code. This variable is used just to find the actual Volk kernel, and its current use is not c++11 complaint. Moving it makes the code c++11 complaint on both GCC / libstdc++ and Clang / libc++.
* fec: wip: adding concept of padding for CC encoder/decoder.Tom Rondeau2014-05-171-1/+2
| | | | When using terminated mode, the CC encoder adds K-1 bits to the output, which doesn't fit a full byte and will throw off the book-keeping in PDU or tagged mode. Padding to fill a byte tells both encoder and decoder to handle the extra bits.
* fec: updating puncturing, adding documentation, adding CCSDS encoder.Tom Rondeau2014-05-171-15/+15
|
* fec: improved fecapi stuff.Nick McCarthy2014-05-171-0/+1
| | | | Fixes for frame lengths, (de)interleave usage, generic conv volk kernel.
* adding ber sink to qt guiNicholas McCarthy2014-05-171-1/+1
|
* fec: Merging fecapi with support for CC code.Tom Rondeau2014-05-171-0/+104
Original code taken from next branch of Nick McCarthy's fecapi: https://github.com/namccart/fecapi.git Needs: examples, documentation, other tools.