dtmf: Update dtmfdetect to make it MSVC friendly
authorOlivier Crête <olivier.crete@collabora.co.uk>
Fri, 20 Nov 2009 01:33:07 +0000 (20:33 -0500)
committerOlivier Crête <olivier.crete@collabora.co.uk>
Fri, 20 Nov 2009 01:33:07 +0000 (20:33 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=602465

gst/dtmf/tone_detect.c
gst/dtmf/tone_detect.h

index 4785e51..c3b92ba 100644 (file)
@@ -32,7 +32,6 @@
 */
 
 #include <math.h>
-#include <stdint.h>
 #include <string.h>
 #include <stdio.h>
 #include <time.h>
index 9b11dba..07c482c 100644 (file)
         detriment.
 */
 
+#ifndef __TONE_DETECT_H__
+#define __TONE_DETECT_H__
+
+#include <stdint.h>
+
 typedef struct
 {
     float v2;
@@ -83,4 +88,6 @@ int zap_dtmf_get (dtmf_detect_state_t *s,
               char *buf,
               int max);
 
+#endif /* __TONE_DETECT_H__ */
+
 /*- End of file ------------------------------------------------------------*/