From 7f534d022e719a2d98aa7f6ac17cf4fcca5d3779 Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Wed, 23 Mar 2022 16:26:46 +1100 Subject: [PATCH] avformat/codec2: remove surplus include 'memory.h' statement on glibc memory.h drags in string.h, but codec2 does not use any str* or mem* functions. additionally, memory.h is not part of the C99 or POSIX standards. Signed-off-by: Marton Balint --- libavformat/codec2.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/codec2.c b/libavformat/codec2.c index cd0521299c..400c5acbdb 100644 --- a/libavformat/codec2.c +++ b/libavformat/codec2.c @@ -21,7 +21,6 @@ #include "config_components.h" -#include #include "libavcodec/codec2utils.h" #include "libavutil/channel_layout.h" #include "libavutil/intreadwrite.h"