summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-10-21 13:14:08 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-10-21 13:14:08 +0000
commitc5ae006f3d4fe7893374b35bc7fee73ca96dc8af (patch)
tree89c1a19684a8e585419bba803ae3e7c2cf04551c /src
parentebcdb50871a515a7bdfaf4b764d7615b511a152f (diff)
downloadxine-lib-c5ae006f3d4fe7893374b35bc7fee73ca96dc8af.tar.gz
xine-lib-c5ae006f3d4fe7893374b35bc7fee73ca96dc8af.tar.bz2
Fixed problem with overlay being stamped onto still menus.
Thanks to Rich Wareham CVS patchset: 848 CVS date: 2001/10/21 13:14:08
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/video_out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 142488a48..07ca06f91 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.50 2001/10/03 17:15:44 jkeil Exp $
+ * $Id: video_out.c,v 1.51 2001/10/21 13:14:08 jcdutton Exp $
*
*/
@@ -297,7 +297,7 @@ static void *video_out_loop (void *this_gen) {
profiler_start_count (prof_spu_blend);
ovl = this->overlay_source->get_overlay (this->overlay_source, img->PTS);
- if (ovl && this->driver->overlay_blend)
+ if (this->video_loop_running && ovl && this->driver->overlay_blend)
this->driver->overlay_blend (this->driver, img, ovl);
profiler_stop_count (prof_spu_blend);