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
|
/*
* 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 OMX_DEVICE_H
#define OMX_DEVICE_H
#include <vdr/device.h>
#include "tools.h"
class cOmx;
class cRpiAudioDecoder;
class cRpiVideoDecoder;
class cMutex;
class cOmxDevice : cDevice
{
public:
cOmxDevice(void (*onPrimaryDevice)(void), int display, int layer);
virtual ~cOmxDevice();
virtual cString DeviceName(void) const { return "rpihddevice"; }
virtual int Init(void);
virtual int DeInit(void);
virtual bool Start(void);
virtual bool HasDecoder(void) const { return true; }
virtual bool CanReplay(void) const { return true; }
virtual bool HasIBPTrickSpeed(void);
virtual void GetOsdSize(int &Width, int &Height, double &PixelAspect);
virtual void GetVideoSize(int &Width, int &Height, double &VideoAspect);
virtual cRect CanScaleVideo(const cRect &Rect, int Alignment = taCenter)
{ return Rect; }
virtual void ScaleVideo(const cRect &Rect = cRect::Null);
virtual bool SetPlayMode(ePlayMode PlayMode);
virtual void StillPicture(const uchar *Data, int Length);
virtual int PlayAudio(const uchar *Data, int Length, uchar Id);
virtual int PlayVideo(const uchar *Data, int Length)
{ return PlayVideo(Data, Length, false); }
virtual int PlayVideo(const uchar *Data, int Length, bool EndOfFrame);
virtual int64_t GetSTC(void);
virtual uchar *GrabImage(int &Size, bool Jpeg = true, int Quality = -1,
int SizeX = -1, int SizeY = -1);
#if APIVERSNUM >= 20103
virtual void TrickSpeed(int Speed, bool Forward);
#else
virtual void TrickSpeed(int Speed);
#endif
virtual void Clear(void);
virtual void Play(void);
virtual void Freeze(void);
virtual void SetVolumeDevice(int Volume);
virtual bool Poll(cPoller &Poller, int TimeoutMs = 0);
protected:
virtual void MakePrimaryDevice(bool On);
enum eDirection {
eForward,
eBackward,
eNumDirections
};
static const char* DirectionStr(eDirection dir) {
return dir == eForward ? "forward" :
dir == eBackward ? "backward" : "unknown";
}
enum ePlaybackSpeed {
ePause,
eSlowest,
eSlower,
eSlow,
eNormal,
eFast,
eFaster,
eFastest,
eNumPlaybackSpeeds
};
static const char* PlaybackSpeedStr(ePlaybackSpeed speed) {
return speed == ePause ? "pause" :
speed == eSlowest ? "slowest" :
speed == eSlower ? "slower" :
speed == eSlow ? "slow" :
speed == eNormal ? "normal" :
speed == eFast ? "fast" :
speed == eFaster ? "faster" :
speed == eFastest ? "fastest" : "unknown";
}
enum eLiveSpeed {
eNegMaxCorrection,
eNegCorrection,
eNoCorrection,
ePosCorrection,
ePosMaxCorrection,
eNumLiveSpeeds
};
static const char* LiveSpeedStr(eLiveSpeed corr) {
return corr == eNegMaxCorrection ? "max negative" :
corr == eNegCorrection ? "negative" :
corr == eNoCorrection ? "no" :
corr == ePosCorrection ? "positive" :
corr == ePosMaxCorrection ? "max positive" : "unknown";
}
static const int s_playbackSpeeds[eNumDirections][eNumPlaybackSpeeds];
static const int s_liveSpeeds[eNumLiveSpeeds];
static const uchar s_pesVideoHeader[14];
private:
void (*m_onPrimaryDevice)(void);
cVideoCodec::eCodec GetVideoCodec(void);
static void OnEndOfStream(void *data)
{ (static_cast <cOmxDevice*> (data))->HandleEndOfStream(); }
static void OnStreamStart(void *data, const cVideoFrameFormat *format)
{ (static_cast <cOmxDevice*> (data))->HandleStreamStart(format); }
static void OnVideoSetupChanged(void *data)
{ (static_cast <cOmxDevice*> (data))->HandleVideoSetupChanged(); }
void HandleEndOfStream(void);
void HandleStreamStart(const cVideoFrameFormat *format);
void HandleVideoSetupChanged(void);
void ApplyTrickSpeed(int trickSpeed, bool forward);
void PtsTracker(int64_t ptsDiff);
void AdjustLiveSpeed(void);
cOmx *m_omx;
cRpiAudioDecoder *m_audio;
cRpiVideoDecoder *m_video;
cMutex *m_mutex;
cTimeMs *m_timer;
ePlayMode m_playMode;
eLiveSpeed m_liveSpeed;
ePlaybackSpeed m_playbackSpeed;
eDirection m_direction;
bool m_hasVideo;
bool m_hasAudio;
bool m_skipAudio;
int m_playDirection;
int m_trickRequest;
int64_t m_audioPts;
int64_t m_videoPts;
int64_t m_lastStc;
int m_display;
int m_layer;
};
#endif
|