]> git.sesse.net Git - vlc/blobdiff - include/vlc_video.h
* include/vlc_filter.h, vlc_video.h, src/video_output/vout_subpictures.c: new simpler...
[vlc] / include / vlc_video.h
index b5f21e4fa02ed2a98aa23355f39048d6524c441f..68d2e2ec13d17a384c9c83e5f9af3aa0188d67b1 100644 (file)
@@ -204,12 +204,14 @@ struct subpicture_region_t
     video_format_t  fmt;                          /**< format of the picture */
     picture_t       picture;             /**< picture comprising this region */
 
-    char            *psz_text;       /**< text string comprising this region */
-
     int             i_x;                             /**< position of region */
     int             i_y;                             /**< position of region */
-    int i_font_color, i_font_opacity;     /**< controls for text subpictures */
-    int i_font_size;
+
+    char            *psz_text;       /**< text string comprising this region */
+    int             i_text_color;     /**< text color (RGB native endianess) */
+    int             i_text_alpha;                     /**< text transparency */
+    int             i_text_size;                              /**< text size */
+
     subpicture_region_t *p_next;                /**< next region in the list */
     subpicture_region_t *p_cache;       /**< modified version of this region */
     /**@}*/