diff options
| author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-08-15 03:12:24 +0000 |
|---|---|---|
| committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-08-15 03:12:24 +0000 |
| commit | fcb74c4f0e6fc5a1deec0839c773067d0a8b9e90 (patch) | |
| tree | 154b7d6ac8ddf1e6c52b2f256c4c2f2713be8ba5 /src/xine-engine/video_out.h | |
| parent | 1b2d20cd85bd3ea8735a1fbc4ea7f68dafdfe23d (diff) | |
| download | xine-lib-fcb74c4f0e6fc5a1deec0839c773067d0a8b9e90.tar.gz xine-lib-fcb74c4f0e6fc5a1deec0839c773067d0a8b9e90.tar.bz2 | |
- reimplement independent x/y zooming.
- new helper module (vo_scale.c) with all common scaling code of video out
drivers. it should greatly simplify drivers development by removing the
boring frame/window calculation, aspect ratio, zooming etc.
obs: not completely tested, may contain bugs and break things. also only
xshm and xv have being simplified so far, others will follow shortly.
CVS patchset: 2455
CVS date: 2002/08/15 03:12:24
Diffstat (limited to 'src/xine-engine/video_out.h')
| -rw-r--r-- | src/xine-engine/video_out.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 9c7e6bf78..0d0ba633b 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -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: video_out.h,v 1.57 2002/08/10 21:25:20 miguelfreitas Exp $ + * $Id: video_out.h,v 1.58 2002/08/15 03:12:26 miguelfreitas Exp $ * * * xine version of video_out.h @@ -186,12 +186,13 @@ struct vo_instance_s { #define VO_PROP_BRIGHTNESS 5 #define VO_PROP_COLORKEY 6 #define VO_PROP_AUTOPAINT_COLORKEY 7 -#define VO_PROP_ZOOM_FACTOR 8 +#define VO_PROP_ZOOM_X 8 #define VO_PROP_PAN_SCAN 9 #define VO_PROP_TVMODE 10 #define VO_PROP_MAX_NUM_FRAMES 11 #define VO_PROP_VO_TYPE 12 -#define VO_NUM_PROPERTIES 13 +#define VO_PROP_ZOOM_Y 13 +#define VO_NUM_PROPERTIES 14 /* Video out types */ #define VO_TYPE_UNKNOWN 0 |
