removed redundant debug messages

This commit is contained in:
itsmattkc
2019-01-25 13:22:10 +11:00
parent 229d01a400
commit 3d8a2daffc
4 changed files with 0 additions and 7 deletions
-2
View File
@@ -385,8 +385,6 @@ void Viewer::play(bool in_to_out) {
set_playpause_icon(false);
start_msecs = QDateTime::currentMSecsSinceEpoch();
qDebug() << "play called";
timer_update();
}
}
-1
View File
@@ -436,7 +436,6 @@ void cache_audio_worker(Clip* c, bool scrubbing, QVector<Clip*>& nests, int play
}
}
qDebug() << "hello?";
QMetaObject::invokeMethod(panel_footage_viewer, "play_wake", Qt::QueuedConnection);
QMetaObject::invokeMethod(panel_sequence_viewer, "play_wake", Qt::QueuedConnection);
}
-3
View File
@@ -438,8 +438,6 @@ GLuint compose_sequence(Viewer* viewer,
motion_blur_prog++;*/
}
} else {
qDebug() << "ra loc";
if (render_audio || (config.enable_audio_scrubbing && audio_scrub && seq->playhead > c->timeline_in)) {
if (c->media != nullptr && c->media->get_type() == MEDIA_TYPE_SEQUENCE) {
nests.append(c);
@@ -488,7 +486,6 @@ GLuint compose_sequence(Viewer* viewer,
}
void compose_audio(Viewer* viewer, Sequence* seq, bool render_audio, int playback_speed) {
qDebug() << "ca called";
QVector<Clip*> nests;
bool texture_failed;
compose_sequence(viewer, nullptr, seq, nests, false, render_audio, nullptr, texture_failed, audio_rendering, playback_speed);
-1
View File
@@ -218,7 +218,6 @@ void ViewerWidget::initializeGL() {
}
void ViewerWidget::frame_update() {
qDebug() << "frame update called";
if (viewer->seq != nullptr) {
bool render_audio = (viewer->playing || audio_rendering);