]> git.sesse.net Git - kdenlive/blobdiff - src/colorcorrection/waveformgenerator.cpp
Vectorscope:
[kdenlive] / src / colorcorrection / waveformgenerator.cpp
index 21d4b9cc25a9d3282a2cbccfffd09c1ac2a685c0..f1ea311509857420fcedcda9dee98eb08b7f304b 100644 (file)
@@ -11,7 +11,6 @@
 #include <cmath>
 
 #include <QColor>
-#include <QDebug>
 #include <QImage>
 #include <QPainter>
 #include <QSize>
@@ -68,7 +67,7 @@ QImage WaveformGenerator::calculateWaveform(const QSize &waveformSize, const QIm
         // Must be a float because the acceleration factor can be high, leading to <1 expected px per px.
         const float pixelDepth = (float)((byteCount>>2) / accelFactor)/(ww*wh);
         const float gain = 255/(8*pixelDepth);
-        qDebug() << "Pixel depth: expected " << pixelDepth << "; Gain: using " << gain << " (acceleration: " << accelFactor << "x)";
+        //qDebug() << "Pixel depth: expected " << pixelDepth << "; Gain: using " << gain << " (acceleration: " << accelFactor << "x)";
 
 
         // Subtract 1 from sizes because we start counting from 0.