summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-03-25 19:38:43 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-03-25 19:39:00 +0100
commit8f20e3d4dfe5d54e36113e679bd1350e4550bc4d (patch)
treeb6f12b74cfb5d2a136ea71b61e0b36e52e47c933
parent41e7e46cac507e993af6d656c8d3672ba3f9e304 (diff)
parentdc0c70e018f6b04488333e7e26ec26359e614e4e (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: avcodec: add missing includes Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/ac3tab.c2
-rw-r--r--libavcodec/h261data.c1
-rw-r--r--libavcodec/mjpeg2jpeg_bsf.c4
3 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/ac3tab.c b/libavcodec/ac3tab.c
index 1ae7ddf2a6..d62d8bfbf5 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 0d1f305418..a9891edd0a 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 f3672881bc..6adeaf0ac8 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"