diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-06-11 10:19:04 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-06-11 10:19:04 +0000 |
commit | 02163b799de199160aba4a7877054c48b68ec33e (patch) | |
tree | bc335f3a6d7d2c5dc141361003fd83ad6da5ed67 | |
parent | 0ef37cd52ed77a5b12f267031f55bf28adb814c6 (diff) | |
download | ffmpeg-02163b799de199160aba4a7877054c48b68ec33e.tar.gz |
Add libavutil/internal.h #include, required for the DECLARE_ALIGNED macro.
This fixes swscale-example compilation.
Originally committed as revision 29353 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 83d47a2fe0..23ceec78bf 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -28,6 +28,7 @@ #endif #include "libavutil/avutil.h" +#include "libavutil/internal.h" #define STR(s) AV_TOSTRING(s) //AV_STRINGIFY is too long |