]> git.sesse.net Git - vlc/blobdiff - include/vlc_video.h
removed the languages we removed from our official builds and added Turkish
[vlc] / include / vlc_video.h
index 68d2e2ec13d17a384c9c83e5f9af3aa0188d67b1..d8fc2f67b8a7559a05997f72f47a295acb231548 100644 (file)
@@ -110,6 +110,9 @@ struct picture_t
 
     /** This way the picture_Release can be overloaded */
     void (*pf_release)( picture_t * );
+
+    /** Next picture in a FIFO a pictures */
+    struct picture_t *p_next;
 };
 
 /**
@@ -199,8 +202,6 @@ struct picture_heap_t
  */
 struct subpicture_region_t
 {
-    /** \name Region properties */
-    /**@{*/
     video_format_t  fmt;                          /**< format of the picture */
     picture_t       picture;             /**< picture comprising this region */
 
@@ -211,10 +212,10 @@ struct subpicture_region_t
     int             i_text_color;     /**< text color (RGB native endianess) */
     int             i_text_alpha;                     /**< text transparency */
     int             i_text_size;                              /**< text size */
+    int             i_text_align;         /**< horizontal alignment hint for */
 
     subpicture_region_t *p_next;                /**< next region in the list */
     subpicture_region_t *p_cache;       /**< modified version of this region */
-    /**@}*/
 };
 
 /**