]> git.sesse.net Git - vlc/blobdiff - include/vlc_vout.h
Moved picture_heap_t out of vlc_vout.h
[vlc] / include / vlc_vout.h
index 08549089d5d39889120d470dd2c75e7c05ea46e5..c7300ae1ebac9b04870e9741d54d438aa912a06f 100644 (file)
 #include <vlc_filter.h>
 #include <vlc_subpicture.h>
 
-/**
- * Video picture heap, either render (to store pictures used
- * by the decoder) or output (to store pictures displayed by the vout plugin)
- */
-struct picture_heap_t
-{
-    int i_pictures;                                   /**< current heap size */
-
-    /* Real pictures */
-    picture_t*      pp_picture[VOUT_MAX_PICTURES];             /**< pictures */
-    int             i_last_used_pic;              /**< last used pic in heap */
-};
-
 /*****************************************************************************
  * Prototypes
  *****************************************************************************/