summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/mute.h
blob: 95518f887b340ff25f4e4d0d87869a25d0d93f88 (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
/* -*- c++ -*- */
/*
 * Copyright 2004,2013,2018 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */


#ifndef MUTE_H
#define MUTE_H

#include <gnuradio/blocks/api.h>
#include <gnuradio/sync_block.h>
#include <cstdint>

namespace gr {
namespace blocks {

/*!
 * \brief output = input or zero if muted.
 * \ingroup level_controllers_blk
 */
template <class T>
class BLOCKS_API mute_blk : virtual public sync_block
{
public:
    typedef std::shared_ptr<mute_blk<T>> sptr;

    static sptr make(bool mute = false);

    virtual bool mute() const = 0;
    virtual void set_mute(bool mute = false) = 0;
};

typedef mute_blk<std::int16_t> mute_ss;
typedef mute_blk<std::int32_t> mute_ii;
typedef mute_blk<float> mute_ff;
typedef mute_blk<gr_complex> mute_cc;
} /* namespace blocks */
} /* namespace gr */

#endif /* MUTE_H */