Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
5.10.0 Alpha
-
None
Description
Using pulseaudio noise is heard when playing a sample with 24 bit frames.
#include <QCoreApplication> #include <QSoundEffect> int main(int argc, char **argv) { QCoreApplication app(argc, argv); QSoundEffect sound; sound.setSource(QUrl::fromLocalFile(argv[1])); sound.play(); return app.exec(); }