In a nutshell, PhatBeat is a cross-platform (Linux and Windows) beat counter for use by collectors, producers, DJs, and others interested in beat-oriented music. For now it requires users to tap in the beat during listening, after which it calculates and displays the track's BPM and the size of a measure in seconds. PR: ports/68198 Submitted by: Jean-Yves Lefort <jylefort@brutele.be>
12 lines
289 B
C++
12 lines
289 B
C++
--- phatbeat.cpp.orig Tue Jun 22 02:34:13 2004
|
|
+++ phatbeat.cpp Tue Jun 22 02:35:53 2004
|
|
@@ -24,6 +24,9 @@
|
|
#include "BeatCounter.h"
|
|
using namespace std;
|
|
|
|
+#include <sys/types.h>
|
|
+#include <sys/time.h>
|
|
+#include <string.h>
|
|
#include <stdlib.h>
|
|
using namespace std;
|
|
#include <stdio.h>
|