diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-03-22 13:33:22 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-03-22 13:33:22 +0000 |
commit | b5b35d7c9a4ba1c2723a3fef51df56c970455087 (patch) | |
tree | 94a784f019649eb126206c8452806a64d08ecfd5 /src | |
parent | 0fbe47f026ce2253c3e1814172136810bb784e22 (diff) | |
download | xine-lib-b5b35d7c9a4ba1c2723a3fef51df56c970455087.tar.gz xine-lib-b5b35d7c9a4ba1c2723a3fef51df56c970455087.tar.bz2 |
force redrawing the last _late_ frame. now we can be sure the last frame sent to
video_out will make into screen - hopefully making dvd menus happy! :)
CVS patchset: 1613
CVS date: 2002/03/22 13:33:22
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/video_out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 38a711464..4306826f8 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.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.c,v 1.84 2002/03/21 22:08:59 guenter Exp $ + * $Id: video_out.c,v 1.85 2002/03/22 13:33:22 miguelfreitas Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -397,6 +397,7 @@ static void expire_frames (vos_t *this, int64_t cur_vpts) { without it decoder may try to free our backup. */ this->img_backup = img; this->backup_is_logo = 0; + this->redraw_needed = 1; } else { pthread_mutex_lock (&img->mutex); |