# HG changeset patch # User diego # Date 1159970096 0 # Node ID d7cf546663347fd878f592c29c9d23f8cba0220f # Parent f837670d269ca8b52219536b94997ef4da3d01d7 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' diff -r f837670d269c -r d7cf54666334 libswscale/swscale-example.c --- a/libswscale/swscale-example.c Wed Oct 04 13:51:12 2006 +0000 +++ b/libswscale/swscale-example.c Wed Oct 04 13:54:56 2006 +0000 @@ -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;