1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Fix warnings when ALC_LOOPBACK_CAPTURE_SAMPLES not defined

This commit is contained in:
tux3 2015-02-20 01:55:43 +01:00
parent 302ede28b3
commit 059321d642
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -354,6 +354,9 @@ void Audio::getEchoesToFilter(AudioFilterer* filterer, int framesize)
filterer->passAudioOutput(buf, framesize);
filterer->setEchoDelayMs(5); // This 5ms is configurable I believe
}
#else
Q_UNUSED(filterer);
Q_UNUSED(framesize);
#endif
}
#endif