summaryrefslogtreecommitdiffstats
path: root/thirdparties/android/include/g729b/typedef.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparties/android/include/g729b/typedef.h')
-rw-r--r--thirdparties/android/include/g729b/typedef.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/thirdparties/android/include/g729b/typedef.h b/thirdparties/android/include/g729b/typedef.h
new file mode 100644
index 0000000..7408f8f
--- /dev/null
+++ b/thirdparties/android/include/g729b/typedef.h
@@ -0,0 +1,35 @@
+/*
+ ITU-T G.729A Speech Coder ANSI-C Source Code
+ Version 1.1 Last modified: September 1996
+
+ Copyright (c) 1996,
+ AT&T, France Telecom, NTT, Universite de Sherbrooke, Lucent Technologies
+ All rights reserved.
+*/
+
+/* WARNING: Make sure that the proper flags are defined for your system */
+
+/*
+ Types definitions
+*/
+
+#if defined(__BORLANDC__) || defined (__WATCOMC__) || defined(_MSC_VER) || defined(__ZTC__) || defined(__HIGHC__)
+typedef long int Word32 ;
+typedef short int Word16 ;
+typedef short int Flag ;
+#elif defined( __sun)
+typedef short Word16;
+typedef long Word32;
+typedef int Flag;
+#elif defined(__unix__) || defined(__unix)
+typedef short Word16;
+typedef int Word32;
+typedef int Flag;
+#elif defined(VMS) || defined(__VMS)
+typedef short Word16;
+typedef long Word32;
+typedef int Flag;
+#else
+#error COMPILER NOT TESTED typedef.h needs to be updated, see readme
+#endif
+
OpenPOWER on IntegriCloud