summaryrefslogtreecommitdiff
path: root/gr-fec/lib/decoder_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* clang-tidy: run full .clang-tidy on C++17 codebaseMarcus Müller2021-01-191-1/+1
| | | | | | | | | | | | | | | | | | | | 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>
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-2/+2
| | | | | | | | | | | | | | First batch of changes: ``` find […] -print0 | xargs -0 sed -i -r '/get_initial_sptr/{:nxt N;/;/!b nxt;s/get_initial_sptr\(\s*new ([^(]+)(.*)\)\)/make_block_sptr<\1>\2)/}' ``` Then: * Back out `sptr_magic.h` edits * Change some `friend` clauses * clang-format the whole thing * Update checksums in the pybind11 bindings files
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Fix all formatting issuesMartin Braun2020-01-101-2/+2
| | | | | This fixes every leftover file in the GNU Radio source tree to match our clang-format definition.
* change rounding method to `lround`Mathias Rasmussen2019-11-171-7/+7
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-79/+82
|
* Convert set_relative_rate(double) to the new integer or receiprocal callAndy Walls2018-08-231-1/+2
| | | | | | | | This is a mass conversion of existing set_relative_rate(double) calls to either the set_relative_rate(uint64_t, uint64_t) or set_inverse_relative_rate(double) calls, where ever easily possible and appropriate, to improve tag propagation precision for fixed relative rates.
* Merge branch 'maint'Tom Rondeau2014-12-291-6/+0
|\ | | | | | | | | | | Conflicts: gr-fec/lib/decoder_impl.cc gr-fec/lib/encoder_impl.cc
| * fec: cleanupTom Rondeau2014-12-291-1/+3
| |
* | fec: turning off some debug output.Tom Rondeau2014-09-241-4/+4
|/
* fec: wip: mods for ber plotting. Now adding theoretical BPSK in AWGN curve.Tom Rondeau2014-05-171-7/+1
|
* fec: updating puncturing, adding documentation, adding CCSDS encoder.Tom Rondeau2014-05-171-18/+23
|
* fec: Merging fecapi with support for CC code.Tom Rondeau2014-05-171-0/+121
Original code taken from next branch of Nick McCarthy's fecapi: https://github.com/namccart/fecapi.git Needs: examples, documentation, other tools.