summaryrefslogtreecommitdiff
path: root/gr-fft/include/gnuradio/fft/fft_vcc.h
Commit message (Collapse)AuthorAgeFilesLines
* Move FFT functions and blocks to templates (#3903)mormj2020-11-031-75/+0
| | | | | | | | | | | | | * fft: refactor fft classes as templates In order to reduce code duplication construct fft objects and blocks with template paramters. Separate forward and reverse as a template parameter Maintain the real fft block forward as r2c and reverse as r2c as well Co-authored-by: Andrej Rode <mail@andrejro.de>
* 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
|
* Fix for more misc typosluz.paz2019-08-101-1/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-48/+49
|
* fft: Fix Doxygen warnings (undocumented parameters)Martin Braun2018-12-121-1/+1
|
* Improved documentation for FFT block.Maximilian Stiefel2018-04-281-2/+31
| | | | Fixes #1694
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-1/+1
| | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
* fft: moved include dir to gnuradio/fftJohnathan Corgan2013-04-291-0/+57