I believe this is the same bug as #388064,
see <http://www.last.fm/forum/34905/_/149260>.
The client misuses the underlying audio library;
it tells it that the supplied PCM will have the
hardware word size rather than the 16bits it
actually does. (I'm not a Debian user, but upstream
has not acknowledged this problem, so you may as
well have the fix.)
Index: src/rtaudioplayback/rtaudioplayback.cpp
===================================================================
--- src/rtaudioplayback/rtaudioplayback.cpp (revision 2115)
+++ src/rtaudioplayback/rtaudioplayback.cpp (working copy)
@@ -212,6 +212,8 @@
format = RTAUDIO_SINT16;
}
+ format = RTAUDIO_SINT16;
+
m_audio = new RtAudio( card, channels, 0, 0, format, sampleRate,
&bufferSize, nBuffers, api );
}
catch ( RtError &error )
--
imalone
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]