Commit 632d8739 authored by Diego Biurrun's avatar Diego Biurrun

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
parent b2c4e354
...@@ -25,6 +25,8 @@ ...@@ -25,6 +25,8 @@
#undef HAVE_AV_CONFIG_H #undef HAVE_AV_CONFIG_H
#include "avutil.h" #include "avutil.h"
#include "swscale.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){ static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, int w, int h){
int x,y; int x,y;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment