diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-04 13:54:56 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-04 13:54:56 +0000 |
commit | 632d873994b88728cd3160f63daa30eac7d36ec3 (patch) | |
tree | c806154e108fc1f428c9e71677e328db35866179 /libswscale | |
parent | b2c4e3547b38f2f2b9ffe99e32f783f965dfcdb9 (diff) | |
download | ffmpeg-632d873994b88728cd3160f63daa30eac7d36ec3.tar.gz |
Fix warnings:
swscale-example.c:87: warning: implicit declaration of function 'sws_format_name'
swscale-example.c:214: warning: implicit declaration of function 'sws_rgb2rgb_init'
Originally committed as revision 20037 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale-example.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index 2bb168595e..2c2ddd7366 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -25,6 +25,8 @@ #undef HAVE_AV_CONFIG_H #include "avutil.h" #include "swscale.h" +#include "swscale_internal.h" +#include "rgb2rgb.h" static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, int w, int h){ int x,y; |