Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion app/client/Services/RadioService/RadioService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions app/fingerprinter/LAV_Source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ extern "C" {

#include <QFile>

#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000

using namespace std;


Expand Down