Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some files to compile it on Fedora 20 #53

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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