Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
bdf7fb90
Commit
bdf7fb90
authored
Aug 15, 2009
by
Hugo Beauzee-Luyssen
Browse files
Removed debug
parent
fd574379
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/LibVLCpp/VLCMediaPlayer.cpp
View file @
bdf7fb90
...
...
@@ -85,11 +85,11 @@ void MediaPlayer::callbacks( const libvlc_event_t* ev
switch
(
event
->
type
)
{
case
libvlc_MediaPlayerPlaying
:
qDebug
()
<<
"Media player playing"
;
//
qDebug() << "Media player playing";
self
->
emit
playing
();
break
;
case
libvlc_MediaPlayerPaused
:
qDebug
()
<<
"Media player paused"
;
//
qDebug() << "Media player paused";
self
->
emit
paused
();
break
;
case
libvlc_MediaPlayerStopped
:
...
...
src/Workflow/TrackWorkflow.cpp
View file @
bdf7fb90
...
...
@@ -116,7 +116,6 @@ void TrackWorkflow::renderClip( ClipWorkflow* cw, qint64 currentFrame,
}
else
if
(
cw
->
getState
()
==
ClipWorkflow
::
Stopped
)
{
qDebug
()
<<
"Rendering a stopped clip. m_paused =="
<<
m_paused
;
cw
->
getStateLock
()
->
unlock
();
cw
->
initialize
();
cw
->
startRender
(
m_paused
);
...
...
@@ -129,7 +128,6 @@ void TrackWorkflow::renderClip( ClipWorkflow* cw, qint64 currentFrame,
else
if
(
cw
->
getState
()
==
ClipWorkflow
::
Ready
||
cw
->
getState
()
==
ClipWorkflow
::
Initializing
)
{
qDebug
()
<<
"Rendering a ready clip"
;
//If the state is Initializing, then the workflow will wait.
//Otherwise, it will start directly.
cw
->
getStateLock
()
->
unlock
();
...
...
src/renderer/WorkflowRenderer.cpp
View file @
bdf7fb90
...
...
@@ -277,7 +277,6 @@ void WorkflowRenderer::__videoPlaying()
{
m_paused
=
false
;
m_pausedMediaPlayer
=
false
;
qDebug
()
<<
"Emmiting playing"
;
emit
playing
();
}
}
...
...
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