]> git.sesse.net Git - nageru/blobdiff - glwidget.cpp
Use true peak, not sample peak (EBU R128 compliance).
[nageru] / glwidget.cpp
index 075106aa695b2d582aab561a1faba58ff5b36247..3cd63585633d8bb314376d6600f1de435f82d6b3 100644 (file)
@@ -48,13 +48,7 @@ void GLWidget::initializeGL()
        static std::once_flag flag;
        std::call_once(flag, [this]{
                global_mixer = new Mixer(QGLFormat::toSurfaceFormat(format()));
-               global_mixer->set_audio_level_callback([this](float level_lufs, float peak_db){
-                       global_vu_meter->set_level(level_lufs);
-
-                       char buf[256];
-                       snprintf(buf, sizeof(buf), "%.1f", peak_db);
-                       global_peak_display->setText(buf);
-               });
+               global_mainwindow->mixer_created(global_mixer);
                global_mixer->start();
        });
        global_mixer->set_frame_ready_callback(output, [this]{