removed redundant debug messages
This commit is contained in:
@@ -385,8 +385,6 @@ void Viewer::play(bool in_to_out) {
|
||||
set_playpause_icon(false);
|
||||
start_msecs = QDateTime::currentMSecsSinceEpoch();
|
||||
|
||||
qDebug() << "play called";
|
||||
|
||||
timer_update();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user