forked from huceke/omxplayer
-
Notifications
You must be signed in to change notification settings - Fork 334
/
OMXPlayerVideo.cpp
401 lines (335 loc) · 8.25 KB
/
OMXPlayerVideo.cpp
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/*
* Copyright (C) 2005-2008 Team XBMC
* http://www.xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#if (defined HAVE_CONFIG_H) && (!defined WIN32)
#include "config.h"
#elif defined(_WIN32)
#include "system.h"
#endif
#include "OMXPlayerVideo.h"
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
#include "linux/XMemUtils.h"
OMXPlayerVideo::OMXPlayerVideo()
{
m_open = false;
m_stream_id = -1;
m_pStream = NULL;
m_av_clock = NULL;
m_decoder = NULL;
m_fps = 25.0f;
m_flush = false;
m_flush_requested = false;
m_cached_size = 0;
m_iVideoDelay = 0;
m_iCurrentPts = 0;
pthread_cond_init(&m_packet_cond, NULL);
pthread_cond_init(&m_picture_cond, NULL);
pthread_mutex_init(&m_lock, NULL);
pthread_mutex_init(&m_lock_decoder, NULL);
}
OMXPlayerVideo::~OMXPlayerVideo()
{
Close();
pthread_cond_destroy(&m_packet_cond);
pthread_cond_destroy(&m_picture_cond);
pthread_mutex_destroy(&m_lock);
pthread_mutex_destroy(&m_lock_decoder);
}
void OMXPlayerVideo::Lock()
{
if(m_config.use_thread)
pthread_mutex_lock(&m_lock);
}
void OMXPlayerVideo::UnLock()
{
if(m_config.use_thread)
pthread_mutex_unlock(&m_lock);
}
void OMXPlayerVideo::LockDecoder()
{
if(m_config.use_thread)
pthread_mutex_lock(&m_lock_decoder);
}
void OMXPlayerVideo::UnLockDecoder()
{
if(m_config.use_thread)
pthread_mutex_unlock(&m_lock_decoder);
}
bool OMXPlayerVideo::Open(OMXClock *av_clock, const OMXVideoConfig &config)
{
if (!m_dllAvUtil.Load() || !m_dllAvCodec.Load() || !m_dllAvFormat.Load() || !av_clock)
return false;
if(ThreadHandle())
Close();
m_dllAvFormat.av_register_all();
m_config = config;
m_av_clock = av_clock;
m_fps = 25.0f;
m_frametime = 0;
m_iCurrentPts = DVD_NOPTS_VALUE;
m_bAbort = false;
m_flush = false;
m_cached_size = 0;
m_iVideoDelay = 0;
if(!OpenDecoder())
{
Close();
return false;
}
if(m_config.use_thread)
Create();
m_open = true;
return true;
}
bool OMXPlayerVideo::Reset()
{
// Quick reset of internal state back to a default that is ready to play from
// the start or a new position. This replaces a combination of Close and then
// Open calls but does away with the DLL unloading/loading, decoder reset, and
// thread reset.
Flush();
m_stream_id = -1;
m_pStream = NULL;
m_iCurrentPts = DVD_NOPTS_VALUE;
m_frametime = 0;
m_bAbort = false;
m_flush = false;
m_flush_requested = false;
m_cached_size = 0;
m_iVideoDelay = 0;
// Keep consistency with old Close/Open logic by continuing to return a bool
// with the success/failure of this call. Although little can go wrong
// setting some variables, in the future this could indicate success/failure
// of the reset. For now just return success (true).
return true;
}
bool OMXPlayerVideo::Close()
{
m_bAbort = true;
Flush();
if(ThreadHandle())
{
Lock();
pthread_cond_broadcast(&m_packet_cond);
UnLock();
StopThread();
}
CloseDecoder();
m_dllAvUtil.Unload();
m_dllAvCodec.Unload();
m_dllAvFormat.Unload();
m_open = false;
m_stream_id = -1;
m_iCurrentPts = DVD_NOPTS_VALUE;
m_pStream = NULL;
return true;
}
void OMXPlayerVideo::SetAlpha(int alpha)
{
m_decoder->SetAlpha(alpha);
}
void OMXPlayerVideo::SetLayer(int layer)
{
m_decoder->SetLayer(layer);
}
void OMXPlayerVideo::SetVideoRect(const CRect& SrcRect, const CRect& DestRect)
{
m_decoder->SetVideoRect(SrcRect, DestRect);
}
void OMXPlayerVideo::SetVideoRect(int aspectMode)
{
m_decoder->SetVideoRect(aspectMode);
}
bool OMXPlayerVideo::Decode(OMXPacket *pkt)
{
if(!pkt)
return false;
double dts = pkt->dts;
double pts = pkt->pts;
if (dts != DVD_NOPTS_VALUE)
dts += m_iVideoDelay;
if (pts != DVD_NOPTS_VALUE)
pts += m_iVideoDelay;
if(pts != DVD_NOPTS_VALUE)
m_iCurrentPts = pts;
while((int) m_decoder->GetFreeSpace() < pkt->size)
{
OMXClock::OMXSleep(10);
if(m_flush_requested) return true;
}
CLog::Log(LOGINFO, "CDVDPlayerVideo::Decode dts:%.0f pts:%.0f cur:%.0f, size:%d", pkt->dts, pkt->pts, m_iCurrentPts, pkt->size);
m_decoder->Decode(pkt->data, pkt->size, dts, pts);
return true;
}
void OMXPlayerVideo::Process()
{
OMXPacket *omx_pkt = NULL;
while(true)
{
Lock();
if(!(m_bStop || m_bAbort) && m_packets.empty())
pthread_cond_wait(&m_packet_cond, &m_lock);
if (m_bStop || m_bAbort)
{
UnLock();
break;
}
if(m_flush && omx_pkt)
{
OMXReader::FreePacket(omx_pkt);
omx_pkt = NULL;
m_flush = false;
}
else if(!omx_pkt && !m_packets.empty())
{
omx_pkt = m_packets.front();
if (omx_pkt)
{
m_cached_size -= omx_pkt->size;
}
else
{
assert(m_cached_size == 0);
SubmitEOSInternal();
}
m_packets.pop_front();
}
UnLock();
LockDecoder();
if(m_flush && omx_pkt)
{
OMXReader::FreePacket(omx_pkt);
omx_pkt = NULL;
m_flush = false;
}
else if(omx_pkt && Decode(omx_pkt))
{
OMXReader::FreePacket(omx_pkt);
omx_pkt = NULL;
}
UnLockDecoder();
}
if(omx_pkt)
OMXReader::FreePacket(omx_pkt);
}
void OMXPlayerVideo::Flush()
{
m_flush_requested = true;
Lock();
LockDecoder();
m_flush_requested = false;
m_flush = true;
while (!m_packets.empty())
{
OMXPacket *pkt = m_packets.front();
m_packets.pop_front();
OMXReader::FreePacket(pkt);
}
m_iCurrentPts = DVD_NOPTS_VALUE;
m_cached_size = 0;
if(m_decoder)
m_decoder->Reset();
UnLockDecoder();
UnLock();
}
bool OMXPlayerVideo::AddPacket(OMXPacket *pkt)
{
bool ret = false;
if(!pkt)
return ret;
if(m_bStop || m_bAbort)
return ret;
if((m_cached_size + pkt->size) < m_config.queue_size * 1024 * 1024)
{
Lock();
m_cached_size += pkt->size;
m_packets.push_back(pkt);
UnLock();
ret = true;
pthread_cond_broadcast(&m_packet_cond);
}
return ret;
}
bool OMXPlayerVideo::OpenDecoder()
{
if (m_config.hints.fpsrate && m_config.hints.fpsscale)
m_fps = DVD_TIME_BASE / OMXReader::NormalizeFrameduration((double)DVD_TIME_BASE * m_config.hints.fpsscale / m_config.hints.fpsrate);
else
m_fps = 25;
if( m_fps > 100 || m_fps < 5 )
{
printf("Invalid framerate %d, using forced 25fps and just trust timestamps\n", (int)m_fps);
m_fps = 25;
}
m_frametime = (double)DVD_TIME_BASE / m_fps;
m_decoder = new COMXVideo();
if(!m_decoder->Open(m_av_clock, m_config))
{
CloseDecoder();
return false;
}
else
{
printf("Video codec %s width %d height %d profile %d fps %f\n",
m_decoder->GetDecoderName().c_str() , m_config.hints.width, m_config.hints.height, m_config.hints.profile, m_fps);
}
return true;
}
bool OMXPlayerVideo::CloseDecoder()
{
if(m_decoder)
delete m_decoder;
m_decoder = NULL;
return true;
}
int OMXPlayerVideo::GetDecoderBufferSize()
{
if(m_decoder)
return m_decoder->GetInputBufferSize();
else
return 0;
}
int OMXPlayerVideo::GetDecoderFreeSpace()
{
if(m_decoder)
return m_decoder->GetFreeSpace();
else
return 0;
}
void OMXPlayerVideo::SubmitEOS()
{
Lock();
m_packets.push_back(nullptr);
UnLock();
pthread_cond_broadcast(&m_packet_cond);
}
void OMXPlayerVideo::SubmitEOSInternal()
{
if(m_decoder)
m_decoder->SubmitEOS();
}
bool OMXPlayerVideo::IsEOS()
{
if(!m_decoder)
return false;
return m_packets.empty() && (!m_decoder || m_decoder->IsEOS());
}