diff --git a/README.md b/README.md index 239bb8e72..2fbff11a3 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ software to scrobble your iPod. # Build Instructions - qmake -r + qmake-qt4 -r make -j4 `make install` currently does not work on Windows or OSX. diff --git a/app/client/Services/RadioService/RadioService.cpp b/app/client/Services/RadioService/RadioService.cpp index 05f22c896..10094b60a 100644 --- a/app/client/Services/RadioService/RadioService.cpp +++ b/app/client/Services/RadioService/RadioService.cpp @@ -307,7 +307,7 @@ RadioService::mute() void RadioService::onPhononStateChanged( Phonon::State newstate, Phonon::State oldstate ) { - qDebug() << oldstate << " -> " << newstate; + qDebug() << (int)oldstate << " -> " << (int)newstate; if (m_mediaObject == 0) { qDebug() << "m_mediaObject is null!"; return; diff --git a/app/fingerprinter/LAV_Source.cpp b/app/fingerprinter/LAV_Source.cpp index 62d5d62b2..99b202cf6 100644 --- a/app/fingerprinter/LAV_Source.cpp +++ b/app/fingerprinter/LAV_Source.cpp @@ -42,6 +42,8 @@ extern "C" { #include +#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 + using namespace std;