Add some more PRIfooNN crap so it builds again here. Why can't ppl add defaults when...
authorFrançois Revol <revol@free.fr>
Tue, 13 Dec 2005 20:24:31 +0000 (20:24 +0000)
committerFrançois Revol <revol@free.fr>
Tue, 13 Dec 2005 20:24:31 +0000 (20:24 +0000)
Originally committed as revision 4741 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/common.h

index 20cabaf..5b2729c 100644 (file)
 #   endif /* other OS */
 #endif /* EMULATE_INTTYPES */
 
+#ifndef PRId64
+#define PRId64 "lld"
+#endif
+
 #ifndef PRIu64
-#define PRIu64 "lld"
+#define PRIu64 "llu"
+#endif
+
+#ifndef PRIx64
+#define PRIx64 "llx"
+#endif
+
+#ifndef PRId32
+#define PRId32 "d"
+#endif
+
+#ifndef PRIdFAST16
+#define PRIdFAST16 PRId32
+#endif
+
+#ifndef PRIdFAST32
+#define PRIdFAST32 PRId32
 #endif
 
 #ifndef INT16_MIN