From 21fbc41214b8c61d3627e45c22771ded7943d86d Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Sun, 6 Dec 2015 20:27:40 -0800 Subject: cmdutils: use version accessor macros Signed-off-by: Reynaldo H. Verdejo Pinochet --- cmdutils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cmdutils.c') diff --git a/cmdutils.c b/cmdutils.c index 41daa9565d..ceec2d1966 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -52,6 +52,7 @@ #include "libavutil/opt.h" #include "libavutil/cpu.h" #include "libavutil/ffversion.h" +#include "libavutil/version.h" #include "cmdutils.h" #if CONFIG_NETWORK #include "libavformat/network.h" @@ -1058,7 +1059,8 @@ static int warned_cfg = 0; LIB##LIBNAME##_VERSION_MAJOR, \ LIB##LIBNAME##_VERSION_MINOR, \ LIB##LIBNAME##_VERSION_MICRO, \ - version >> 16, version >> 8 & 0xff, version & 0xff); \ + AV_VERSION_MAJOR(version), AV_VERSION_MINOR(version),\ + AV_VERSION_MICRO(version)); \ } \ if (flags & SHOW_CONFIG) { \ const char *cfg = libname##_configuration(); \ -- cgit v1.2.3