diff options
author | Rich J Wareham <richwareham@users.sourceforge.net> | 2001-09-14 21:25:55 +0000 |
---|---|---|
committer | Rich J Wareham <richwareham@users.sourceforge.net> | 2001-09-14 21:25:55 +0000 |
commit | 2a6944aa21b4184d8174b74d9c0fbff807c16c4e (patch) | |
tree | afa0258b9fa0bbca72511b67dfd28f327d6c9f03 /src/xine-engine/video_out.c | |
parent | 01acad2a27f178995bcfda3f752fd1dac545c109 (diff) | |
download | xine-lib-2a6944aa21b4184d8174b74d9c0fbff807c16c4e.tar.gz xine-lib-2a6944aa21b4184d8174b74d9c0fbff807c16c4e.tar.bz2 |
Added some stuff to make still-frame menus work a bit better, allowed events for UI to find language of audio/spu track
CVS patchset: 636
CVS date: 2001/09/14 21:25:55
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 368f06a58..ad8887e26 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.45 2001/09/12 19:50:41 guenter Exp $ + * $Id: video_out.c,v 1.46 2001/09/14 21:25:55 richwareham Exp $ * */ @@ -183,8 +183,9 @@ static void *video_out_loop (void *this_gen) { vo_set_timer (video_step); - while (this->video_loop_running) { - + while ((this->video_loop_running) || + (!this->video_loop_running && this->display_img_buf_queue->first)) { + /* sigwait(&vo_mask, &dummysignum); */ /* wait for next timer tick */ pause (); |