summaryrefslogtreecommitdiff
path: root/libavutil/common.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-02-25 19:30:55 +0000
committerMåns Rullgård <mans@mansr.com>2007-02-25 19:30:55 +0000
commit738940e802667f3f661d0ae1ce2f755a9f5cba36 (patch)
treef0235d38b709ceed22593e3503ee502f554a4aa7 /libavutil/common.h
parenteca06097d3386dc196b8654de94208d1180db731 (diff)
remove [U]INT64_C definition
Originally committed as revision 8127 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r--libavutil/common.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index eb531d3d73..c5c88c1902 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -63,11 +63,6 @@
#endif
#endif
-#ifndef INT64_C
-#define INT64_C(c) (c ## LL)
-#define UINT64_C(c) (c ## ULL)
-#endif
-
//rounded divison & shift
#define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
/* assume b>0 */