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/dxr3 | |
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/dxr3')
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index e038abe74..ed6e8df9c 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -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_dxr3.c,v 1.48 2002/08/13 15:44:02 mroi Exp $ + * $Id: video_out_dxr3.c,v 1.49 2002/08/15 03:12:25 miguelfreitas Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -652,12 +652,12 @@ static void dxr3_display_frame(vo_driver_t *this_gen, vo_frame_t *frame_gen) if (frame->aspect != this->aspect) dxr3_set_property(this_gen, VO_PROP_ASPECT_RATIO, frame->vo_frame.ratio); if (frame->pan_scan && !this->pan_scan) { - dxr3_set_property(this_gen, VO_PROP_ZOOM_FACTOR, 1); + dxr3_set_property(this_gen, VO_PROP_ZOOM_X, 1); this->pan_scan = 1; } if (!frame->pan_scan && this->pan_scan) { this->pan_scan = 0; - dxr3_set_property(this_gen, VO_PROP_ZOOM_FACTOR, -1); + dxr3_set_property(this_gen, VO_PROP_ZOOM_X, -1); } if (frame_gen->format != IMGFMT_MPEG && this->enc && this->enc->on_display_frame) { @@ -698,7 +698,8 @@ static int dxr3_get_property(vo_driver_t *this_gen, int property) return this->aspect; case VO_PROP_COLORKEY: return this->overlay.colorkey; - case VO_PROP_ZOOM_FACTOR: + case VO_PROP_ZOOM_X: + case VO_PROP_ZOOM_Y: case VO_PROP_TVMODE: return 0; case VO_PROP_VO_TYPE: |