summaryrefslogtreecommitdiff
path: root/gr-dtv/lib/dvbt/dvbt_inner_coder_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>
* dtv: Remove manual memory managementThomas Habets2020-10-231-32/+8
| | | | All removed except some tricky stuff in dvb_ldpc_bb_impl.
* 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
|
* 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-213/+221
|
* dtv: Remove superfluous set_relative_rate() in DVB-T inner coder.Ron Economos2019-07-051-6/+1
| | | | Also remove assert that was failing for 7/8 rate on debug builds.
* Merge remote-tracking branch 'origin/next' into merge_nextMarcus Müller2018-08-311-2/+1
|\
| * Clean-up: Remove unused private variables (Issue #1621, #1622, #1624)andriy gelman2018-04-281-2/+1
| |
* | 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.
* Comment typo fixing.luz.paz2018-02-031-1/+1
| | | | Luzpaz went ahead and found typos using `codespell -q 3`.
* gr-dtv: Remove all exit(1) calls and replace with exception.Ron Economos2016-08-191-8/+7
|
* gr-dtv: Reduce DVB-T transmitter CPU usage.Ron Economos2016-08-191-10/+25
|
* Fix assertions in DVBT blocks.Clayton Smith2016-05-011-3/+2
|
* gr-dtv: Add DVB-T transmitter.Bogdan Diaconescu2015-05-141-0/+257