18dd10fbb7
Mixxx is software for DJ'ing. You can use wave based audio files, Ogg Vorbis and MP3 files as audio input. Mixxx can be controlled through the GUI and with external controllers including MIDI devices, joysticks and more. PR: ports/68345 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
11 lines
382 B
C++
11 lines
382 B
C++
--- src/soundsourcesndfile.cpp.orig Fri Jun 25 18:59:18 2004
|
|
+++ src/soundsourcesndfile.cpp Fri Jun 25 19:03:08 2004
|
|
@@ -17,6 +17,8 @@
|
|
#include "soundsourcesndfile.h"
|
|
#include <qstring.h>
|
|
#include "trackinfoobject.h"
|
|
+#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
+#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
/*
|
|
Class for reading files using libsndfile
|
|
*/
|