You are not logged in.
Hello,
All the includes in QtMultimedia such as QAudioFormat seems to throw errors.
When I declare something like this.
#include <QtMultimedia/QAudioFormat>
QAudioFormat format;
it gives
... undefined reference to `QAudioFormat::QAudioFormat()'
Any advice?
Last edited by kaizoku (2010-12-22 01:54:12)
Offline
Have you tried linking the program against libQtMultimedia?
Offline
In your *.pro file link to QtMultimedia like this:
QT += multimedia
Then use qmake and make the project again.
Offline