forked from oe-alliance/satip-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vtuner.h
187 lines (169 loc) · 4.43 KB
/
vtuner.h
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
* satip: vtuner to satip mapping
*
* Copyright (C) 2014 [email protected]
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program 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 program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __VTUNER_H__
#define __VTUNER_H__
#include "config.h"
#include "rtp.h"
#define VTUNER_PIDLIST_LEN 30 // from usbtunerhelper
#include <linux/ioctl.h>
#include <linux/dvb/version.h>
#include <linux/dvb/frontend.h>
#include <linux/dvb/dmx.h>
#define MSG_SET_FRONTEND 1
#define MSG_GET_FRONTEND 2
#define MSG_READ_STATUS 3
#define MSG_READ_BER 4
#define MSG_READ_SIGNAL_STRENGTH 5
#define MSG_READ_SNR 6
#define MSG_READ_UCBLOCKS 7
#define MSG_SET_TONE 8
#define MSG_SET_VOLTAGE 9
#define MSG_ENABLE_HIGH_VOLTAGE 10
#define MSG_SEND_DISEQC_MSG 11
#define MSG_SEND_DISEQC_BURST 13
#define MSG_PIDLIST 14
#define MSG_TYPE_CHANGED 15
#define MSG_SET_PROPERTY 16
#define MSG_GET_PROPERTY 17
#define MSG_NULL 1024
#define MSG_DISCOVER 1025
#define MSG_UPDATE 1026
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
#if VMSG_TYPE1
struct vtuner_message {
__u32 type;
union
{
struct dvb_frontend_parameters fe_params;
#if DVB_API_VERSION >= 5
struct dtv_property prop;
#endif
u32 status;
__u32 ber;
__u16 ss;
__u16 snr;
__u32 ucb;
fe_sec_tone_mode_t tone;
fe_sec_voltage_t voltage;
struct dvb_diseqc_master_cmd diseqc_master_cmd;
fe_sec_mini_cmd_t burst;
__u16 pidlist[VTUNER_PIDLIST_LEN];
unsigned char pad[72];
__u32 type_changed;
} body;
};
#else
struct vtuner_message
{
__s32 type;
union
{
struct
{
__u32 frequency;
__u8 inversion;
union
{
struct
{
__u32 symbol_rate;
__u32 fec_inner;
} qpsk;
struct
{
__u32 symbol_rate;
__u32 fec_inner;
__u32 modulation;
} qam;
struct
{
__u32 bandwidth;
__u32 code_rate_HP;
__u32 code_rate_LP;
__u32 constellation;
__u32 transmission_mode;
__u32 guard_interval;
__u32 hierarchy_information;
} ofdm;
struct
{
__u32 modulation;
} vsb;
} u;
} fe_params;
struct dtv_property prop;
u32 status;
__u32 ber;
__u16 ss;
__u16 snr;
__u32 ucb;
__u8 tone;
__u8 voltage;
struct dvb_diseqc_master_cmd diseqc_master_cmd;
__u8 burst;
__u16 pidlist[30];
__u8 pad[72];
__u32 type_changed;
} body;
};
#endif
#if _IOC_NONE == 0
#define VTUNER_GET_MESSAGE 11
#define VTUNER_SET_RESPONSE 12
#define VTUNER_SET_NAME 13
#define VTUNER_SET_TYPE 14
#define VTUNER_SET_HAS_OUTPUTS 15
#define VTUNER_SET_FE_INFO 16
#define VTUNER_SET_DELSYS 17
#else
#define VTUNER_GET_MESSAGE 1
#define VTUNER_SET_RESPONSE 2
#define VTUNER_SET_NAME 3
#define VTUNER_SET_TYPE 4
#define VTUNER_SET_HAS_OUTPUTS 5
#define VTUNER_SET_FE_INFO 6
#define VTUNER_SET_DELSYS 7
#endif
class satipVtuner
{
int m_fd;
bool m_openok;
#if VMSG_TYPE1
fe_sec_tone_mode_t m_tone;
#else
__u8 m_tone;
#endif
satipConfig* m_satip_cfg;
satipRTP* m_satip_rtp;
int AllocateVtuner();
int openVtuner();
void setProperty(struct vtuner_message* msg);
void setDiseqc(struct vtuner_message* msg);
void setPidList(struct vtuner_message* msg);
public:
satipVtuner(satipConfig* satip_cfg);
virtual ~satipVtuner();
int getVtunerFd() { return m_fd; }
void vtunerEvent();
void setSatipRTP(satipRTP* satip_rtp) { m_satip_rtp = satip_rtp; }
bool isOpened() { return m_openok; }
};
#endif // __VTUNER_H__