comparison libmpcodecs/vfcap.h @ 5564:efe856039f8f

VFCAP defines moved out from vf.h, to be easier to include in libvo
author arpi
date Thu, 11 Apr 2002 20:55:10 +0000
parents
children 4fa4e58587c2
comparison
equal deleted inserted replaced
5563:71372b7125cf 5564:efe856039f8f
1 // VFCAP_* values: they are flags, returned by query_format():
2
3 // set, if the given colorspace is supported (with or without conversion)
4 #define VFCAP_CSP_SUPPORTED 0x1
5 // set, if the given colorspace is supported _without_ conversion
6 #define VFCAP_CSP_SUPPORTED_BY_HW 0x2
7 // set if the driver/filter can draw OSD
8 #define VFCAP_OSD 0x4
9 // set if the driver/filter can handle compressed SPU stream
10 #define VFCAP_SPU 0x8
11 // scaling up/down by hardware, or software:
12 #define VFCAP_HWSCALE_UP 0x10
13 #define VFCAP_HWSCALE_DOWN 0x20
14 #define VFCAP_SWSCALE 0x40
15 // driver/filter can do vertical flip (upside-down)
16 #define VFCAP_FLIP 0x80
17
18 // driver/hardware handles timing (blocking)
19 #define VFCAP_TIMER 0x100
20 // driver _always_ flip image upside-down (for ve_vfw)
21 #define VFCAP_FLIPPED 0x200
22 // driver accept stride: (put_image/draw_frame)
23 #define VFCAP_ACCEPT_STRIDE 0x400
24
25 #define VFCAP_POSTPROC 0x800
26