This repository has been archived by the owner on Dec 19, 2022. It is now read-only.
forked from reufer/rpihddevice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.h
240 lines (201 loc) · 4.78 KB
/
tools.h
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
/*
* rpihddevice - VDR HD output device for Raspberry Pi
* Copyright (C) 2014, 2015, 2016 Thomas Reufer
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef TOOLS_H
#define TOOLS_H
#define ELOG(a...) esyslog("rpihddevice: " a)
#define ILOG(a...) isyslog("rpihddevice: " a)
#define DLOG(a...) dsyslog("rpihddevice: " a)
#ifdef DEBUG
#define DBG(a...) dsyslog("rpihddevice: " a)
#else
#define DBG(a...) void()
#endif
class cVideoResolution
{
public:
enum eResolution {
eDontChange = 0,
eFollowVideo,
e480,
e480w,
e576,
e576w,
e720,
e1080
};
static const char* Str(eResolution resolution) {
return (resolution == eDontChange) ? "don't change" :
(resolution == eFollowVideo) ? "follow video" :
(resolution == e480) ? "480" :
(resolution == e480w) ? "480w" :
(resolution == e576) ? "576" :
(resolution == e576w) ? "576w" :
(resolution == e720) ? "720" :
(resolution == e1080) ? "1080" : "unknown";
}
};
class cVideoFrameRate
{
public:
enum eFrameRate {
eDontChange = 0,
eFollowVideo,
e24p,
e25p,
e30p,
e50i,
e50p,
e60i,
e60p
};
static const char* Str(eFrameRate frameRate) {
return (frameRate == eDontChange) ? "don't change" :
(frameRate == eFollowVideo) ? "follow video" :
(frameRate == e24p) ? "p24" :
(frameRate == e25p) ? "p25" :
(frameRate == e30p) ? "p30" :
(frameRate == e50i) ? "i50" :
(frameRate == e50p) ? "p50" :
(frameRate == e60i) ? "i60" :
(frameRate == e60p) ? "p60" : "unknown";
}
};
class cVideoFraming
{
public:
enum eFraming {
eFrame,
eCut,
eStretch
};
static const char* Str(eFraming framing) {
return (framing == eFrame) ? "frame" :
(framing == eCut) ? "cut" :
(framing == eStretch) ? "stretch" : "unknown";
}
};
class cAudioCodec
{
public:
enum eCodec {
ePCM,
eMPG,
eAC3,
eEAC3,
eAAC,
eAAC_LATM,
eDTS,
eNumCodecs,
eInvalid
};
static const char* Str(eCodec codec) {
return (codec == ePCM) ? "PCM" :
(codec == eMPG) ? "MPEG" :
(codec == eAC3) ? "AC3" :
(codec == eEAC3) ? "E-AC3" :
(codec == eAAC) ? "AAC" :
(codec == eAAC_LATM) ? "AAC-LATM" :
(codec == eDTS) ? "DTS" : "unknown";
}
};
class cAudioFormat
{
public:
enum eFormat {
ePassThrough,
eMultiChannelPCM,
eStereoPCM
};
static const char* Str(eFormat format) {
return (format == ePassThrough) ? "pass through" :
(format == eMultiChannelPCM) ? "multi channel PCM" :
(format == eStereoPCM) ? "stereo PCM" : "unknown";
}
};
class cVideoCodec
{
public:
enum eCodec {
eMPEG2,
eH264,
eNumCodecs,
eInvalid
};
static const char* Str(eCodec codec) {
return (codec == eMPEG2) ? "MPEG2" :
(codec == eH264) ? "H264" : "unknown";
}
};
class cRpiAudioPort
{
public:
enum ePort {
eLocal,
eHDMI
};
static const char* Str(ePort port) {
return (port == eLocal) ? "local" :
(port == eHDMI) ? "HDMI" : "unknown";
}
};
class cScanMode
{
public:
enum eMode {
eProgressive,
eTopFieldFirst,
eBottomFieldFirst
};
static const char* Str(eMode mode) {
return (mode == eProgressive) ? "progressive" :
(mode == eTopFieldFirst) ? "interlaced (tff)" :
(mode == eBottomFieldFirst) ? "interlaced (bff)" : "unknown";
}
static const bool Interlaced(eMode mode) {
return mode != eProgressive;
}
};
class cVideoFrameFormat
{
public:
cVideoFrameFormat() : width(0), height(0), frameRate(0),
scanMode(cScanMode::eProgressive), pixelWidth(0), pixelHeight(0) { };
int width;
int height;
int frameRate;
cScanMode::eMode scanMode;
int pixelWidth;
int pixelHeight;
bool Interlaced(void) const {
return cScanMode::Interlaced(scanMode);
}
};
class cRational
{
public:
cRational(double d);
cRational(int _num, int _den) : num(_num), den(_den) { }
bool Reduce(int max);
int num;
int den;
private:
cRational();
static int Gcd(int u, int v);
};
#endif