changeset 5894:af9efcb80244

Use new style query_formats flags. Fixes bug with flip.
author ksorim
date Mon, 29 Apr 2002 09:52:21 +0000
parents 6a6107da2d82
children e69d0434d92b
files libvo/vo_sdl.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_sdl.c	Mon Apr 29 08:47:30 2002 +0000
+++ b/libvo/vo_sdl.c	Mon Apr 29 09:52:21 2002 +0000
@@ -114,6 +114,7 @@
 #include "fastmemcpy.h"
 #include "sub.h"
 #include "aspect.h"
+#include "libmpcodecs/vfcap.h"
 
 #ifdef HAVE_X11
 #include <X11/Xlib.h>
@@ -1583,7 +1584,8 @@
     case IMGFMT_YUY2:
     case IMGFMT_UYVY:
     case IMGFMT_YVYU:
-    	return 0x6; // hw supported & osd
+        return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_OSD |
+            VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN;
     case IMGFMT_RGB15:
     case IMGFMT_BGR15:
     case IMGFMT_RGB16:
@@ -1592,7 +1594,7 @@
     case IMGFMT_BGR24:
     case IMGFMT_RGB32:
     case IMGFMT_BGR32:
-        return 0x5; // hw supported w/conversion & osd
+        return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_FLIP;
     }
     return 0;
 }