From dc0c70e018f6b04488333e7e26ec26359e614e4e Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Sat, 22 Mar 2014 23:34:13 +0000 Subject: [PATCH] avcodec: add missing includes --- 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 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 +#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 + +#include "libavutil/error.h" +#include "libavutil/mem.h" + #include "avcodec.h" #include "mjpeg.h"