improve physical structure

This commit is contained in:
sirhc808
2019-07-02 12:45:05 -05:00
parent 27d4471cde
commit 1f57ba5fec
28 changed files with 39 additions and 36 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "AudioDevice.hpp"
bool AudioDevice::initialize (OpenMode mode, Channel channel)
{
m_channel = channel;
// open and ensure we are unbuffered if possible
return QIODevice::open (mode | QIODevice::Unbuffered);
}