Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLMC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
21
Issues
21
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLMC
Commits
a50130fe
Commit
a50130fe
authored
Oct 10, 2009
by
Hugo Beauzee-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding a VideoClipWorkflow class
parent
ec9dcbc6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
124 additions
and
0 deletions
+124
-0
src/Workflow/VideoClipWorkflow.cpp
src/Workflow/VideoClipWorkflow.cpp
+83
-0
src/Workflow/VideoClipWorkflow.h
src/Workflow/VideoClipWorkflow.h
+41
-0
No files found.
src/Workflow/VideoClipWorkflow.cpp
0 → 100644
View file @
a50130fe
/*****************************************************************************
* VideoClipWorkflow.cpp : Clip workflow. Will extract a single frame from a VLCMedia
*****************************************************************************
* Copyright (C) 2008-2009 the VLMC team
*
* Authors: Hugo Beauzee-Luyssen <hugo@vlmc.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
* 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 "VideoClipWorkflow.h"
VideoClipWorkflow
::
VideoClipWorkflow
(
Clip
*
clip
)
:
ClipWorkflow
(
clip
)
{
}
void
*
VideoClipWorkflow
::
getLockCallback
()
{
return
reinterpret_cast
<
void
*>
(
&
VideoClipWorkflow
::
lock
);
}
void
*
VideoClipWorkflow
::
getUnlockCallback
()
{
return
reinterpret_cast
<
void
*>
(
&
VideoClipWorkflow
::
unlock
);
}
void
VideoClipWorkflow
::
lock
(
VideoClipWorkflow
*
cw
,
void
**
pp_ret
,
int
size
)
{
Q_UNUSED
(
size
);
cw
->
m_renderLock
->
lock
();
*
pp_ret
=
cw
->
m_buffer
;
// qDebug() << '[' << (void*)cw << "] ClipWorkflow::lock";
}
void
VideoClipWorkflow
::
unlock
(
VideoClipWorkflow
*
cw
,
void
*
buffer
,
int
width
,
int
height
,
int
bpp
,
int
size
)
{
Q_UNUSED
(
buffer
);
Q_UNUSED
(
width
);
Q_UNUSED
(
height
);
Q_UNUSED
(
bpp
);
Q_UNUSED
(
size
);
cw
->
m_renderLock
->
unlock
();
cw
->
m_stateLock
->
lockForWrite
();
if
(
cw
->
m_state
==
Rendering
)
{
QMutexLocker
lock
(
cw
->
m_condMutex
);
cw
->
m_state
=
Sleeping
;
cw
->
m_stateLock
->
unlock
();
{
QMutexLocker
lock2
(
cw
->
m_renderWaitCond
->
getMutex
()
);
cw
->
m_renderWaitCond
->
wake
();
}
cw
->
emit
renderComplete
(
cw
);
// qDebug() << "Emmiting render completed";
// qDebug() << "Entering cond wait";
cw
->
m_waitCond
->
wait
(
cw
->
m_condMutex
);
// qDebug() << "Leaving condwait";
cw
->
m_stateLock
->
lockForWrite
();
if
(
cw
->
m_state
==
Sleeping
)
cw
->
m_state
=
Rendering
;
cw
->
m_stateLock
->
unlock
();
}
else
cw
->
m_stateLock
->
unlock
();
// qDebug() << '[' << (void*)cw << "] ClipWorkflow::unlock";
cw
->
checkStateChange
();
}
src/Workflow/VideoClipWorkflow.h
0 → 100644
View file @
a50130fe
/*****************************************************************************
* VideoClipWorkflow.h : Clip workflow. Will extract a single frame from a VLCMedia
*****************************************************************************
* Copyright (C) 2008-2009 the VLMC team
*
* Authors: Hugo Beauzee-Luyssen <hugo@vlmc.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
* 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 VIDEOCLIPWORKFLOW_H
#define VIDEOCLIPWORKFLOW_H
#include "ClipWorkflow.h"
#include "Clip.h"
class
VideoClipWorkflow
:
public
ClipWorkflow
{
public:
VideoClipWorkflow
(
Clip
*
clip
);
void
*
getLockCallback
();
void
*
getUnlockCallback
();
private:
static
void
lock
(
VideoClipWorkflow
*
clipWorkflow
,
void
**
pp_ret
,
int
size
);
static
void
unlock
(
VideoClipWorkflow
*
clipWorkflow
,
void
*
buffer
,
int
width
,
int
height
,
int
bpp
,
int
size
);
};
#endif // VIDEOCLIPWORKFLOW_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment