summaryrefslogtreecommitdiff
path: root/gr-fec/lib/cc_encoder_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-1/+0
| | | | 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>
* gr-fec: fix compiler warningClayton Smith2020-02-101-1/+1
|
* fixup! gr-fec/cc_encoder: Fix and improve documentationMartin Braun2020-02-021-3/+6
| | | | This fixes the formatting in cc_encoder_impl.cc.
* gr-fec/cc_encoder: Add checks for parametersrear10192020-02-011-0/+20
|
* gr-fec/cc_encoder: Fix constraint length K > 8rear10192020-02-011-1/+1
| | | | | | | | The convolutional encoder produces wrong output for codes with a constraint length larger than 8. Fix this by using a variable of appropriate size. Fixes #2344.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* clang-format: Ordering all the includesMarcus Müller2019-08-091-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-148/+139
|
* Support negative polynomials in cc_encoderDaniel Estévez2017-08-021-2/+2
| | | | | | Negative polynomials are already supported in cc_decoder. Inverting the sign of the polynomial in a convolutional code is just a convention to invert the output bit corresponding to that polynomial.
* fec: wip: async encoder/decoder working deployments.Tom Rondeau2014-05-191-1/+1
| | | | Decoder uses API signatures to do shifting, data conversions. New examples showing use.
* fec: wip: adding concept of padding for CC encoder/decoder.Tom Rondeau2014-05-171-5/+11
| | | | 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-60/+56
|
* fec: encoder now outputs bytes to make it more easily integratable with ↵Tom Rondeau2014-05-171-7/+7
| | | | modulators.
* fec: Merging fecapi with support for CC code.Tom Rondeau2014-05-171-0/+202
Original code taken from next branch of Nick McCarthy's fecapi: https://github.com/namccart/fecapi.git Needs: examples, documentation, other tools.