summaryrefslogtreecommitdiff
path: root/gr-digital/lib/interpolating_resampler.cc
Commit message (Collapse)AuthorAgeFilesLines
* C++14: Use std::make_unique instead of boost::make_uniqueMarcus Müller2021-01-041-9/+9
| | | | | | Also, clean up includes Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* fir_filter: in constructor, 'decimation' is unusedJeff Long2020-11-301-8/+8
|
* digital/symbol_sync: Remove manual memory managementThomas Habets2020-08-141-26/+14
| | | | | | | | | | | | | The `cc` version already used more smart pointers, but `d_clock` didn't need to be a pointer at all. I consted function args to make it clear in the initializer that they will not be changed in the constructor body. Return value for `make` for the TED and interpolator was changed to a `unique_ptr` to make it clear that ownership is transferred. And it makes it all but impossible to accidentally memory leak. (core guidelines F.26. Also relevant I.11,R.20).
* digital/interpolating_resampler: Remove manual memory managementThomas Habets2020-08-141-105/+45
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-digital: no need in new operator NULL checksValerii Zapodovnikov2020-01-241-31/+0
| | | There is no sense in testing these pointers against null, as the memory was allocated using the 'new' operator. The exception will be generated in the case of memory allocation error.
* 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-651/+580
|
* digital: replace 'and', 'or', 'not' with &&, ||, ! respectivelyPiotr Krysik2018-02-031-16/+16
| | | | MSVC seems to be unable to deal with these.
* gr-digital: fixed casting failure compile error with gcc 4.6Johnathan Corgan2017-07-181-20/+8
|
* gr-filter, digital: Add symbol_sync_{cc|ff} and auxiliary classesAndy Walls2017-07-171-0/+794