/usr/include/gnuradio/dtv/dvb_config.h is in gnuradio-dev 3.7.9.1-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | /* -*- c++ -*- */
/*
* Copyright 2015 Free Software Foundation, Inc.
*
* This 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.
*
* This software 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 this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_DTV_DVB_CONFIG_H
#define INCLUDED_DTV_DVB_CONFIG_H
namespace gr {
namespace dtv {
enum dvb_standard_t {
STANDARD_DVBS2 = 0,
STANDARD_DVBT2,
};
enum dvb_code_rate_t {
C1_4 = 0,
C1_3,
C2_5,
C1_2,
C3_5,
C2_3,
C3_4,
C4_5,
C5_6,
C7_8,
C8_9,
C9_10,
C13_45,
C9_20,
C90_180,
C96_180,
C11_20,
C100_180,
C104_180,
C26_45,
C18_30,
C28_45,
C23_36,
C116_180,
C20_30,
C124_180,
C25_36,
C128_180,
C13_18,
C132_180,
C22_30,
C135_180,
C140_180,
C7_9,
C154_180,
C11_45,
C4_15,
C14_45,
C7_15,
C8_15,
C32_45,
C_OTHER,
};
enum dvb_framesize_t {
FECFRAME_SHORT = 0,
FECFRAME_NORMAL,
};
enum dvb_constellation_t {
MOD_QPSK = 0,
MOD_16QAM,
MOD_64QAM,
MOD_256QAM,
MOD_8PSK,
MOD_8APSK,
MOD_16APSK,
MOD_8_8APSK,
MOD_32APSK,
MOD_4_12_16APSK,
MOD_4_8_4_16APSK,
MOD_64APSK,
MOD_8_16_20_20APSK,
MOD_4_12_20_28APSK,
MOD_128APSK,
MOD_256APSK,
MOD_OTHER,
};
enum dvb_guardinterval_t {
GI_1_32 = 0,
GI_1_16,
GI_1_8,
GI_1_4,
GI_1_128,
GI_19_128,
GI_19_256,
};
} // namespace dtv
} // namespace gr
typedef gr::dtv::dvb_standard_t dvb_standard_t;
typedef gr::dtv::dvb_code_rate_t dvb_code_rate_t;
typedef gr::dtv::dvb_framesize_t dvb_framesize_t;
typedef gr::dtv::dvb_constellation_t dvb_constellation_t;
typedef gr::dtv::dvb_guardinterval_t dvb_guardinterval_t;
#endif /* INCLUDED_DTV_DVB_CONFIG_H */
|