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
|
/*
* OSD Picture in Picture plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*/
#include <vdr/config.h>
#include "setup.h"
#if VDRVERSNUM < 10307
# if MAXNUMCOLORS < 256
# warning WARNING: YOU WILL NOT BE ABLE TO USE 256 COLOR PIP
# endif
# ifndef VDR_OSDPIP_PATCHED
# warning WARNING: YOU WILL NOT BE ABLE TO USE VARIABLE COLOR PIP
# endif
# if MAXNUMCOLORS < 256
const int kColorDepths = 1;
# else
# ifndef VDR_OSDPIP_PATCHED
const int kColorDepths = 3;
# else
const int kColorDepths = 4;
# endif
# endif
#else
const int kColorDepths = 4;
#endif
const int kSizes = 6;
const int kFrameModes = 3;
const int kFrameDrops = 4;
const int kInfoPositions = 4;
const char * ColorDepthItems[] = {NULL, NULL, NULL, NULL, NULL}; // initialized later
const char * InfoPositionItems[] = {NULL, NULL, NULL, NULL, NULL}; // initialized later
const char * FrameDropItems[] = {NULL, NULL, NULL, NULL, NULL}; // initialized later
const char * SizeItems[] = {
"120x96",
"160x128",
"200x160",
"240x192",
"280x224",
"320x256",
NULL
};
const char * FrameModeItems[] = {
"I",
"I, P",
"I, P, B"
};
cOsdPipSetup OsdPipSetup;
cOsdPipSetup::cOsdPipSetup(void)
{
XPosition = 50;
YPosition = 50;
CropLeft = 5;
CropRight = 5;
CropTop = 5;
CropBottom = 5;
ColorDepth = kDepthGrey16;
Size = 2;
FrameMode = kFrameModeI;
FrameDrop = -1;
SwapFfmpeg = 1;
ShowInfo = 1;
InfoWidth = 400;
InfoPosition = kInfoBottomLeft;
}
bool cOsdPipSetup::SetupParse(const char *Name, const char *Value)
{
if (strcmp(Name, "XPosition") == 0) XPosition = atoi(Value);
else if (strcmp(Name, "YPosition") == 0) YPosition = atoi(Value);
else if (strcmp(Name, "CropLeft") == 0) CropLeft = atoi(Value);
else if (strcmp(Name, "CropRight") == 0) CropRight = atoi(Value);
else if (strcmp(Name, "CropTop") == 0) CropTop = atoi(Value);
else if (strcmp(Name, "CropBottom") == 0) CropBottom = atoi(Value);
else if (strcmp(Name, "ColorDepth") == 0) ColorDepth = atoi(Value);
else if (strcmp(Name, "Size") == 0) Size = atoi(Value);
else if (strcmp(Name, "FrameMode") == 0) FrameMode = atoi(Value);
else if (strcmp(Name, "FrameDrop") == 0) FrameDrop = atoi(Value);
else if (strcmp(Name, "SwapFfmpeg") == 0) SwapFfmpeg = atoi(Value);
else if (strcmp(Name, "ShowInfo") == 0) ShowInfo = atoi(Value);
else if (strcmp(Name, "InfoWidth") == 0) InfoWidth = atoi(Value);
else if (strcmp(Name, "InfoPosition") == 0) InfoPosition = atoi(Value);
else return false;
return true;
}
cOsdPipSetupPage::cOsdPipSetupPage(void)
{
m_NewOsdPipSetup = OsdPipSetup;
m_NewOsdPipSetup.FrameDrop += 1;
ColorDepthItems[0] = tr("Greyscale (16)");
ColorDepthItems[1] = tr("Greyscale (256)");
ColorDepthItems[2] = tr("Color (256, fixed)");
ColorDepthItems[3] = tr("Color (128, variable)");
InfoPositionItems[0] = tr("top left");
InfoPositionItems[1] = tr("top right");
InfoPositionItems[2] = tr("bottom left");
InfoPositionItems[3] = tr("bottom right");
FrameDropItems[0] = tr("automatic");
FrameDropItems[1] = tr("none");
FrameDropItems[2] = tr("1 frame");
FrameDropItems[3] = tr("2 frames");
Add(new cMenuEditIntItem(tr("X Position"), &m_NewOsdPipSetup.XPosition, 0, 600));
Add(new cMenuEditIntItem(tr("Y Position"), &m_NewOsdPipSetup.YPosition, 0, 470));
Add(new cMenuEditIntItem(tr("Crop left"), &m_NewOsdPipSetup.CropLeft, 0, 80));
Add(new cMenuEditIntItem(tr("Crop right"), &m_NewOsdPipSetup.CropRight, 0, 80));
Add(new cMenuEditIntItem(tr("Crop at top"), &m_NewOsdPipSetup.CropTop, 0, 80));
Add(new cMenuEditIntItem(tr("Crop at bottom"), &m_NewOsdPipSetup.CropBottom, 0, 80));
Add(new cMenuEditStraItem(tr("Color depth"), &m_NewOsdPipSetup.ColorDepth, kColorDepths, ColorDepthItems));
Add(new cMenuEditStraItem(tr("Size"), &m_NewOsdPipSetup.Size, kSizes, SizeItems));
Add(new cMenuEditStraItem(tr("Frames to display"), &m_NewOsdPipSetup.FrameMode, kFrameModes, FrameModeItems));
Add(new cMenuEditStraItem(tr("Drop frames"), &m_NewOsdPipSetup.FrameDrop, kFrameDrops, FrameDropItems));
Add(new cMenuEditBoolItem(tr("Swap FFMPEG output"), &m_NewOsdPipSetup.SwapFfmpeg));
Add(new cMenuEditBoolItem(tr("Show info window"), &m_NewOsdPipSetup.ShowInfo));
Add(new cMenuEditIntItem(tr("Info window width"), &m_NewOsdPipSetup.InfoWidth, 200, 600));
Add(new cMenuEditStraItem(tr("Info window position"), &m_NewOsdPipSetup.InfoPosition, kInfoPositions, InfoPositionItems));
}
cOsdPipSetupPage::~cOsdPipSetupPage()
{
}
void cOsdPipSetupPage::Store(void)
{
OsdPipSetup = m_NewOsdPipSetup;
OsdPipSetup.FrameDrop -= 1;
SetupStore("XPosition", OsdPipSetup.XPosition);
SetupStore("YPosition", OsdPipSetup.YPosition);
SetupStore("CropLeft", OsdPipSetup.CropLeft);
SetupStore("CropRight", OsdPipSetup.CropRight);
SetupStore("CropTop", OsdPipSetup.CropTop);
SetupStore("CropBottom", OsdPipSetup.CropBottom);
SetupStore("ColorDepth", OsdPipSetup.ColorDepth);
SetupStore("Size", OsdPipSetup.Size);
SetupStore("FrameMode", OsdPipSetup.FrameMode);
SetupStore("FrameDrop", OsdPipSetup.FrameDrop);
SetupStore("SwapFfmpeg", OsdPipSetup.SwapFfmpeg);
SetupStore("ShowInfo", OsdPipSetup.ShowInfo);
SetupStore("InfoWidth", OsdPipSetup.InfoWidth);
SetupStore("InfoPosition", OsdPipSetup.InfoPosition);
}
|