just more prints

This commit is contained in:
Alexandre Quessy
2014-04-26 08:50:10 -04:00
parent 4809b447d7
commit b041c8cbdd
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -76,6 +76,7 @@ int Video::getHeight() const
}
void Video::update() {
//std::cout << "XXX Video::update()!" << std::endl;
impl_->runVideo();
}
+3 -1
View File
@@ -19,6 +19,7 @@
*/
#include "VideoImpl.h"
#include <cstring>
#include <iostream>
// -------- private implementation of VideoImpl -------
@@ -421,6 +422,7 @@ void VideoImpl::runVideo() {
_videoNewBufferCounter--;
std::cout << "VideoImpl::runVideo: read frame #" << _videoNewBufferCounter << std::endl;
}
_postRun();
@@ -596,7 +598,7 @@ void VideoImpl::_setReady(bool ready)
}
void VideoImpl::_setFinished(bool finished) {
qDebug() << "Clip " << (finished ? "finished" : "not finished") << endl;
// qDebug() << "Clip " << (finished ? "finished" : "not finished") << endl;
}
void VideoImpl::gstPadAddedCallback(GstElement *src, GstPad *newPad, VideoImpl::GstPadHandlerData* data) {