# HG changeset patch # User arpi # Date 1034201268 0 # Node ID 4fa4e58587c2e0e7853ca66b50531a5781277070 # Parent 486b56f4b0f3e9a68119614c7eb94b2f31965f3f VFCAP_DRAW_SLICE added diff -r 486b56f4b0f3 -r 4fa4e58587c2 libmpcodecs/vfcap.h --- 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