]> git.sesse.net Git - vlc/blobdiff - include/vlc_vout.h
Removed picture_heap_t::i_aspect/width/height/chroma.
[vlc] / include / vlc_vout.h
index 05bc7011c2e6f1d9bec610f42df92ce4560bcdca..c0249548451faec9c0664fedf6ccb0e5bf08e288 100644 (file)
@@ -43,24 +43,9 @@ struct picture_heap_t
 {
     int i_pictures;                                   /**< current heap size */
 
-    /* \name Picture static properties
-     * Those properties are fixed at initialization and should NOT be modified
-     * @{
-     */
-    unsigned int i_width;                                 /**< picture width */
-    unsigned int i_height;                               /**< picture height */
-    vlc_fourcc_t i_chroma;                               /**< picture chroma */
-    unsigned int i_aspect;                                 /**< aspect ratio */
-    /**@}*/
-
     /* Real pictures */
     picture_t*      pp_picture[VOUT_MAX_PICTURES];             /**< pictures */
     int             i_last_used_pic;              /**< last used pic in heap */
-
-    /* Stuff used for truecolor RGB planes */
-    uint32_t i_rmask; int i_rrshift, i_lrshift;
-    uint32_t i_gmask; int i_rgshift, i_lgshift;
-    uint32_t i_bmask; int i_rbshift, i_lbshift;
 };
 
 /*****************************************************************************
@@ -103,7 +88,6 @@ struct vout_thread_t
                                                       \see \ref vout_changes */
     unsigned            b_fullscreen:1;       /**< toogle fullscreen display */
     unsigned            b_on_top:1; /**< stay always on top of other windows */
-    int                 i_zoom;               /**< scaling factor if no auto */
 
     /**@}*/