diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-23 11:31:02 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-24 12:56:49 +0100 |
commit | 0a1a8fcd56bf62da0d4b32da3e915860ba96684e (patch) | |
tree | 9e384464f9e1129296afc0c7026d850424c6bc67 /libavutil/fifo.c | |
parent | 99b5956af154547b3ff306041e951008bcb8ea98 (diff) | |
download | ffmpeg-0a1a8fcd56bf62da0d4b32da3e915860ba96684e.tar.gz |
avutil/fifo: Don't include avutil.h
Reviewed-by: Martin Storsjö <martin@martin.st>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil/fifo.c')
-rw-r--r-- | libavutil/fifo.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 09c984143f..51a5af6f39 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -21,10 +21,13 @@ */ #include <stdint.h> +#include <string.h> #include "avassert.h" -#include "common.h" +#include "error.h" #include "fifo.h" +#include "macros.h" +#include "mem.h" // by default the FIFO can be auto-grown to 1MB #define AUTO_GROW_DEFAULT_BYTES (1024 * 1024) |