changeset 20031:d7cf54666334

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'
author diego
date Wed, 04 Oct 2006 13:54:56 +0000
parents f837670d269c
children cd9064593436
files libswscale/swscale-example.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;