]> git.sesse.net Git - vlc/blobdiff - include/vlc_vout.h
Removed write only picture_heap_t::b_allow_modify_pics.
[vlc] / include / vlc_vout.h
index 190884a3ec6d9725c06bac9b8a16bb7ff2f620de..aa4cc817bc2ae387d34b08982a4d58dc3e261c59 100644 (file)
@@ -56,7 +56,6 @@ struct picture_heap_t
     /* Real pictures */
     picture_t*      pp_picture[VOUT_MAX_PICTURES];             /**< pictures */
     int             i_last_used_pic;              /**< last used pic in heap */
-    bool            b_allow_modify_pics;
 
     /* Stuff used for truecolor RGB planes */
     uint32_t i_rmask; int i_rrshift, i_lrshift;
@@ -91,13 +90,11 @@ typedef struct vout_thread_sys_t vout_thread_sys_t;
 struct vout_thread_t
 {
     VLC_COMMON_MEMBERS
-    bool                b_error;
 
     /** \name Thread properties and locks */
     /**@{*/
     vlc_mutex_t         picture_lock;                 /**< picture heap lock */
     vlc_mutex_t         change_lock;                 /**< thread change lock */
-    vout_sys_t *        p_sys;                     /**< system output method */
     /**@}*/
 
     /** \name Current display properties */
@@ -116,7 +113,6 @@ struct vout_thread_t
 
     /** \name Video heap and translation tables */
     /**@{*/
-    int                 i_heap_size;                          /**< heap size */
     picture_heap_t      render;                       /**< rendered pictures */
     picture_heap_t      output;                          /**< direct buffers */
 
@@ -128,12 +124,6 @@ struct vout_thread_t
     /* Picture heap */
     picture_t           p_picture[2*VOUT_MAX_PICTURES+1];      /**< pictures */
 
-    /* Subpicture unit */
-    spu_t          *p_spu;
-
-    /* Video output configuration */
-    config_chain_t *p_cfg;
-
     /* Private vout_thread data */
     vout_thread_sys_t *p;
 };