]> 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 48d70fcef23d88fd3473bd90220dcf1d95e667f0..f2d5c12902d58a4b6e7dd3c378d8b7afd589393f 100644 (file)
@@ -30,9 +30,6 @@
 #ifndef _VOUT_CONTROL_H
 #define _VOUT_CONTROL_H 1
 
-/* DO NOT use vout_CountPictureAvailable unless your are in src/input/decoder.c (no exception) */
-int vout_CountPictureAvailable( vout_thread_t * );
-
 /**
  * This function will (un)pause the display of pictures.
  * It is thread safe
@@ -61,12 +58,27 @@ void vout_Flush( vout_thread_t *p_vout, mtime_t i_date );
  *
  * XXX This function is there to workaround bugs in decoder
  */
-void vout_FixLeaks( vout_thread_t *p_vout, bool b_forced );
+void vout_FixLeaks( vout_thread_t *p_vout );
+
+/*
+ * Reset the states of the vout.
+ */
+void vout_Reset( vout_thread_t *p_vout );
+
+/**
+ * This function will force to display the next picture while paused
+ */
+void vout_NextPicture( vout_thread_t *p_vout, mtime_t *pi_duration );
+
+/**
+ * This function will ask the display of the input title
+ */
+void vout_DisplayTitle( vout_thread_t *p_vout, const char *psz_title );
 
 /**
- * This functions will drop a picture retreived by vout_CreatePicture.
+ * This function will return true if no more pictures are to be displayed.
  */
-void vout_DropPicture( vout_thread_t *p_vout, picture_t * );
+bool vout_IsEmpty( vout_thread_t *p_vout );
 
 #endif