diff options
author | Måns Rullgård <mans@mansr.com> | 2007-02-25 19:30:55 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-02-25 19:30:55 +0000 |
commit | 738940e802667f3f661d0ae1ce2f755a9f5cba36 (patch) | |
tree | f0235d38b709ceed22593e3503ee502f554a4aa7 /libavutil/common.h | |
parent | eca06097d3386dc196b8654de94208d1180db731 (diff) | |
download | ffmpeg-738940e802667f3f661d0ae1ce2f755a9f5cba36.tar.gz |
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.h | 5 |
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 */ |