diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-23 11:42:54 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-24 12:56:49 +0100 |
commit | eaba16ba704057336fc696949b178489cb36f812 (patch) | |
tree | 7fc5bd62cf418f5e6f91cd93890e3b29525e9121 | |
parent | 0a1a8fcd56bf62da0d4b32da3e915860ba96684e (diff) | |
download | ffmpeg-eaba16ba704057336fc696949b178489cb36f812.tar.gz |
avutil/file: Don't include avutil.h
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavutil/file.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/file.h b/libavutil/file.h index 3ef4a6022c..8ec210e783 100644 --- a/libavutil/file.h +++ b/libavutil/file.h @@ -19,9 +19,10 @@ #ifndef AVUTIL_FILE_H #define AVUTIL_FILE_H +#include <stddef.h> #include <stdint.h> -#include "avutil.h" +#include "attributes.h" /** * @file |