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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
/*
* dxr3.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id: dxr3.c,v 1.11 2005/08/25 18:38:58 scop Exp $
*
*/
#include "dxr3vdrincludes.h"
#include "dxr3device.h"
#include "dxr3syncbuffer.h"
#include "dxr3configdata.h"
#include "dxr3interface.h"
#include "dxr3.h"
#include "dxr3i18n.h"
static const char *VERSION = "0.3.0-cvs";
static const char *DESCRIPTION = "Hardware MPEG decoder";
static const char *MAINMENUENTRY = "DXR3";
#if VDRVERSNUM && VDRVERSNUM < 10311
#error "This version of the DXR3 plugin needs VDR version >= 1.3.11"
#endif
#define DXR3_MAX_CARDS 4
// ==================================
// 'message-handler' for the main screen
eOSState cDxr3OsdItem::ProcessKey(eKeys Key)
{
if (Key == kOk)
{
switch (m_item)
{
case DXR3_RESET_HARDWARE:
cDxr3Interface::Instance().ResetHardware();
if (cDxr3Device::InstanceP())
cDxr3Device::InstanceP()->Reset();
break;
case DXR3_FORCE_LETTER_BOX:
cDxr3ConfigData::Instance().SetForceLetterBox(!cDxr3ConfigData::Instance().GetForceLetterBox());
break;
case DXR3_ANALOG_OUT:
cDxr3ConfigData::Instance().SetUseDigitalOut(0);
cDxr3ConfigData::Instance().SetAc3OutPut(0);
if (cDxr3Device::InstanceP())
cDxr3Device::InstanceP()->Reset();
break;
case DXR3_DIGITAL_OUT:
cDxr3ConfigData::Instance().SetUseDigitalOut(1);
cDxr3ConfigData::Instance().SetAc3OutPut(0);
if (cDxr3Device::InstanceP())
cDxr3Device::InstanceP()->Reset();
break;
case DXR3_AC3_OUT:
cDxr3ConfigData::Instance().SetAc3OutPut(!cDxr3ConfigData::Instance().GetAc3OutPut());
if (cDxr3Device::InstanceP())
cDxr3Device::InstanceP()->Reset();
break;
}
}
return Key == kOk ? osBack : cOsdItem::ProcessKey(Key);
}
// ==================================
// setup menu
cMenuSetupDxr3::cMenuSetupDxr3(void)
{
newUseDigitalOut = cDxr3ConfigData::Instance().GetUseDigitalOut();
Add(new cMenuEditBoolItem(tr("Digital audio output"), &newUseDigitalOut));
newDxr3Card = cDxr3ConfigData::Instance().GetDxr3Card();
Add(new cMenuEditIntItem(tr("Card number"),
&newDxr3Card, 0, DXR3_MAX_CARDS - 1));
newVideoMode = (int) cDxr3ConfigData::Instance().GetVideoMode();
menuVideoModes[0] = tr("PAL");
menuVideoModes[1] = tr("PAL60");
menuVideoModes[2] = tr("NTSC");
Add(new cMenuEditStraItem(tr("Video mode"),
&newVideoMode, 3, menuVideoModes));
newHideMenu = cDxr3ConfigData::Instance().GetHideMenu();
Add(new cMenuEditBoolItem(tr("Hide main menu entry"), &newHideMenu));
newOsdFlushRate = cDxr3ConfigData::Instance().GetOsdFlushRate();
Add(new cMenuEditIntItem(tr("OSD flush rate (ms)"),
&newOsdFlushRate, 0, 255));
}
// ==================================
// save menu values
void cMenuSetupDxr3::Store(void)
{
SetupStore("UseDigitalOut",
cDxr3ConfigData::Instance().SetUseDigitalOut(newUseDigitalOut));
SetupStore("Dxr3Card",
cDxr3ConfigData::Instance().SetDxr3Card(newDxr3Card));
SetupStore("Dxr3VideoMode",
cDxr3ConfigData::Instance().SetVideoMode((eVideoMode) newVideoMode));
SetupStore("HideMenu",
cDxr3ConfigData::Instance().SetHideMenu(newHideMenu));
SetupStore("OsdFlushRate",
cDxr3ConfigData::Instance().SetOsdFlushRate(newOsdFlushRate));
}
// ==================================
class cPluginDxr3 : public cPlugin
{
private:
// Add any member variables or functions you may need here.
public:
cPluginDxr3();
~cPluginDxr3();
const char *Version()
{
return VERSION;
}
const char *Description()
{
return tr(DESCRIPTION);
}
const char *CommandLineHelp();
bool ProcessArgs(int argc, char *argv[]);
bool Initialize();
bool Start();
void Housekeeping();
cMenuSetupPage *SetupMenu();
bool SetupParse(const char *Name, const char *Value);
const char* MainMenuEntry();
cOsdObject* MainMenuAction();
};
// ==================================
cPluginDxr3::cPluginDxr3()
{
// Initialize any member varaiables here.
// DON'T DO ANYTHING ELSE THAT MAY HAVE SIDE EFFECTS, REQUIRE GLOBAL
// VDR OBJECTS TO EXIST OR PRODUCE ANY OUTPUT!
cDxr3ConfigData::Instance();
}
// ==================================
cPluginDxr3::~cPluginDxr3()
{
}
// ==================================
const char *cPluginDxr3::CommandLineHelp()
{
return NULL;
}
// ==================================
bool cPluginDxr3::ProcessArgs(int argc, char *argv[])
{
return true;
}
// ==================================
bool cPluginDxr3::Start()
{
return true;
}
// ==================================
bool cPluginDxr3::Initialize()
{
RegisterI18n(Phrases);
cDxr3Device::InstanceP();
return true;
}
// ==================================
void cPluginDxr3::Housekeeping()
{
}
// ==================================
cMenuSetupPage* cPluginDxr3::SetupMenu()
{
return new cMenuSetupDxr3();
}
// ==================================
bool cPluginDxr3::SetupParse(const char *Name, const char *Value)
{
if (!strcasecmp(Name, "UseDigitalOut"))
{
cDxr3ConfigData::Instance().SetUseDigitalOut(atoi(Value));
return true;
}
if (!strcasecmp(Name, "Dxr3Card"))
{
cDxr3ConfigData::Instance().SetDxr3Card(atoi(Value));
return true;
}
if (!strcasecmp(Name, "Dxr3VideoMode"))
{
cDxr3ConfigData::Instance().SetVideoMode((eVideoMode) atoi(Value));
return true;
}
if (!strcasecmp(Name, "HideMenu"))
{
cDxr3ConfigData::Instance().SetHideMenu(atoi(Value));
return true;
}
if (!strcasecmp(Name, "OsdFlushRate"))
{
cDxr3ConfigData::Instance().SetOsdFlushRate(atoi(Value));
return true;
}
return false;
}
// ==================================
const char* cPluginDxr3::MainMenuEntry()
{
return cDxr3ConfigData::Instance().GetHideMenu() ?
NULL : tr(MAINMENUENTRY);
}
// ==================================
cOsdObject* cPluginDxr3::MainMenuAction()
{
return new cDxr3OsdMenu;
}
VDRPLUGINCREATOR(cPluginDxr3); // Don't touch this!
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
|