diff options
author | Martin Storsjö <martin@martin.st> | 2012-08-16 14:24:26 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-08-16 16:47:02 +0300 |
commit | 7ebe3962f399dcddc852bda92e595b0152c3701d (patch) | |
tree | 01f695f51b5198df00550fd13769d3cc632f1ad0 /libavcodec/libschroedingerdec.c | |
parent | 232e35de2e139cc2d34ed67a34dedbbc5da56052 (diff) | |
download | ffmpeg-7ebe3962f399dcddc852bda92e595b0152c3701d.tar.gz |
Add missing includes for code relying on external libraries
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/libschroedingerdec.c')
-rw-r--r-- | libavcodec/libschroedingerdec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/libschroedingerdec.c b/libavcodec/libschroedingerdec.c index 7d942e77d0..110e8d0ae1 100644 --- a/libavcodec/libschroedingerdec.c +++ b/libavcodec/libschroedingerdec.c @@ -27,8 +27,12 @@ * (http://dirac.sourceforge.net/specification.html). */ +#include <string.h> + #include "libavutil/imgutils.h" +#include "libavutil/internal.h" #include "libavutil/intreadwrite.h" +#include "libavutil/mem.h" #include "avcodec.h" #include "libschroedinger.h" |