diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-02 19:10:49 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-02 19:10:49 +0100 |
commit | ce451c6b3a49c741bc3a7a5f198c3d8657796d29 (patch) | |
tree | 077a5e8ea24be9fd33f891fe242aaf9dce242535 /libavformat/id3v2enc.c | |
parent | eba0e289ae72fbbb13d5dedd80e7678a201d6e6e (diff) | |
download | ffmpeg-ce451c6b3a49c741bc3a7a5f198c3d8657796d29.tar.gz |
id3v2enc: include strings.h for strcasecmp()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/id3v2enc.c')
-rw-r--r-- | libavformat/id3v2enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2enc.c b/libavformat/id3v2enc.c index d50a751b26..8ed1c7b29f 100644 --- a/libavformat/id3v2enc.c +++ b/libavformat/id3v2enc.c @@ -19,7 +19,7 @@ */ #include <stdint.h> - +#include <strings.h> #include "libavutil/avstring.h" #include "libavutil/dict.h" #include "libavutil/intreadwrite.h" |