X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Flib%2Faudio%2FaudioStreamInfo.cpp;h=dcd9989a3c6c36ce0061623f0f50f2bee2a2967e;hb=f41d1de9f855972a98ded4ce11394ca11ad5b32e;hp=1a172277ff675b51c2ea7db34cc262b67397836d;hpb=82160d2172d631c106edb75e7c946aa810cf47d0;p=kdenlive diff --git a/src/lib/audio/audioStreamInfo.cpp b/src/lib/audio/audioStreamInfo.cpp index 1a172277..dcd9989a 100644 --- a/src/lib/audio/audioStreamInfo.cpp +++ b/src/lib/audio/audioStreamInfo.cpp @@ -10,8 +10,8 @@ the Free Software Foundation, either version 3 of the License, or #include "audioStreamInfo.h" +#include #include -#include #include AudioStreamInfo::AudioStreamInfo(Mlt::Producer *producer, int audioStreamIndex) : @@ -73,11 +73,9 @@ const QString& AudioStreamInfo::codecName(bool longName) const void AudioStreamInfo::dumpInfo() const { - std::cout << "Info for audio stream " << m_audioStreamIndex << std::endl - << "\tCodec: " << m_codecLongName.toLocal8Bit().data() << " (" << m_codecName.toLocal8Bit().data() << ")" << std::endl - << "\tChannels: " << m_channels << std::endl - << "\tSampling rate: " << m_samplingRate << std::endl - << "\tBit rate: " << m_bitRate << std::endl - ; - + qDebug() << "Info for audio stream " << m_audioStreamIndex + << "\n\tCodec: " << m_codecLongName.toLocal8Bit().data() << " (" << m_codecName.toLocal8Bit().data() << ")" + << "\n\tChannels: " << m_channels + << "\n\tSampling rate: " << m_samplingRate + << "\n\tBit rate: " << m_bitRate; }