From: Reinhard Tartler <[email protected]> The transition to ff_get_buffer() requires the header "internal.h", which was missed in two files
Signed-off-by: Reinhard Tartler <[email protected]> --- libavcodec/mxpegdec.c | 1 + libavcodec/roqvideoenc.c | 1 + 2 files changed, 2 insertions(+) diff --git a/libavcodec/mxpegdec.c b/libavcodec/mxpegdec.c index fff5c7e..dda4b32 100644 --- a/libavcodec/mxpegdec.c +++ b/libavcodec/mxpegdec.c @@ -27,6 +27,7 @@ #include "mjpeg.h" #include "mjpegdec.h" +#include "internal.h" typedef struct MXpegDecodeContext { MJpegDecodeContext jpg; diff --git a/libavcodec/roqvideoenc.c b/libavcodec/roqvideoenc.c index 58dd255..2683a4a 100644 --- a/libavcodec/roqvideoenc.c +++ b/libavcodec/roqvideoenc.c @@ -60,6 +60,7 @@ #include "bytestream.h" #include "elbg.h" #include "mathops.h" +#include "internal.h" #define CHROMA_BIAS 1 -- 1.9.1 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
