aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-02-20 19:34:54 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-05-14 12:20:15 +0200
commitbf780cbd991dc4d5aa215cd71b538ca3f8bcb35a (patch)
treee1fc6532642aa2147cf15e733a88b67348cce441 /libavutil/internal.h
parent3dd0166bde6ef2ad4bf8f970acb46acd1935e669 (diff)
downloadffmpeg-bf780cbd991dc4d5aa215cd71b538ca3f8bcb35a.tar.gz
Add CHECK/SUINT code
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 4614bf2caf67a89c2d833b3368f325eab54582bc) (cherry picked from commit e8d4eacc07c61ae24f48451073a2620d8d257d33) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index e995af97e4..7b859ed60f 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -30,6 +30,10 @@
# define NDEBUG
#endif
+#if defined(DEBUG) && !defined(CHECKED)
+# define CHECKED
+#endif
+
#include <limits.h>
#include <stdint.h>
#include <stddef.h>
@@ -258,6 +262,16 @@ void avpriv_request_sample(void *avc,
# define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
#endif
+// For debuging we use signed operations so overflows can be detected (by ubsan)
+// For production we use unsigned so there are no undefined operations
+#ifdef CHECKED
+#define SUINT int
+#define SUINT32 int32_t
+#else
+#define SUINT unsigned
+#define SUINT32 uint32_t
+#endif
+
/**
* Clip and convert a double value into the long long amin-amax range.
* This function is needed because conversion of floating point to integers when