From 0860745385f730be8615373ed834a652154e2516 Mon Sep 17 00:00:00 2001 From: lucabe Date: Thu, 20 Jul 2006 12:13:57 +0000 Subject: Use libavutil in libswscale, and allow it to be built out of the mplayer tree git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19148 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/swscale-example.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'libswscale/swscale-example.c') diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index f8e0ef4e8e..bda9aa351e 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -22,10 +22,8 @@ #include #include -#include "config.h" - #include "swscale.h" -#include "libvo/img_format.h" +#include "img_format.h" static int testFormat[]={ IMGFMT_YVU9, @@ -120,8 +118,8 @@ static void doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcForma if(ssdY>100 || ssdU>100 || ssdV>100){ printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5lld,%5lld,%5lld\n", - vo_format_name(srcFormat), srcW, srcH, - vo_format_name(dstFormat), dstW, dstH, + sws_format_name(srcFormat), srcW, srcH, + sws_format_name(dstFormat), dstW, dstH, flags, ssdY, ssdU, ssdV); } @@ -163,8 +161,8 @@ static void selfTest(uint8_t *src[3], int stride[3], int w, int h){ if(!dstFormat) break; // if(!isSupportedOut(dstFormat)) continue; printf("%s -> %s\n", - vo_format_name(srcFormat), - vo_format_name(dstFormat)); + sws_format_name(srcFormat), + sws_format_name(dstFormat)); srcW= w; srcH= h; -- cgit v1.2.3