summaryrefslogtreecommitdiffstats
path: root/libavcodec/common.h
diff options
context:
space:
mode:
authorMichael Niedermayer <[email protected]>2005-04-20 10:05:15 +0000
committerMichael Niedermayer <[email protected]>2005-04-20 10:05:15 +0000
commitee572c5482d9aacbf2cfaf3a6b717c32ba1b5ac5 (patch)
tree92764fd1a1e25e4ffcc8367e0d6ac9ce6387d49e /libavcodec/common.h
parentf707a5ebba734597b1ff0810931b55b630077ab3 (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.h2
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