Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
741b5378
Commit
741b5378
authored
Jan 07, 2010
by
Hugo Beauzee-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more forward declaration.
parent
94340cc3
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
25 additions
and
13 deletions
+25
-13
src/Actions/StackedAction.hpp
src/Actions/StackedAction.hpp
+1
-0
src/Renderer/WorkflowRenderer.cpp
src/Renderer/WorkflowRenderer.cpp
+2
-0
src/Renderer/WorkflowRenderer.h
src/Renderer/WorkflowRenderer.h
+2
-0
src/Tools/MemoryPool.hpp
src/Tools/MemoryPool.hpp
+1
-0
src/Workflow/AudioClipWorkflow.h
src/Workflow/AudioClipWorkflow.h
+0
-1
src/Workflow/ClipWorkflow.cpp
src/Workflow/ClipWorkflow.cpp
+5
-2
src/Workflow/ClipWorkflow.h
src/Workflow/ClipWorkflow.h
+9
-8
src/Workflow/MainWorkflow.cpp
src/Workflow/MainWorkflow.cpp
+1
-0
src/Workflow/MainWorkflow.h
src/Workflow/MainWorkflow.h
+3
-2
src/Workflow/VideoClipWorkflow.cpp
src/Workflow/VideoClipWorkflow.cpp
+1
-0
No files found.
src/Actions/StackedAction.hpp
View file @
741b5378
...
...
@@ -26,6 +26,7 @@
#include <QUuid>
#include "MainWorkflow.h"
#include "Clip.h"
namespace
Action
{
...
...
src/Renderer/WorkflowRenderer.cpp
View file @
741b5378
...
...
@@ -22,11 +22,13 @@
#include <QtDebug>
#include <QThread>
#include <QWaitCondition>
#include "vlmc.h"
#include "WorkflowRenderer.h"
#include "timeline/Timeline.h"
#include "SettingsManager.h"
#include "LightVideoFrame.h"
uint8_t
*
WorkflowRenderer
::
silencedAudioBuffer
=
NULL
;
...
...
src/Renderer/WorkflowRenderer.h
View file @
741b5378
...
...
@@ -34,6 +34,8 @@
#include "ActionStack.h"
#include "AudioClipWorkflow.h"
class
QWaitCondition
;
class
WorkflowRenderer
:
public
GenericRenderer
{
Q_OBJECT
...
...
src/Tools/MemoryPool.hpp
View file @
741b5378
...
...
@@ -26,6 +26,7 @@
#include <QMutex>
#include <QQueue>
#include <QtDebug>
#include "Singleton.hpp"
...
...
src/Workflow/AudioClipWorkflow.h
View file @
741b5378
...
...
@@ -24,7 +24,6 @@
#define AUDIOCLIPWORKFLOW_H
#include "ClipWorkflow.h"
#include "Pool.hpp"
#include "StackedBuffer.hpp"
class
AudioClipWorkflow
:
public
ClipWorkflow
...
...
src/Workflow/ClipWorkflow.cpp
View file @
741b5378
...
...
@@ -20,12 +20,15 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include <QtDebug>
#include "vlmc.h"
#include "ClipWorkflow.h"
#include "MemoryPool.hpp"
#include "LightVideoFrame.h"
#include "Clip.h"
#include "WaitCondition.hpp"
#include <QWaitCondition>
#include <QtDebug>
ClipWorkflow
::
ClipWorkflow
(
Clip
::
Clip
*
clip
)
:
m_mediaPlayer
(
NULL
),
...
...
src/Workflow/ClipWorkflow.h
View file @
741b5378
...
...
@@ -23,17 +23,18 @@
#ifndef CLIPWORKFLOW_H
#define CLIPWORKFLOW_H
#include <QReadWriteLock>
#include <QMutex>
#include <QObject>
#include <QQueue>
#include "Clip.h"
#include "WaitCondition.hpp"
#include "VLCMediaPlayer.h"
#include "LightVideoFrame.h"
#include "mdate.h"
#include <QObject>
class
QReadWriteLock
;
class
QMutex
;
class
Clip
;
class
WaitCondition
;
class
LightVideoFrame
;
class
ClipWorkflow
:
public
QObject
{
Q_OBJECT
...
...
src/Workflow/MainWorkflow.cpp
View file @
741b5378
...
...
@@ -29,6 +29,7 @@
#include "TrackHandler.h"
#include "Library.h"
#include "SettingsManager.h"
#include "Clip.h"
LightVideoFrame
*
MainWorkflow
::
blackOutput
=
NULL
;
...
...
src/Workflow/MainWorkflow.h
View file @
741b5378
...
...
@@ -24,8 +24,6 @@
#ifndef MAINWORKFLOW_H
#define MAINWORKFLOW_H
#include <QObject>
#include "Singleton.hpp"
#include "AudioClipWorkflow.h"
...
...
@@ -40,6 +38,9 @@ class EffectsEngine;
class
TrackWorkflow
;
class
TrackHandler
;
#include <QObject>
#include <QUuid>
class
MainWorkflow
:
public
QObject
,
public
Singleton
<
MainWorkflow
>
{
Q_OBJECT
...
...
src/Workflow/VideoClipWorkflow.cpp
View file @
741b5378
...
...
@@ -24,6 +24,7 @@
#include "VideoClipWorkflow.h"
#include "MainWorkflow.h"
#include "StackedBuffer.hpp"
#include "LightVideoFrame.h"
VideoClipWorkflow
::
VideoClipWorkflow
(
Clip
*
clip
)
:
ClipWorkflow
(
clip
)
{
...
...
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