-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathClipWorkflow.cpp
309 lines (276 loc) · 8.48 KB
/
ClipWorkflow.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
/*****************************************************************************
* ClipWorkflow.cpp : Clip workflow. Will extract a single frame from a VLCMedia
*****************************************************************************
* Copyright (C) 2008-2010 VideoLAN
*
* Authors: Hugo Beauzee-Luyssen <[email protected]>
*
* 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.
*****************************************************************************/
#include "vlmc.h"
#include "ClipWorkflow.h"
#include "MemoryPool.hpp"
#include "LightVideoFrame.h"
#include "Clip.h"
#include "VLCMediaPlayer.h"
#include "WaitCondition.hpp"
#include "VLCMedia.h"
#include <QReadWriteLock>
#include <QWaitCondition>
#include <QtDebug>
ClipWorkflow::ClipWorkflow( Clip::Clip* clip ) :
m_mediaPlayer(NULL),
m_clip( clip ),
m_state( ClipWorkflow::Stopped )
{
m_stateLock = new QReadWriteLock;
m_initWaitCond = new WaitCondition;
m_pausingStateWaitCond = new WaitCondition;
m_renderLock = new QMutex;
m_availableBuffersMutex = new QMutex;
m_computedBuffersMutex = new QMutex;
}
ClipWorkflow::~ClipWorkflow()
{
delete m_renderLock;
delete m_pausingStateWaitCond;
delete m_initWaitCond;
delete m_stateLock;
delete m_availableBuffersMutex;
delete m_computedBuffersMutex;
}
void ClipWorkflow::initialize()
{
// qDebug() << "Setting state to initializing";
setState( ClipWorkflow::Initializing );
// qDebug() << "State is Initializing.";
m_vlcMedia = new LibVLCpp::Media( m_clip->getParent()->mrl() );
m_currentPts = -1;
m_previousPts = -1;
m_pauseDuration = -1;
initVlcOutput();
m_mediaPlayer = MemoryPool<LibVLCpp::MediaPlayer>::getInstance()->get();
m_mediaPlayer->setMedia( m_vlcMedia );
connect( m_mediaPlayer, SIGNAL( playing() ), this, SLOT( loadingComplete() ), Qt::DirectConnection );
connect( m_mediaPlayer, SIGNAL( endReached() ), this, SLOT( clipEndReached() ), Qt::DirectConnection );
m_mediaPlayer->play();
}
void ClipWorkflow::loadingComplete()
{
adjustBegin();
disconnect( m_mediaPlayer, SIGNAL( playing() ), this, SLOT( loadingComplete() ) );
connect( m_mediaPlayer, SIGNAL( playing() ), this, SLOT( mediaPlayerUnpaused() ), Qt::DirectConnection );
connect( m_mediaPlayer, SIGNAL( paused() ), this, SLOT( mediaPlayerPaused() ), Qt::DirectConnection );
QMutexLocker lock( m_initWaitCond->getMutex() );
setState( Rendering );
m_initWaitCond->wake();
}
void ClipWorkflow::adjustBegin()
{
if ( m_clip->getParent()->fileType() == Media::Video ||
m_clip->getParent()->fileType() == Media::Audio )
{
m_mediaPlayer->setTime( m_clip->begin() /
m_clip->getParent()->fps() * 1000 );
}
}
bool ClipWorkflow::isEndReached() const
{
QReadLocker lock( m_stateLock );
return m_state == ClipWorkflow::EndReached;
}
bool ClipWorkflow::isStopped() const
{
QReadLocker lock( m_stateLock );
return m_state == ClipWorkflow::Stopped;
}
ClipWorkflow::State ClipWorkflow::getState() const
{
return m_state;
}
void ClipWorkflow::clipEndReached()
{
setState( EndReached );
}
Clip* ClipWorkflow::getClip()
{
return m_clip;
}
void ClipWorkflow::stop()
{
if ( m_mediaPlayer )
{
m_mediaPlayer->stop();
disconnect( m_mediaPlayer, SIGNAL( endReached() ), this, SLOT( clipEndReached() ) );
MemoryPool<LibVLCpp::MediaPlayer>::getInstance()->release( m_mediaPlayer );
m_mediaPlayer = NULL;
setState( Stopped );
delete m_vlcMedia;
flushComputedBuffers();
}
else
qDebug() << "ClipWorkflow has already been stopped";
}
void
ClipWorkflow::setTime( qint64 time )
{
m_mediaPlayer->setTime( time );
resyncClipWorkflow();
QWriteLocker lock( m_stateLock );
if ( m_state == ClipWorkflow::Paused )
{
// qDebug() << "Unpausing media player after set time";
m_mediaPlayer->pause();
m_state = ClipWorkflow::UnpauseRequired;
}
}
bool ClipWorkflow::isRendering() const
{
QReadLocker lock( m_stateLock );
return m_state == ClipWorkflow::Rendering;
}
void ClipWorkflow::setState( State state )
{
QWriteLocker lock( m_stateLock );
// qDebug() << '[' << (void*)this << "] Setting state to" << state;
m_state = state;
}
QReadWriteLock* ClipWorkflow::getStateLock()
{
return m_stateLock;
}
void ClipWorkflow::waitForCompleteInit()
{
if ( isRendering() == false )
{
QMutexLocker lock( m_initWaitCond->getMutex() );
m_initWaitCond->waitLocked();
}
}
LibVLCpp::MediaPlayer* ClipWorkflow::getMediaPlayer()
{
return m_mediaPlayer;
}
bool ClipWorkflow::preGetOutput()
{
//Computed buffer mutex is already locked by underlying clipworkflow getoutput method
if ( getNbComputedBuffers() == 0 )
return false;
return true;
}
void ClipWorkflow::postGetOutput()
{
//If we're running out of computed buffers, refill our stack.
if ( getNbComputedBuffers() < getMaxComputedBuffers() / 3 )
{
QWriteLocker lock( m_stateLock );
if ( m_state == ClipWorkflow::Paused )
{
// qWarning() << "Unpausing media player. type:" << debugType;
m_state = ClipWorkflow::UnpauseRequired;
// This will act like an "unpause";
m_mediaPlayer->pause();
}
// else
// qCritical() << "Running out of computed buffers ! debugType:" << debugType;
}
}
void ClipWorkflow::commonUnlock()
{
//Don't test using availableBuffer, as it may evolve if a buffer is required while
//no one is available : we would spawn a new buffer, thus modifying the number of available buffers
if ( getNbComputedBuffers() >= getMaxComputedBuffers() )
{
// qWarning() << "Pausing clip workflow. Type:" << debugType;
setState( ClipWorkflow::PauseRequired );
m_mediaPlayer->pause();
}
}
void ClipWorkflow::computePtsDiff( qint64 pts )
{
if ( m_previousPts == -1 )
m_previousPts = pts;
if ( m_currentPts == -1 )
m_currentPts = pts;
if ( m_pauseDuration != -1 )
{
// qDebug() << "In pause mode";
m_previousPts = m_currentPts + m_pauseDuration;
m_pauseDuration = -1;
}
else
m_previousPts = m_currentPts;
// if ( debugType == 1 )
// {
// qDebug() << "in computePtsDiff, After >> : pts:" << pts << "previousPts:" << m_previousPts
// << "currentPts:" << m_currentPts;
// }
// if ( debugType == 1 && pts < m_previousPts )
// {
// qCritical() << "New PTS is lower than previous PTS !<<<<<<<<<<<<<<<<<<<<<<<<<<";
// }
m_currentPts = qMax( pts, m_previousPts );
}
void ClipWorkflow::mediaPlayerPaused()
{
// qWarning() << "\n\nMedia player paused, waiting for buffers to be consumed.Type:" << debugType;
setState( ClipWorkflow::Paused );
m_beginPausePts = mdate();
// qDebug() << "got pause pts:" << m_beginPausePts;
}
void ClipWorkflow::mediaPlayerUnpaused()
{
// qWarning() << "Media player unpaused. Go back to rendering. Type:" << debugType;
setState( ClipWorkflow::Rendering );
m_pauseDuration = mdate() - m_beginPausePts;
// qDebug() << "pause duration:" << m_pauseDuration;
}
void ClipWorkflow::resyncClipWorkflow()
{
flushComputedBuffers();
m_previousPts = -1;
m_currentPts = -1;
}
void
ClipWorkflow::setFullSpeedRender( bool val )
{
m_fullSpeedRender = val;
}
void
ClipWorkflow::mute()
{
stop();
setState( Muted );
}
void
ClipWorkflow::unmute()
{
setState( Stopped );
}
void
ClipWorkflow::requireResync()
{
m_resyncRequired = 1;
}
bool
ClipWorkflow::isResyncRequired()
{
if ( m_resyncRequired == 1 )
{
m_resyncRequired = 0;
return true;
}
return false;
}