blob: 9bb629bc0ab89eb97752dff5977e8827f356a659 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- libavutil/common.h.orig 2010-04-26 23:01:38.000000000 +0200
+++ libavutil/common.h 2010-07-10 16:06:27.038027901 +0200
@@ -36,6 +36,10 @@
#include <string.h>
#include "attributes.h"
+#ifndef UINT64_C
+#define UINT64_C(c) (c ## UL)
+#endif
+
//rounded division & shift
#define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
/* assume b>0 */
|