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
|
/*
* streamdevice.c: streaming network device
*
* See the README file for copyright information and how to reach the author.
*
*/
#include "streamdevice.h"
#include "osdworker.h"
#include "tsworker.h"
#include "netosd.h"
cStreamDevice::cStreamDevice(void)
{
#ifdef DEBUG
fprintf(stderr,"[ffnetdev] Device: Constructor cStreamDevice \n");
#endif
m_Remux = new cPES2TSRemux(TS_VPID, TS_APID);
}
cStreamDevice::~cStreamDevice(void)
{
#ifdef DEBUG
fprintf(stderr,"[ffnetdev] Device: Destructor cStreamDevice \n");
#endif
DELETENULL(m_Remux);
}
void cStreamDevice::MakePrimaryDevice(bool On)
{
#ifdef DEBUG
fprintf(stderr,"[ffnetdev] Device: ffnetdev becomes primary device. Registering our OSD provider...\n");
#endif
new cNetOSDProvider();
}
int cStreamDevice::ProvidesCa(const cChannel *Channel) const
{
return 0;
}
bool cStreamDevice::HasDecoder(void) const
{
return true; // We can decode MPEG2
}
bool cStreamDevice::CanReplay(void) const
{
return true; // We can replay
}
bool cStreamDevice::SetPlayMode(ePlayMode PlayMode)
{
fprintf(stderr, "[ffnetdev] Device: Setting playmode(not implemented). Mode: %d\n",PlayMode);
cOSDWorker::SendPlayMode(PlayMode);
m_Remux->ClearInput();
m_Remux->ClearOutput();
m_Remux->PlayModeChange();
return true;
}
void cStreamDevice::TrickSpeed(int Speed)
{
fprintf(stderr,"[ffnetdev] Device: Trickspeed(not implemented). Speed: %d\n", Speed);
m_Remux->ClearInput();
m_Remux->ClearOutput();
m_Remux->PlayModeChange();
}
void cStreamDevice::Clear(void)
{
fprintf(stderr,"[ffnetdev] Device: Clear(not implemented).\n");
m_Remux->ClearInput();
m_Remux->ClearOutput();
m_Remux->PlayModeChange();
// cDevice::Clear();
}
void cStreamDevice::Play(void)
{
fprintf(stderr,"[ffnetdev] Device: Play(not implemented).\n");
// cDevice::Play();
}
void cStreamDevice::Freeze(void)
{
fprintf(stderr,"[ffnetdev] Device: Freeze(not implemented).\n");
// cDevice::Freeze();
}
void cStreamDevice::Mute(void)
{
fprintf(stderr,"[ffnetdev] Device: Mute(not implemented).\n");
// cDevice::Mute();
}
void cStreamDevice::SetVolumeDevice(int Volume)
{
fprintf (stderr, "[ffnetdev] Device: Setting volume to %d (not implemented).\n", Volume);
}
void cStreamDevice::StillPicture(const uchar *Data, int Length)
{
fprintf(stderr,"[ffnetdev] Device: StillPicture(not implemented).\n");
}
bool cStreamDevice::Poll(cPoller &Poller, int TimeoutMs)
{
//fprintf(stderr,"[ffnetdev] Device: Poll TimeoutMs: %d ....\n",TimeoutMs);
return true;
}
/* ----------------------------------------------------------------------------
*/
int cStreamDevice::PlayAudio(const uchar *Data, int Length, uchar Id)
{
if (cTSWorker::HaveStreamClient())
{
while ((m_Remux->Free() < Length) && cTSWorker::HaveStreamClient())
cCondWait::SleepMs(1);
int result=m_Remux->Put(Data, Length);
if (result!=Length) {
fprintf(stderr,"[ffnetdev] Device: Did not put all in input buffer(audio). result:%d Length: %d Skipping Audio PES packet...\n", result, Length );
// Delete part of data already written to buffer
m_Remux->DelInput(result);
return (0);
}
else
{
return ( Length );
}
}
else
{
m_Remux->ClearInput();
// usleep(10000);
return ( Length );
}
}
/* ----------------------------------------------------------------------------
*/
int cStreamDevice::PlayVideo(const uchar *Data, int Length)
{
if (cTSWorker::HaveStreamClient())
{
while ((m_Remux->Free() < Length) && cTSWorker::HaveStreamClient())
cCondWait::SleepMs(1);
int result=m_Remux->Put(Data, Length);
if (result!=Length) {
fprintf(stderr,"[ffnetdev] Device: Did not put all in input buffer(video). result:%d Length: %d Skipping Video PES packet...\n", result, Length );
// Delete part of data already written to buffer
m_Remux->DelInput(result);
return (0);
}
else
{
return ( Length );
}
}
else
{
m_Remux->ClearInput();
// usleep(10000);
return ( Length );
}
}
|