yading@10: /* VFCAP_* values: they are flags, returned by query_format(): yading@10: * yading@10: * This file is part of MPlayer. yading@10: * yading@10: * MPlayer is free software; you can redistribute it and/or modify yading@10: * it under the terms of the GNU General Public License as published by yading@10: * the Free Software Foundation; either version 2 of the License, or yading@10: * (at your option) any later version. yading@10: * yading@10: * MPlayer is distributed in the hope that it will be useful, yading@10: * but WITHOUT ANY WARRANTY; without even the implied warranty of yading@10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the yading@10: * GNU General Public License for more details. yading@10: * yading@10: * You should have received a copy of the GNU General Public License along yading@10: * with MPlayer; if not, write to the Free Software Foundation, Inc., yading@10: * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. yading@10: */ yading@10: yading@10: #ifndef MPLAYER_VFCAP_H yading@10: #define MPLAYER_VFCAP_H yading@10: yading@10: // set, if the given colorspace is supported (with or without conversion) yading@10: #define VFCAP_CSP_SUPPORTED 0x1 yading@10: // set, if the given colorspace is supported _without_ conversion yading@10: #define VFCAP_CSP_SUPPORTED_BY_HW 0x2 yading@10: // set if the driver/filter can draw OSD yading@10: #define VFCAP_OSD 0x4 yading@10: // set if the driver/filter can handle compressed SPU stream yading@10: #define VFCAP_SPU 0x8 yading@10: // scaling up/down by hardware, or software: yading@10: #define VFCAP_HWSCALE_UP 0x10 yading@10: #define VFCAP_HWSCALE_DOWN 0x20 yading@10: #define VFCAP_SWSCALE 0x40 yading@10: // driver/filter can do vertical flip (upside-down) yading@10: #define VFCAP_FLIP 0x80 yading@10: yading@10: // driver/hardware handles timing (blocking) yading@10: #define VFCAP_TIMER 0x100 yading@10: // driver _always_ flip image upside-down (for ve_vfw) yading@10: #define VFCAP_FLIPPED 0x200 yading@10: // vf filter: accepts stride (put_image) yading@10: // vo driver: has draw_slice() support for the given csp yading@10: #define VFCAP_ACCEPT_STRIDE 0x400 yading@10: // filter does postprocessing (so you shouldn't scale/filter image before it) yading@10: #define VFCAP_POSTPROC 0x800 yading@10: // filter cannot be reconfigured to different size & format yading@10: #define VFCAP_CONSTANT 0x1000 yading@10: // filter can draw EOSD yading@10: #define VFCAP_EOSD 0x2000 yading@10: // filter will draw EOSD at screen resolution (without scaling) yading@10: #define VFCAP_EOSD_UNSCALED 0x4000 yading@10: // used by libvo and vf_vo, indicates the VO does not support draw_slice for this format yading@10: #define VOCAP_NOSLICES 0x8000 yading@10: yading@10: #endif /* MPLAYER_VFCAP_H */