[vlmc-devel] commit: ClipWorkflow: Removing useless attribute. (Hugo Beauzee-Luyssen )
git at videolan.org
git at videolan.org
Wed Apr 7 16:59:42 CEST 2010
vlmc | branch: master | Hugo Beauzee-Luyssen <beauze.h at gmail.com> | Wed Apr 7 16:43:51 2010 +0200| [70c3841bcdf84e32d2bf47888a76b5d12c62be00] | committer: Hugo Beauzee-Luyssen
ClipWorkflow: Removing useless attribute.
> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=70c3841bcdf84e32d2bf47888a76b5d12c62be00
---
src/Workflow/ClipWorkflow.cpp | 2 --
src/Workflow/ClipWorkflow.h | 1 -
2 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/src/Workflow/ClipWorkflow.cpp b/src/Workflow/ClipWorkflow.cpp
index 050ce99..209acb4 100644
--- a/src/Workflow/ClipWorkflow.cpp
+++ b/src/Workflow/ClipWorkflow.cpp
@@ -41,7 +41,6 @@ ClipWorkflow::ClipWorkflow( Clip::Clip* clip ) :
{
m_stateLock = new QReadWriteLock;
m_initWaitCond = new WaitCondition;
- m_pausingStateWaitCond = new WaitCondition;
m_renderLock = new QMutex;
m_renderWaitCond = new QWaitCondition;
}
@@ -50,7 +49,6 @@ ClipWorkflow::~ClipWorkflow()
{
delete m_renderWaitCond;
delete m_renderLock;
- delete m_pausingStateWaitCond;
delete m_initWaitCond;
delete m_stateLock;
}
diff --git a/src/Workflow/ClipWorkflow.h b/src/Workflow/ClipWorkflow.h
index 150067f..bbdcc97 100644
--- a/src/Workflow/ClipWorkflow.h
+++ b/src/Workflow/ClipWorkflow.h
@@ -216,7 +216,6 @@ class ClipWorkflow : public QObject
private:
WaitCondition *m_initWaitCond;
- WaitCondition *m_pausingStateWaitCond;
/**
* \brief Used by the trackworkflow to query a clipworkflow resync.
*
More information about the Vlmc-devel
mailing list