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
|
/*
* 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.1.2.6 2005/04/18 19:26:22 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.2.3-cvs";
static const char *DESCRIPTION = "Hardware MPEG decoder";
static const char *MAINMENUENTRY = "DXR3";
#include "dxr3cpu.h"
// ==================================
// 'message-handler' for the main screen
eOSState cDxr3OsdItem::ProcessKey(eKeys Key)
{
if (Key == kOk)
{
switch (m_item)
{
case DXR3_RESET_HARDWARE:
cDxr3Interface::Instance().ResetHardware();
cDxr3Device::Instance().Reset();
break;
case DXR3_FORCE_LETTER_BOX:
cDxr3ConfigData::Instance().SetForceLetterBox(!cDxr3ConfigData::Instance().GetForceLetterBox());
break;
case DXR3_ANALOG_OUT:
cLog::Instance() << "Changing audio to analog\n";
cDxr3ConfigData::Instance().SetUseDigitalOut(0);
cDxr3ConfigData::Instance().SetAc3OutPut(0);
cDxr3Device::Instance().Reset();
break;
case DXR3_DIGITAL_OUT:
cLog::Instance() << "Changing audio to digital\n";
cDxr3ConfigData::Instance().SetUseDigitalOut(1);
cDxr3ConfigData::Instance().SetAc3OutPut(0);
cDxr3Device::Instance().Reset();
break;
case DXR3_AC3_OUT:
cLog::Instance() << "Changing audio to ac3\n";
cDxr3ConfigData::Instance().SetAc3OutPut(!cDxr3ConfigData::Instance().GetAc3OutPut());
cDxr3Device::Instance().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));
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));
newDebug = (int) cDxr3ConfigData::Instance().GetDebug();
Add(new cMenuEditBoolItem(tr("Debug mode"), &newDebug));
newDebugLevel = (int) cDxr3ConfigData::Instance().GetDebugLevel();
menuDebugModes[0] = tr("low");
menuDebugModes[1] = tr("everything");
Add(new cMenuEditStraItem(tr("Debug level"), &newDebugLevel, 2, menuDebugModes));
}
// ==================================
// 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("Dxr3Debug", cDxr3ConfigData::Instance().SetDebug(newDebug));
SetupStore("Dxr3DebugLevel", cDxr3ConfigData::Instance().SetDebugLevel(newDebugLevel));
}
// ==================================
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);
new cDxr3CPU();
cDxr3Device::Instance();
return true;
}
// ==================================
void cPluginDxr3::Housekeeping()
{
}
// ==================================
cMenuSetupPage* cPluginDxr3::SetupMenu()
{
return new cMenuSetupDxr3();
}
// ==================================
bool cPluginDxr3::SetupParse(const char *Name, const char *Value)
{
// Parse your own setup parameters and store their values.
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, "Dxr3Debug")) { cDxr3ConfigData::Instance().SetDebug(atoi(Value)); return true; }
if (!strcasecmp(Name, "Dxr3VideoMode")) { cDxr3ConfigData::Instance().SetVideoMode((eVideoMode) atoi(Value)); return true;}
if (!strcasecmp(Name, "Dxr3DebugLevel")) { cDxr3ConfigData::Instance().SetDebugLevel(atoi(Value)); return true;}
return false;
}
// ==================================
const char* cPluginDxr3::MainMenuEntry()
{
return tr(MAINMENUENTRY);
}
// ==================================
cOsdObject* cPluginDxr3::MainMenuAction()
{
return new cDxr3OsdMenu;
}
VDRPLUGINCREATOR(cPluginDxr3); // Don't touch this!
|