]> git.sesse.net Git - vlc/blobdiff - src/video_output/vout_control.h
Use var_Inherit* instead of var_CreateGet*.
[vlc] / src / video_output / vout_control.h
index db179a8c785b51b3f61df1526806dad4579985d2..f2d5c12902d58a4b6e7dd3c378d8b7afd589393f 100644 (file)
@@ -65,11 +65,6 @@ void vout_FixLeaks( vout_thread_t *p_vout );
  */
 void vout_Reset( vout_thread_t *p_vout );
 
-/**
- * This functions will drop a picture retreived by vout_CreatePicture.
- */
-void vout_DropPicture( vout_thread_t *p_vout, picture_t * );
-
 /**
  * This function will force to display the next picture while paused
  */
@@ -80,5 +75,10 @@ void vout_NextPicture( vout_thread_t *p_vout, mtime_t *pi_duration );
  */
 void vout_DisplayTitle( vout_thread_t *p_vout, const char *psz_title );
 
+/**
+ * This function will return true if no more pictures are to be displayed.
+ */
+bool vout_IsEmpty( vout_thread_t *p_vout );
+
 #endif