diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-09 22:08:29 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-09 22:08:29 +0000 |
commit | ef4b9787a9c83391f81f5ade3f90a51dbe0fe5a6 (patch) | |
tree | da3f559813c18065a40f4e2dde3dcd2037616b4a /src | |
parent | 31201aff8dbc2c2bb1dadaffb0166f00e9f65b78 (diff) | |
download | xine-lib-ef4b9787a9c83391f81f5ade3f90a51dbe0fe5a6.tar.gz xine-lib-ef4b9787a9c83391f81f5ade3f90a51dbe0fe5a6.tar.bz2 |
fixed aspect ratio change bug
CVS patchset: 142
CVS date: 2001/06/09 22:08:29
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_xv.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 086b4644c..23632395a 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.36 2001/06/09 17:07:21 guenter Exp $ + * $Id: video_out_xv.c,v 1.37 2001/06/09 22:08:29 guenter Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -519,10 +519,8 @@ static int xv_set_property (vo_driver_t *this_gen, printf("video_out_xv: VO_PROP_ASPECT_RATIO(%d)\n", this->props[property].value); - if(this->cur_frame) { - xv_calc_format (this, this->delivered_width, this->delivered_height, - this->delivered_ratio_code) ; - } + xv_calc_format (this, this->delivered_width, this->delivered_height, + this->delivered_ratio_code) ; break; } } |