mirror of https://git.ffmpeg.org/ffmpeg.git
libavutil/common: Add FFABS64U()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0791a515d3
commit
1bda9bb68a
|
@ -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()
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
*/
|
||||
|
||||
#define LIBAVUTIL_VERSION_MAJOR 56
|
||||
#define LIBAVUTIL_VERSION_MINOR 64
|
||||
#define LIBAVUTIL_VERSION_MINOR 65
|
||||
#define LIBAVUTIL_VERSION_MICRO 100
|
||||
|
||||
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
||||
|
|
Loading…
Reference in New Issue