GNU Radio's SATELLITES Package
nrzi_decode_impl.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2020 Daniel Estevez <daniel@destevez.net>
4 *
5 * This file is part of gr-satellites
6 *
7 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11#ifndef INCLUDED_SATELLITES_NRZI_DECODE_IMPL_H
12#define INCLUDED_SATELLITES_NRZI_DECODE_IMPL_H
13
15
16namespace gr {
17namespace satellites {
18
20{
21public:
24
25 // Where all the action really happens
26 int work(int noutput_items,
27 gr_vector_const_void_star& input_items,
28 gr_vector_void_star& output_items);
29};
30
31} // namespace satellites
32} // namespace gr
33
34#endif /* INCLUDED_SATELLITES_NRZI_DECODE_IMPL_H */
Definition nrzi_decode_impl.h:20
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
NRZI decode.
Definition nrzi_decode.h:26
Definition ax100_decode.h:17