summaryrefslogtreecommitdiff
path: root/gr-fec/lib/cc_decoder_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* modules: include boost/format where usedMarcus Müller2021-09-071-0/+1
| | | | | | | | | | | | | | | | | | | in the classic modules: audio blocks digital dtv fec fft filter qtgui trellis/fsm uhd video-sdl vocoder/freedv_rx Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* global: remove boost/assign/list_of, obsoleted by C++11Marcus Müller2021-06-221-3/+2
| | | | Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* clang-tidy: run full .clang-tidy on C++17 codebaseMarcus Müller2021-01-191-2/+2
| | | | | | | | | | | | | | | | | | | | run /usr/share/clang/run-clang-tidy.py -checks=file '-header-filter=.*' -fix .. from build directory. Then, clang-format -i $(git diff --name-only origin/master) to clang-format changed files. Then, refresh all header hashes in pybind bindings (*/python/bindings/*.cc) Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* fec: Remove manual memory managementThomas Habets2020-09-071-32/+10
| | | | | 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-42/+28
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Remove newlines from exception messagesThomas Habets2020-01-011-5/+5
|
* clang-format: Ordering all the includesMarcus Müller2019-08-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-453/+435
|
* Clean-up: Remove unused private variables (Issue #1621, #1622, #1624)andriy gelman2018-04-281-1/+0
|
* Throw an exception if the given K and R are not supported.Clayton Smith2016-10-131-0/+3
|
* fec: Move the definition of yp_kernel from the class into a temp variable in ↵Michael Dickens2015-04-021-1/+1
| | | | 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++.
* gr-fec: cc_decoder: fix leak; coverity 1215943Marcus Müller2014-06-261-0/+2
|
* fec: fixing a bit of sloppy memory handling in the cc decoder.Tom Rondeau2014-05-211-5/+9
|
* fec: wip: adding concept of padding for CC encoder/decoder.Tom Rondeau2014-05-171-10/+19
| | | | 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.
* blocks: adding reverse packing/unpacking functions.Tom Rondeau2014-05-171-1/+6
|
* fec: updating puncturing, adding documentation, adding CCSDS encoder.Tom Rondeau2014-05-171-118/+131
|
* fec: improved fecapi stuff.Nick McCarthy2014-05-171-73/+36
| | | | Fixes for frame lengths, (de)interleave usage, generic conv volk kernel.
* adding ber sink to qt guiNicholas McCarthy2014-05-171-4/+6
|
* fec: Merging fecapi with support for CC code.Tom Rondeau2014-05-171-0/+505
Original code taken from next branch of Nick McCarthy's fecapi: https://github.com/namccart/fecapi.git Needs: examples, documentation, other tools.