[xiph-commits] r16649 - trunk/ogg/include/ogg

ds at svn.xiph.org ds at svn.xiph.org
Sat Oct 24 17:49:58 PDT 2009


Author: ds
Date: 2009-10-24 17:49:58 -0700 (Sat, 24 Oct 2009)
New Revision: 16649

Modified:
   trunk/ogg/include/ogg/os_types.h
Log:
Add types for TI c6x compiler


Modified: trunk/ogg/include/ogg/os_types.h
===================================================================
--- trunk/ogg/include/ogg/os_types.h	2009-10-21 21:36:38 UTC (rev 16648)
+++ trunk/ogg/include/ogg/os_types.h	2009-10-25 00:49:58 UTC (rev 16649)
@@ -129,6 +129,15 @@
    typedef unsigned int ogg_uint32_t;
    typedef long long int ogg_int64_t;
 
+#elif defined(__TMS320C6X__)
+
+   /* TI C64x compiler */
+   typedef signed short ogg_int16_t;
+   typedef unsigned short ogg_uint16_t;
+   typedef signed int ogg_int32_t;
+   typedef unsigned int ogg_uint32_t;
+   typedef long long int ogg_int64_t;
+
 #else
 
 #  include <sys/types.h>



More information about the commits mailing list