|
@@ -5,7 +5,7 @@
|
|
|
#include <limits>
|
|
|
|
|
|
ASMixer::ASMixer()
|
|
|
- : m_device("/dev/audio")
|
|
|
+ : m_device("/dev/audio", this)
|
|
|
{
|
|
|
if (!m_device.open(CIODevice::WriteOnly)) {
|
|
|
dbgprintf("Can't open audio device: %s\n", m_device.error_string());
|
|
@@ -20,6 +20,10 @@ ASMixer::ASMixer()
|
|
|
this);
|
|
|
}
|
|
|
|
|
|
+ASMixer::~ASMixer()
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
NonnullRefPtr<ASBufferQueue> ASMixer::create_queue(ASClientConnection& client)
|
|
|
{
|
|
|
LOCKER(m_lock);
|