aboutsummaryrefslogtreecommitdiffstats
path: root/gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.h
blob: 5f7107be106cf9d975eec9bee1f42fe751caa3eb (plain) (blame)
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
/* -*- c++ -*- */
/*
 * Copyright 2015 Free Software Foundation, Inc.
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef INCLUDED_DTV_DVBT2_MODULATOR_BC_IMPL_H
#define INCLUDED_DTV_DVBT2_MODULATOR_BC_IMPL_H

#include "../dvb/dvb_defines.h"

#include <gnuradio/dtv/dvbt2_modulator_bc.h>

namespace gr {
namespace dtv {

class dvbt2_modulator_bc_impl : public dvbt2_modulator_bc
{
private:
    int signal_constellation;
    int cyclic_delay;
    int cell_size;
    gr_complex m_qpsk[4];
    gr_complex m_16qam[16];
    gr_complex m_64qam[64];
    gr_complex m_256qam[256];

public:
    dvbt2_modulator_bc_impl(dvb_framesize_t framesize,
                            dvb_constellation_t constellation,
                            dvbt2_rotation_t rotation);
    ~dvbt2_modulator_bc_impl();

    void forecast(int noutput_items, gr_vector_int& ninput_items_required);

    int general_work(int noutput_items,
                     gr_vector_int& ninput_items,
                     gr_vector_const_void_star& input_items,
                     gr_vector_void_star& output_items);
};

} // namespace dtv
} // namespace gr

#endif /* INCLUDED_DTV_DVBT2_MODULATOR_BC_IMPL_H */