diff options
author | Peter Ross <pross@xvid.org> | 2022-03-23 16:26:46 +1100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2022-04-09 21:05:18 +0200 |
commit | 7f534d022e719a2d98aa7f6ac17cf4fcca5d3779 (patch) | |
tree | 10dce8608ee27d99b65347b5413bc72c2a96e0f0 /libavformat/codec2.c | |
parent | ad063e6e10e19b0e1d3d59825179870bcdd9685e (diff) | |
download | ffmpeg-7f534d022e719a2d98aa7f6ac17cf4fcca5d3779.tar.gz |
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 <cus@passwd.hu>
Diffstat (limited to 'libavformat/codec2.c')
-rw-r--r-- | libavformat/codec2.c | 1 |
1 files changed, 0 insertions, 1 deletions
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 <memory.h> #include "libavcodec/codec2utils.h" #include "libavutil/channel_layout.h" #include "libavutil/intreadwrite.h" |