Removed debug messages

This commit is contained in:
Atlante45 2014-08-19 18:30:14 -07:00
parent b028b845f4
commit c21d1a41e5

View file

@ -63,7 +63,6 @@ void Recording::addFrame(int timestamp, RecordingFrame &frame) {
void Recording::addAudioPacket(QByteArray byteArray) {
if (!_audio) {
qDebug() << "Current thread: " << QThread::currentThread();
_audio = new Sound(byteArray);
}
_audio->append(byteArray);
@ -442,7 +441,6 @@ void writeRecordingToFile(RecordingPointer recording, QString filename) {
fileStream << buffer;
}
qDebug() << QThread::currentThread();
fileStream << recording->_audio->getByteArray();
qDebug() << "Wrote " << file.size() << " bytes in " << timer.elapsed();