X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_vout.h;h=c0249548451faec9c0664fedf6ccb0e5bf08e288;hb=4cd0b03690b8de28d568bafb0754f5d6a48d2f57;hp=05bc7011c2e6f1d9bec610f42df92ce4560bcdca;hpb=67936bb121f31c6806c0d62d203be9ad4e071307;p=vlc diff --git a/include/vlc_vout.h b/include/vlc_vout.h index 05bc7011c2..c024954845 100644 --- a/include/vlc_vout.h +++ b/include/vlc_vout.h @@ -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 */ /**@}*/