diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-15 11:35:08 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-15 11:35:08 +0000 |
commit | 15b88c72e2127db8a66b5f2771a3217a98f26b8c (patch) | |
tree | 0f36e02354652219e3338ba5aa7f9d3c20a1b8f8 /src/video_out | |
parent | c9858d165494b8aa499fca8f8d7c476c5b20a471 (diff) | |
download | xine-lib-15b88c72e2127db8a66b5f2771a3217a98f26b8c.tar.gz xine-lib-15b88c72e2127db8a66b5f2771a3217a98f26b8c.tar.bz2 |
Memory leak fixes, using a slightly modified version of the patch from
ewald@rambo.its.tudelft.nl
CVS patchset: 2666
CVS date: 2002/09/15 11:35:08
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/video_out_xv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 1037609e4..5a113d5ea 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.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_xv.c,v 1.132 2002/09/13 19:57:13 mroi Exp $ + * $Id: video_out_xv.c,v 1.133 2002/09/15 11:35:08 jcdutton Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -1201,7 +1201,7 @@ static void *init_video_out_plugin (xine_t *xine, void *visual_gen) { this->props[VO_PROP_INTERLACED].value = 0; this->sc.user_ratio = this->props[VO_PROP_ASPECT_RATIO].value = ASPECT_AUTO; this->props[VO_PROP_ZOOM_X].value = 100; - this->props[VO_PROP_ZOOM_Y].value = 100; + this->props[VO_PROP_ZOOM_Y].value = 128; /* * check this adaptor's capabilities |