[FFmpeg-devel] [PATCH 02/12] libavutil/common: Add FFABS64U()
Michael Niedermayer
michael at niedermayer.cc
Sun Jan 31 21:18:08 EET 2021
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
doc/APIchanges | 3 +++
libavutil/common.h | 1 +
2 files changed, 4 insertions(+)
diff --git a/doc/APIchanges b/doc/APIchanges
index 1332694820..4753463c90 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -15,6 +15,9 @@ libavutil: 2017-10-21
API changes, most recent first:
+2021-02-xx - xxxxxxxxxx - lavu 56.xx.100 - common.h
+ Add FFABS64U()
+
2021-01-26 - xxxxxxxxxx - lavu 56.64.100 - common.h
Add FFABSU()
diff --git a/libavutil/common.h b/libavutil/common.h
index a60a558b1d..5ccbed90b1 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -87,6 +87,7 @@
* As with many macros, this evaluates its argument twice.
*/
#define FFABSU(a) ((a) <= 0 ? -(unsigned)(a) : (unsigned)(a))
+#define FFABS64U(a) ((a) <= 0 ? -(uint64_t)(a) : (uint64_t)(a))
/**
* Comparator.
--
2.17.1
More information about the ffmpeg-devel
mailing list