mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-16 19:27:20 +02:00
Removed debug messages
This commit is contained in:
parent
b028b845f4
commit
c21d1a41e5
1 changed files with 0 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue