]> git.sesse.net Git - vlc/commitdiff
Fixed snapshot while video is paused.
authorLaurent Aimar <fenrir@videolan.org>
Sat, 15 Nov 2008 21:53:26 +0000 (22:53 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Sat, 15 Nov 2008 22:03:07 +0000 (23:03 +0100)
src/video_output/video_output.c

index 8c58747cd0daa13ce6bf4341bacf587147d3d1b2..133585d0c70a80b01abe62226989eb68f52633a3 100644 (file)
@@ -1108,11 +1108,9 @@ static void* RunThread( vlc_object_t *p_this )
             p_filtered_picture = filter_chain_VideoFilter( p_vout->p->p_vf2_chain,
                                                            p_picture );
 
-        /* FIXME it is a bit ugly that b_snapshot is not locked but I do not
+        /* FIXME it is ugly that b_snapshot is not locked but I do not
          * know which lock to use (here and in the snapshot callback) */
-        const bool b_snapshot = p_vout->p->b_snapshot;
-        if( b_snapshot )
-            p_vout->p->b_snapshot = false;
+        const bool b_snapshot = p_vout->p->b_snapshot && p_picture != NULL;
 
         /*
          * Check for subpictures to display
@@ -1133,7 +1131,12 @@ static void* RunThread( vlc_object_t *p_this )
          * Take a snapshot if requested
          */
         if( p_directbuffer && b_snapshot )
+        {
+            /* FIXME lock (see b_snapshot) */
+            p_vout->p->b_snapshot = false;
+
             vout_Snapshot( p_vout, p_directbuffer );
+        }
 
         /*
          * Call the plugin-specific rendering method if there is one