[FFmpeg-cvslog] avcodec: add missing includes

Vittorio Giovara git at videolan.org
Tue Mar 25 19:51:59 CET 2014


ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Sat Mar 22 23:34:13 2014 +0000| [dc0c70e018f6b04488333e7e26ec26359e614e4e] | committer: Vittorio Giovara

avcodec: add missing includes

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dc0c70e018f6b04488333e7e26ec26359e614e4e
---

 libavcodec/ac3tab.c         |    2 ++
 libavcodec/h261data.c       |    1 +
 libavcodec/mjpeg2jpeg_bsf.c |    4 ++++
 3 files changed, 7 insertions(+)

diff --git a/libavcodec/ac3tab.c b/libavcodec/ac3tab.c
index ebcfb0b..3cd07f9 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 eb8e64a..a81ccdf 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 ec36589..59734c9 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"
 



More information about the ffmpeg-cvslog mailing list