summaryrefslogtreecommitdiff
path: root/gr-fec/lib/async_encoder_impl.h
Commit message (Collapse)AuthorAgeFilesLines
* modernization: `override` instead of virtual in all compilation unitsMarcus Müller2020-11-031-1/+1
|
* Add `override` for common virtual function overridesThomas Habets2020-11-031-1/+1
| | | | | | | | | | Mostly done with: ``` find -name "*_impl.h" | xargs sed -i -r '/(void forecast|int work|int general_work|bool check_topology)\(/{:back /\)/b nxt;N;b back;:nxt s/\)$|\)(;)/) override\1/g}' ``` Then I removed an incorrect `work` that this found.
* fec/async_encoder: Remove manual memory managementThomas Habets2020-08-141-4/+5
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* 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-29/+30
|
* Clean-up: Remove unused private variables (Issue #1621, #1622, #1624)andriy gelman2018-04-281-2/+0
|
* fec: Adds MTU parameter to async and tagged stream blocks.Tom Rondeau2015-09-241-1/+3
| | | | | | | | | | The maximum transmission unit (MTU, in bytes) sets up the encoders and decoders with enough internal buffer space to accommodate frames of varying sizes up to the MTU. Proections placed to make sure incoming tagged streams and PDUs don't exceed this. This also fixes a bug in the tagged stream encoder and decoder blocks to properly use calculate_output_stream_length.
* fec: wip: fixing up allocated memory; allowing async encoder deployment to ↵Tom Rondeau2014-05-201-0/+3
| | | | be used with CCSDS (packed input requirement).
* fec: wip: async encoder/decoder working deployments.Tom Rondeau2014-05-191-1/+6
| | | | Decoder uses API signatures to do shifting, data conversions. New examples showing use.
* blocks: adding reverse packing/unpacking functions.Tom Rondeau2014-05-171-1/+4
|
* fec: wip: using unpack/pack k bits kernels instead of copying logic in here.Tom Rondeau2014-05-171-0/+4
| | | | Need to remove volk_malloc from encode.
* fec: wip: fixing formatting.Tom Rondeau2014-05-171-53/+56
|
* fec: wip: adding async (PDU) encoder and decoder blocks.Tom Rondeau2014-05-171-0/+53