changeset 7686:4fa4e58587c2

VFCAP_DRAW_SLICE added
author arpi
date Wed, 09 Oct 2002 22:07:48 +0000
parents 486b56f4b0f3
children a9a19a991a70
files libmpcodecs/vfcap.h
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vfcap.h	Wed Oct 09 21:54:58 2002 +0000
+++ b/libmpcodecs/vfcap.h	Wed Oct 09 22:07:48 2002 +0000
@@ -21,6 +21,8 @@
 #define VFCAP_FLIPPED 0x200
 // driver accept stride: (put_image/draw_frame)
 #define VFCAP_ACCEPT_STRIDE 0x400
-
+// filter does postprocessing (so you shouldn't scale/filter image before it)
 #define VFCAP_POSTPROC 0x800
+// filter has draw_slice() support for this colorspace (assumed for planar YUV)
+#define VFCAP_DRAW_SLICE 0x1000