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
|
/*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#ifndef OMX_DEVICE_H
#define OMX_DEVICE_H
#include <vdr/device.h>
#include "tools.h"
class cOmx;
class cRpiAudioDecoder;
class cMutex;
class cOmxDevice : cDevice
{
public:
cOmxDevice(void (*onPrimaryDevice)(void));
virtual ~cOmxDevice();
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 PesVideoHeader[14];
private:
void (*m_onPrimaryDevice)(void);
virtual cVideoCodec::eCodec ParseVideoCodec(const uchar *data, int length);
static void OnBufferStall(void *data)
{ (static_cast <cOmxDevice*> (data))->HandleBufferStall(); }
static void OnEndOfStream(void *data)
{ (static_cast <cOmxDevice*> (data))->HandleEndOfStream(); }
static void OnStreamStart(void *data)
{ (static_cast <cOmxDevice*> (data))->HandleStreamStart(); }
static void OnVideoSetupChanged(void *data)
{ (static_cast <cOmxDevice*> (data))->HandleVideoSetupChanged(); }
void HandleBufferStall();
void HandleEndOfStream();
void HandleStreamStart();
void HandleVideoSetupChanged();
void FlushStreams(bool flushVideoRender = false);
bool SubmitEOS(void);
void ApplyTrickSpeed(int trickSpeed, bool forward);
void PtsTracker(int64_t ptsDiff);
void AdjustLiveSpeed(void);
cOmx *m_omx;
cRpiAudioDecoder *m_audio;
cMutex *m_mutex;
cTimeMs *m_timer;
cVideoCodec::eCodec m_videoCodec;
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;
uint64_t m_audioPts;
uint64_t m_videoPts;
int64_t m_lastStc;
};
#endif
|