diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-26 18:36:34 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-26 18:36:34 +0000 |
commit | fe1481d199f8f35734cff5eac8d8edf6a50aff52 (patch) | |
tree | f5ccca72ca320a755cd2b329ca78ae9c1af118df /src/video_out/video_out_xv.c | |
parent | c69ab1501cefec445ba2ea4fad42b398fdc43072 (diff) | |
download | xine-lib-fe1481d199f8f35734cff5eac8d8edf6a50aff52.tar.gz xine-lib-fe1481d199f8f35734cff5eac8d8edf6a50aff52.tar.bz2 |
fix x11osd bugs with fullscreen changing
CVS patchset: 5789
CVS date: 2003/11/26 18:36:34
Diffstat (limited to 'src/video_out/video_out_xv.c')
-rw-r--r-- | src/video_out/video_out_xv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index cdb102b26..ae9b76579 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.182 2003/11/26 01:03:32 miguelfreitas Exp $ + * $Id: video_out_xv.c,v 1.183 2003/11/26 18:36:34 miguelfreitas Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -614,7 +614,7 @@ static void xv_overlay_begin (vo_driver_t *this_gen, vo_frame_t *frame_gen, int changed) { xv_driver_t *this = (xv_driver_t *) this_gen; - this->ovl_changed = changed; + this->ovl_changed += changed; if( this->ovl_changed && this->xoverlay ) { XLockDisplay (this->display); @@ -974,6 +974,7 @@ static int xv_gui_data_exchange (vo_driver_t *this_gen, this->gc = XCreateGC (this->display, this->drawable, 0, NULL); if(this->xoverlay) x11osd_drawable_changed(this->xoverlay, this->drawable); + this->ovl_changed = 1; XUnlockDisplay (this->display); this->sc.force_redraw = 1; break; |