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
|
#include <config.h>
#include <stdio.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <errno.h>
#include <unistd.h>
#if HAVE_DVB_API_VERSION < 3
#include <ost/dmx.h>
#else
#include <linux/dvb/dmx.h>
#endif
#include "crc32.h"
#include <lib/base/eerror.h>
#include <lib/dvb/idvb.h>
#include <lib/dvb/demux.h>
#include <lib/dvb/esection.h>
#include <lib/dvb/decoder.h>
eDVBDemux::eDVBDemux(int adapter, int demux): adapter(adapter), demux(demux)
{
}
eDVBDemux::~eDVBDemux()
{
}
DEFINE_REF(eDVBDemux)
RESULT eDVBDemux::createSectionReader(eMainloop *context, ePtr<iDVBSectionReader> &reader)
{
RESULT res;
reader = new eDVBSectionReader(this, context, res);
if (res)
reader = 0;
return res;
}
RESULT eDVBDemux::getMPEGDecoder(ePtr<iTSMPEGDecoder> &decoder)
{
decoder = new eTSMPEGDecoder(this, 0);
return 0;
}
void eDVBSectionReader::data(int)
{
__u8 data[4096]; // max. section size
int r;
r = ::read(fd, data, 4096);
if(r < 0)
{
eWarning("ERROR reading section - %m\n");
return;
}
if (checkcrc)
{
// this check should never happen unless the driver is crappy!
unsigned int c;
if ((c = crc32((unsigned)-1, data, r)))
eFatal("crc32 failed! is %x\n", c);
}
read(data);
}
eDVBSectionReader::eDVBSectionReader(eDVBDemux *demux, eMainloop *context, RESULT &res): demux(demux)
{
char filename[128];
#if HAVE_DVB_API_VERSION < 3
sprintf(filename, "/dev/dvb/card%d/demux%d", demux->adapter, demux->demux);
#else
sprintf(filename, "/dev/dvb/adapter%d/demux%d", demux->adapter, demux->demux);
#endif
fd = ::open(filename, O_RDWR);
if (fd >= 0)
{
notifier=new eSocketNotifier(context, fd, eSocketNotifier::Read);
CONNECT(notifier->activated, eDVBSectionReader::data);
res = 0;
} else
{
perror(filename);
res = errno;
}
}
DEFINE_REF(eDVBSectionReader)
eDVBSectionReader::~eDVBSectionReader()
{
if (notifier)
delete notifier;
if (fd >= 0)
::close(fd);
}
RESULT eDVBSectionReader::start(const eDVBSectionFilterMask &mask)
{
RESULT res;
if (fd < 0)
return -ENODEV;
#if HAVE_DVB_API_VERSION < 3
dmxSctFilterParams sct;
#else
dmx_sct_filter_params sct;
#endif
sct.pid = mask.pid;
sct.timeout = 0;
#if HAVE_DVB_API_VERSION < 3
sct.flags = 0;
#else
sct.flags = DMX_IMMEDIATE_START;
#endif
if (mask.flags & eDVBSectionFilterMask::rfCRC)
{
sct.flags |= DMX_CHECK_CRC;
checkcrc = 1;
} else
checkcrc = 0;
memcpy(sct.filter.filter, mask.data, DMX_FILTER_SIZE);
memcpy(sct.filter.mask, mask.mask, DMX_FILTER_SIZE);
#if HAVE_DVB_API_VERSION >= 3
memcpy(sct.filter.mode, mask.mode, DMX_FILTER_SIZE);
#endif
res = ::ioctl(fd, DMX_SET_FILTER, &sct);
if (!res)
{
#if HAVE_DVB_API_VERSION < 3
res = ::ioctl(fd, DMX_SET_NEGFILTER_MASK, mask.mode);
if (!res)
{
res = ::ioctl(fd, DMX_START, 0);
if (!res)
active = 1;
}
#else
active = 1;
#endif
}
return res;
}
RESULT eDVBSectionReader::stop()
{
if (!active)
return -1;
::ioctl(fd, DMX_STOP);
return 0;
}
RESULT eDVBSectionReader::connectRead(const Slot1<void,const __u8*> &r, ePtr<eConnection> &conn)
{
conn = new eConnection(this, read.connect(r));
return 0;
}
|