diff options
author | Michael Niedermayer <[email protected]> | 2005-04-20 10:05:15 +0000 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2005-04-20 10:05:15 +0000 |
commit | ee572c5482d9aacbf2cfaf3a6b717c32ba1b5ac5 (patch) | |
tree | 92764fd1a1e25e4ffcc8367e0d6ac9ce6387d49e /libavcodec/common.h | |
parent | f707a5ebba734597b1ff0810931b55b630077ab3 (diff) |
remove duplicate clip to 8bit function
Originally committed as revision 4143 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.h')
-rw-r--r-- | libavcodec/common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index 4d72d88500..5a47c4a3c8 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -501,8 +501,6 @@ tend= rdtsc();\ #define STOP_TIMER(id) {} #endif -#define CLAMP_TO_8BIT(d) ((d > 0xff) ? 0xff : (d < 0) ? 0 : d) - /* avoid usage of various functions */ #define malloc please_use_av_malloc #define free please_use_av_free |