diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-10-26 20:10:20 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-10-26 20:10:20 +0000 |
commit | ebdf7c59eee588633416888dabb0164f671797ef (patch) | |
tree | 90033d3695c1cc4fbca2bbe55a506b90fcc3377a /include | |
parent | 48bf362ba64bfbb5aa06d97300380587803b08c6 (diff) | |
download | xine-lib-ebdf7c59eee588633416888dabb0164f671797ef.tar.gz xine-lib-ebdf7c59eee588633416888dabb0164f671797ef.tar.bz2 |
add frontend cropping support
CVS patchset: 7076
CVS date: 2004/10/26 20:10:20
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index a4633c78e..021d34327 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.131 2004/09/28 18:49:39 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.132 2004/10/26 20:10:26 miguelfreitas Exp $ * * public xine-lib (libxine) interface and documentation * @@ -366,6 +366,11 @@ int xine_get_param (xine_stream_t *stream, int param); #define XINE_PARAM_VO_ZOOM_Y 0x0100000d /* percent */ #define XINE_PARAM_VO_PAN_SCAN 0x01000009 /* bool */ #define XINE_PARAM_VO_TVMODE 0x0100000a /* ??? */ +#define XINE_PARAM_VO_CROP_LEFT 0x01000020 /* crop frame pixels */ +#define XINE_PARAM_VO_CROP_RIGHT 0x01000021 /* crop frame pixels */ +#define XINE_PARAM_VO_CROP_TOP 0x01000022 /* crop frame pixels */ +#define XINE_PARAM_VO_CROP_BOTTOM 0x01000023 /* crop frame pixels */ + #define XINE_VO_ZOOM_STEP 100 #define XINE_VO_ZOOM_MAX 400 |