blob: ce15d99a3fd07b76e5117299f9cfbe287a4eec87 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 2014,2015,2016 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
########################################################################
# Install header files
########################################################################
install(FILES
api.h
atsc_consts.h
atsc_deinterleaver.h
atsc_depad.h
atsc_derandomizer.h
atsc_equalizer.h
atsc_fpll.h
atsc_fs_checker.h
atsc_rs_decoder.h
atsc_sync.h
atsc_viterbi_decoder.h
atsc_pad.h
atsc_randomizer.h
atsc_rs_encoder.h
atsc_interleaver.h
atsc_trellis_encoder.h
atsc_field_sync_mux.h
dvb_config.h
dvbt_config.h
dvbs2_config.h
dvbt2_config.h
dvb_bbheader_bb.h
dvb_bbscrambler_bb.h
dvb_bch_bb.h
dvb_ldpc_bb.h
dvbt2_interleaver_bb.h
dvbt2_modulator_bc.h
dvbt2_cellinterleaver_cc.h
dvbt2_framemapper_cc.h
dvbt2_freqinterleaver_cc.h
dvbt2_pilotgenerator_cc.h
dvbt2_paprtr_cc.h
dvbt2_p1insertion_cc.h
dvbt2_miso_cc.h
dvbs2_interleaver_bb.h
dvbs2_modulator_bc.h
dvbs2_physical_cc.h
dvbt_energy_dispersal.h
dvbt_reed_solomon_enc.h
dvbt_convolutional_interleaver.h
dvbt_inner_coder.h
dvbt_bit_inner_interleaver.h
dvbt_symbol_inner_interleaver.h
dvbt_map.h
dvbt_reference_signals.h
dvbt_ofdm_sym_acquisition.h
dvbt_demod_reference_signals.h
dvbt_demap.h
dvbt_bit_inner_deinterleaver.h
dvbt_viterbi_decoder.h
dvbt_convolutional_deinterleaver.h
dvbt_reed_solomon_dec.h
dvbt_energy_descramble.h
catv_transport_framing_enc_bb.h
catv_reed_solomon_enc_bb.h
catv_randomizer_bb.h
catv_frame_sync_enc_bb.h
catv_trellis_enc_bb.h
DESTINATION ${GR_INCLUDE_DIR}/gnuradio/dtv
)
|