aboutsummaryrefslogtreecommitdiff
path: root/image/codecs/indeo/mem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'image/codecs/indeo/mem.cpp')
-rw-r--r--image/codecs/indeo/mem.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/image/codecs/indeo/mem.cpp b/image/codecs/indeo/mem.cpp
index 736b3b4de9..e85a945639 100644
--- a/image/codecs/indeo/mem.cpp
+++ b/image/codecs/indeo/mem.cpp
@@ -132,19 +132,5 @@ uint16 invertBits(uint16 val, int nbits) {
return res;
}
-uint8 avClipUint8(int a) {
- if (a & (~0xFF))
- return (-a) >> 31;
- else
- return a;
-}
-
-unsigned avClipUintp2(int a, int p) {
- if (a & ~((1 << p) - 1))
- return -a >> 31 & ((1 << p) - 1);
- else
- return a;
-}
-
} // End of namespace Indeo
} // End of namespace Image