diff options
author | vle <vle@gmx.net> | 2010-09-05 09:41:24 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-09-05 09:41:24 +0000 |
commit | 87db37356c3cf63372447d5b8e0fb95e4ed66c15 (patch) | |
tree | 7982fabd4af0e69d62350f8d9eb327f7528ef753 | |
parent | 47806f4119b7cc04d2a8bf26d86ddacaab7aad2b (diff) | |
download | ffmpeg-87db37356c3cf63372447d5b8e0fb95e4ed66c15.tar.gz |
Fix mlib compilation: add mising include for SwsContext.
Patch by [vle gmx net].
Originally committed as revision 32050 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/mlib/yuv2rgb_mlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/mlib/yuv2rgb_mlib.c b/libswscale/mlib/yuv2rgb_mlib.c index 011b0ef5cb..e9f11494ee 100644 --- a/libswscale/mlib/yuv2rgb_mlib.c +++ b/libswscale/mlib/yuv2rgb_mlib.c @@ -29,6 +29,7 @@ #include <assert.h> #include "libswscale/swscale.h" +#include "libswscale/swscale_internal.h" static int mlib_YUV2ARGB420_32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]) |