diff options
author | Reinhard Tartler <siretart@tauware.de> | 2014-08-09 08:22:11 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-09 08:22:11 -0700 |
commit | 452e343295e25f7b2cbc8529c66e9386e2ea6f55 (patch) | |
tree | 2d12b7b393dfd4ce38da6add31734fc809cc34b7 | |
parent | 5a2d1913a96bb0e029b424a4dd5b414cfb91c708 (diff) | |
download | ffmpeg-452e343295e25f7b2cbc8529c66e9386e2ea6f55.tar.gz |
avcodec: Add more missing #includes for ff_get_buffer()
-rw-r--r-- | libavcodec/libgsm.c | 1 | ||||
-rw-r--r-- | libavcodec/libopencore-amr.c | 1 | ||||
-rw-r--r-- | libavcodec/libspeexdec.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c index 1098bce631..a1fbb55f15 100644 --- a/libavcodec/libgsm.c +++ b/libavcodec/libgsm.c @@ -30,6 +30,7 @@ #include <gsm/gsm.h> #include "avcodec.h" +#include "internal.h" #include "gsm.h" static av_cold int libgsm_encode_init(AVCodecContext *avctx) { diff --git a/libavcodec/libopencore-amr.c b/libavcodec/libopencore-amr.c index 8265848155..724c3fcaf5 100644 --- a/libavcodec/libopencore-amr.c +++ b/libavcodec/libopencore-amr.c @@ -20,6 +20,7 @@ */ #include "avcodec.h" +#include "internal.h" #include "libavutil/avstring.h" #include "libavutil/opt.h" diff --git a/libavcodec/libspeexdec.c b/libavcodec/libspeexdec.c index 0ce09f4be7..a9ed04719d 100644 --- a/libavcodec/libspeexdec.c +++ b/libavcodec/libspeexdec.c @@ -23,6 +23,7 @@ #include <speex/speex_stereo.h> #include <speex/speex_callbacks.h> #include "avcodec.h" +#include "internal.h" typedef struct { AVFrame frame; |