mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
10 lines
237 B
C++
10 lines
237 B
C++
#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);
|
|
}
|
|
|