From eed1d261916170e19618f1bb4e9460625a641e0e Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Wed, 17 Sep 2025 12:47:09 +0500 Subject: [PATCH] engine: client: avi: be more verbose about incompatible ffmpeg libs versions in build-time --- engine/client/avi/avi_ffmpeg.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/client/avi/avi_ffmpeg.h b/engine/client/avi/avi_ffmpeg.h index 042ebc43..b4871b14 100644 --- a/engine/client/avi/avi_ffmpeg.h +++ b/engine/client/avi/avi_ffmpeg.h @@ -38,23 +38,23 @@ GNU General Public License for more details. #define SUPPORTED_SWS_VERSION_MAJOR 8 #if SUPPORTED_AVU_VERSION_MAJOR != LIBAVUTIL_VERSION_MAJOR -#error +#error "unsupported libavutil version" #endif #if SUPPORTED_AVF_VERSION_MAJOR != LIBAVFORMAT_VERSION_MAJOR -#error +#error "unsupported libavformat version" #endif #if SUPPORTED_AVC_VERSION_MAJOR != LIBAVCODEC_VERSION_MAJOR -#error +#error "unsupported libavcodec version" #endif #if SUPPORTED_SWR_VERSION_MAJOR != LIBSWRESAMPLE_VERSION_MAJOR -#error +#error "unsupported libswresample version" #endif #if SUPPORTED_SWS_VERSION_MAJOR != LIBSWSCALE_VERSION_MAJOR -#error +#error "unsupported libswscale version" #endif // libavutil