summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale-example.c
diff options
context:
space:
mode:
authorlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-20 12:13:57 +0000
committerlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-20 12:13:57 +0000
commit0860745385f730be8615373ed834a652154e2516 (patch)
tree8cf981ea376bd06794527f82cf0f761be5158ce8 /libswscale/swscale-example.c
parent68deda7604af1d9270bdf5da5cc78a109272a70c (diff)
downloadmpv-0860745385f730be8615373ed834a652154e2516.tar.bz2
mpv-0860745385f730be8615373ed834a652154e2516.tar.xz
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
Diffstat (limited to 'libswscale/swscale-example.c')
-rw-r--r--libswscale/swscale-example.c12
1 files changed, 5 insertions, 7 deletions
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 <inttypes.h>
#include <stdarg.h>
-#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;