Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.1 / libzmpeg3 / a52dec-0.7.3 / vc++ / inttypes.h
diff --git a/cinelerra-5.1/libzmpeg3/a52dec-0.7.3/vc++/inttypes.h b/cinelerra-5.1/libzmpeg3/a52dec-0.7.3/vc++/inttypes.h
new file mode 100644 (file)
index 0000000..5cd0239
--- /dev/null
@@ -0,0 +1,13 @@
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed int int32_t;
+#ifdef ARCH_X86
+typedef signed long long int64_t;
+#endif
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+#ifdef ARCH_X86
+typedef unsigned long long uint64_t;
+#endif