diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-23 14:06:58 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-07 00:42:10 +0200 |
commit | e3b355c0be85ec47ee8b3d7790ad4c4fa26827c0 (patch) | |
tree | a4cd74db661bc69b42348cd965326dffd6c2d6f4 /libavutil/dict.c | |
parent | c3e3ea3c8846486dfe81b3761584f7c98ada9c75 (diff) | |
download | ffmpeg-e3b355c0be85ec47ee8b3d7790ad4c4fa26827c0.tar.gz |
avutil/mem: Don't include avutil.h
It is not necessary at all. So remove it.
This also breaks an inclusion cycle mem.h->avutil.h->common.h->mem.h.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil/dict.c')
-rw-r--r-- | libavutil/dict.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/dict.c b/libavutil/dict.c index f673977a98..7f23d5336a 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -18,13 +18,15 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <inttypes.h> +#include <stdio.h> #include <string.h> #include "avassert.h" #include "avstring.h" #include "dict.h" #include "dict_internal.h" -#include "internal.h" +#include "error.h" #include "mem.h" #include "time_internal.h" #include "bprint.h" |