summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-12-31 00:12:53 -0800
committerDavid Schleef <ds@schleef.org>2010-12-31 00:37:30 -0800
commit68493aadab267a096391587cd6b596cb20318038 (patch)
tree084cbd7f60bf0f54f9d7c88e5bfee55322f0451b
parent272086b121297cdbcaeef02fa133ef5f20f11163 (diff)
dtmf: Fix build failure caused by previous commit
-rw-r--r--gst/dtmf/tone_detect.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/dtmf/tone_detect.c b/gst/dtmf/tone_detect.c
index 8c1b5ad95..73a73ee98 100644
--- a/gst/dtmf/tone_detect.c
+++ b/gst/dtmf/tone_detect.c
@@ -38,8 +38,12 @@
38#include <fcntl.h> 38#include <fcntl.h>
39#include "tone_detect.h" 39#include "tone_detect.h"
40 40
41#ifndef FALSE
41#define FALSE 0 42#define FALSE 0
43#endif
44#ifndef TRUE
42#define TRUE (!FALSE) 45#define TRUE (!FALSE)
46#endif
43 47
44//#define USE_3DNOW 48//#define USE_3DNOW
45 49