SDL Preview provisional checkin
[melted] / src / modules / core / consumer_null.c
index ae456b5..57452e1 100644 (file)
@@ -150,10 +150,14 @@ static void *consumer_thread( void *arg )
                if ( frame != NULL )
                {
                        // Close the frame
+                       mlt_events_fire( properties, "consumer-frame-show", frame, NULL );
                        mlt_frame_close( frame );
                }
        }
 
+       // Indicate that the consumer is stopped
+       mlt_consumer_stopped( this );
+
        return NULL;
 }