diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-02 17:52:14 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-07 00:48:50 +0200 |
commit | 8ba7deb6c094428a73fbc60b5888602bd9b574ec (patch) | |
tree | c53e78f0882e487706ac7b43af0bff0c7e381b65 | |
parent | e3b355c0be85ec47ee8b3d7790ad4c4fa26827c0 (diff) | |
download | ffmpeg-8ba7deb6c094428a73fbc60b5888602bd9b574ec.tar.gz |
avutil/avstring: Remove obsolete version.h inclusion
Forgotten in 30e1e7e0f324d7bf66b3b8583a3e49fd3cd101b2.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavutil/avstring.c | 1 | ||||
-rw-r--r-- | libavutil/avstring.h | 1 | ||||
-rw-r--r-- | libavutil/spherical.c | 1 |
3 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/avstring.c b/libavutil/avstring.c index e460b5be7f..8751ce5576 100644 --- a/libavutil/avstring.c +++ b/libavutil/avstring.c @@ -32,7 +32,6 @@ #include "bprint.h" #include "error.h" #include "macros.h" -#include "version.h" int av_strstart(const char *str, const char *pfx, const char **ptr) { diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 9b187e8d92..fc095349d2 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -24,7 +24,6 @@ #include <stddef.h> #include <stdint.h> #include "attributes.h" -#include "version.h" /** * @addtogroup lavu_string diff --git a/libavutil/spherical.c b/libavutil/spherical.c index ed66344a2f..800d3459a5 100644 --- a/libavutil/spherical.c +++ b/libavutil/spherical.c @@ -19,6 +19,7 @@ */ #include "avstring.h" +#include "macros.h" #include "mem.h" #include "spherical.h" |