]> git.sesse.net Git - vlc/blobdiff - include/vlc_video.h
subpicture_t now has a b_pausable attribute. When set to VLC_TRUE (default value...
[vlc] / include / vlc_video.h
index ddaaaba62d00c64db7c91ec703505447e225c979..f4b8947c9c5576a9034df60c231e35edfde36710 100644 (file)
@@ -139,9 +139,9 @@ struct picture_heap_t
     vlc_bool_t      b_allow_modify_pics;
 
     /* Stuff used for truecolor RGB planes */
-    int i_rmask, i_rrshift, i_lrshift;
-    int i_gmask, i_rgshift, i_lgshift;
-    int i_bmask, i_rbshift, i_lbshift;
+    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;
 
     /** Stuff used for palettized RGB planes */
     void (* pf_setpalette) ( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
@@ -246,6 +246,8 @@ struct subpicture_t
     vlc_bool_t      b_ephemer;    /**< If this flag is set to true the subtitle
                                 will be displayed untill the next one appear */
     vlc_bool_t      b_fade;                               /**< enable fading */
+    vlc_bool_t      b_pausable;               /**< subpicture will be paused if
+                                                            stream is paused */
     /**@}*/
 
     subpicture_region_t *p_region;  /**< region list composing this subtitle */