summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/deinterleave.h
Commit message (Collapse)AuthorAgeFilesLines
* Switch from boost pointers to std C++11 pointersThomas Habets2020-04-011-1/+1
| | | | | | | | | | | | | | | | | | | Most of this code is automated code changes: ``` set -e SUB="s/dummy/dummy/" for i in shared_ptr make_shared dynamic_pointer_cast weak_ptr enable_shared_from_this get_deleter; do SUB="$SUB;s/boost::$i/std::$i/g" done SUB="$SUB;s^#include <boost/shared_ptr.hpp>^#include <memory>^g" SUB="$SUB;s^namespace boost^namespace std^g" find . \( -name "*.cc" -o -name "*.h" -o -name "*.i" -o -name "*.cxx" -o -name "*.py" \) -print0 | xargs -0 sed -i "$SUB" ``` Only one manual change. In `./gr-fec/lib/fec_mtrx_impl.cc`, add `#include <algorithm>`.
* 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-40/+40
|
* Revert "blocks: add optional argument to deinterleave and interleave ctors ↵Tom Rondeau2014-05-171-5/+1
| | | | | | | | to not set relative rate." This reverts commit 0c589a7d8f18c9b6f7daf06ecfe2a90e84a004d2. Not necessary.
* blocks: add optional argument to deinterleave and interleave ctors to not ↵Tom Rondeau2014-05-171-1/+5
| | | | | | set relative rate. Whe using blocks of data, this doesn't always make sense (see the threading of the extended encoder and decoder in gr-fec).
* fec: changed puncture block for easier to use API.Tom Rondeau2014-05-171-2/+26
| | | | Added documentation; added QA code.
* block interleave/deinterleave with statefull deinterleaveNicholas McCarthy2014-05-171-3/+3
|
* blocks: fix borked global search and replaceJohnathan Corgan2013-06-091-1/+1
|
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-0/+53