diff options
author | phintuka <phintuka> | 2008-12-18 20:03:13 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-12-18 20:03:13 +0000 |
commit | 971437180d25a921457c25f24530bc041093d46b (patch) | |
tree | 11516ea6a6bbe7c61df72b790e190384d7edea97 | |
parent | d51d0e5037317988dc4ce11128c29b31309f63cb (diff) | |
download | xineliboutput-971437180d25a921457c25f24530bc041093d46b.tar.gz xineliboutput-971437180d25a921457c25f24530bc041093d46b.tar.bz2 |
Removed leftover testing code ...
-rw-r--r-- | xine/vo_osdscaler.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xine/vo_osdscaler.c b/xine/vo_osdscaler.c index 03318924..0a82784f 100644 --- a/xine/vo_osdscaler.c +++ b/xine/vo_osdscaler.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: vo_osdscaler.c,v 1.1 2008-12-18 14:03:59 phintuka Exp $ + * $Id: vo_osdscaler.c,v 1.2 2008-12-18 20:03:13 phintuka Exp $ * */ @@ -240,9 +240,6 @@ static int check_for_scaling(osdscaler_hook_t *this, vo_frame_t *frame, vo_overl if (frame->crop_right > 0) this->output_width -= frame->crop_right; } -this->output_width = this->output_width*2/3; -this->output_height = this->output_height*2/3; - /* check if scaling should be done */ if (ABS(this->output_width - this->osd_width) > this->osd_width /20 || ABS(this->output_height - this->osd_height) > this->osd_height/20 ) { |