diff options
author | Nicolas George <george@nsup.org> | 2023-04-26 14:29:29 +0200 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2023-07-12 15:35:37 +0200 |
commit | ca9ec4e7ed64e222b2045e66b1000c7f88ea696e (patch) | |
tree | a4661bd394270930c7253e42f11eb23f408a3d20 | |
parent | cf7ed01938a4d8b2ccd28f1fadacd79103e54eed (diff) | |
download | ffmpeg-ca9ec4e7ed64e222b2045e66b1000c7f88ea696e.tar.gz |
lavu/avassert: include config.h
Fix setting the assert level.
-rw-r--r-- | libavutil/avassert.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/avassert.h b/libavutil/avassert.h index 51e462bbae..1895fb7551 100644 --- a/libavutil/avassert.h +++ b/libavutil/avassert.h @@ -28,6 +28,9 @@ #define AVUTIL_AVASSERT_H #include <stdlib.h> +#ifdef HAVE_AV_CONFIG_H +# include "config.h" +#endif #include "log.h" #include "macros.h" |