summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/file_source.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
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-59/+62
|
* blocks: Modify File Source block to work with named pipes and devices.Ron Economos2019-03-311-2/+2
| | | | | The block uses fseek and ftell, which don't apply to named pipes and character/block devices.
* blocks: Fix file_source offset/length to properly access large files.Ron Economos2019-02-141-3/+3
|
* file_source: add optional offset (in items) and len (in items)Jeff Long2018-02-081-11/+20
| | | | | | | - Adds unit tests, and splits existing unit tests into different files: qa_file_source.py - tests file_source_f qa_file_sink.py - tests file_sink_f qa_file_descriptor_source_sink.py - tests file_descriptor_*_f
* set_begin_tag now takes pmt::pmt instead of boolRuben Undheim2017-05-191-1/+1
|
* blocks: file_source ("file_begin" stream tag)Ruben Undheim2017-05-191-0/+5
| | | | | | - Add a configurable "file_begin" stream tag which is especially useful in repeat mode. - Added unit tests for new functionality
* 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/+85