diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-22 23:34:13 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-25 12:28:22 +0100 |
commit | dc0c70e018f6b04488333e7e26ec26359e614e4e (patch) | |
tree | 26efde7d1c3fa2ab98cb0b170bc6b0c6e76421a0 | |
parent | aa499568afc01d59215eef7e5b14b949a9671afc (diff) | |
download | ffmpeg-dc0c70e018f6b04488333e7e26ec26359e614e4e.tar.gz |
avcodec: add missing includes
-rw-r--r-- | libavcodec/ac3tab.c | 2 | ||||
-rw-r--r-- | libavcodec/h261data.c | 1 | ||||
-rw-r--r-- | libavcodec/mjpeg2jpeg_bsf.c | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/ac3tab.c b/libavcodec/ac3tab.c index ebcfb0b921..3cd07f9e4b 100644 --- a/libavcodec/ac3tab.c +++ b/libavcodec/ac3tab.c @@ -25,6 +25,8 @@ */ #include "libavutil/channel_layout.h" +#include "libavutil/mem.h" + #include "avcodec.h" #include "ac3tab.h" diff --git a/libavcodec/h261data.c b/libavcodec/h261data.c index eb8e64a5ce..a81ccdfef9 100644 --- a/libavcodec/h261data.c +++ b/libavcodec/h261data.c @@ -26,6 +26,7 @@ #include <stdint.h> +#include "mpegutils.h" #include "rl.h" #include "h261.h" diff --git a/libavcodec/mjpeg2jpeg_bsf.c b/libavcodec/mjpeg2jpeg_bsf.c index ec36589cf8..59734c9bf4 100644 --- a/libavcodec/mjpeg2jpeg_bsf.c +++ b/libavcodec/mjpeg2jpeg_bsf.c @@ -25,6 +25,10 @@ */ #include <string.h> + +#include "libavutil/error.h" +#include "libavutil/mem.h" + #include "avcodec.h" #include "mjpeg.h" |