blob: c50a53cda0bff6eb51683a51cfed863450aec137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* -*- c++ -*- */
/*
* Copyright 2004,2010,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "null_source_impl.h"
#include <gnuradio/io_signature.h>
#include <string.h>
namespace gr {
namespace blocks {
null_source::sptr null_source::make(size_t sizeof_stream_item)
{
return gnuradio::get_initial_sptr(new null_source_impl(sizeof_stream_item));
}
null_source_impl::null_source_impl(size_t sizeof_stream_item)
: sync_block("null_source",
io_signature::make(0, 0, 0),
io_signature::make(1, -1, sizeof_stream_item))
{
}
null_source_impl::~null_source_impl() {}
int null_source_impl::work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items)
{
void* optr;
for (size_t n = 0; n < input_items.size(); n++) {
optr = (void*)output_items[n];
memset(optr, 0, noutput_items * output_signature()->sizeof_stream_item(n));
}
return noutput_items;
}
} /* namespace blocks */
} /* namespace gr */
|