[vlc-commits] vlc_subpicture: fix alignment usage comments
Francois Cartegnie
git at videolan.org
Mon Jun 5 16:47:44 CEST 2017
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed May 31 11:35:51 2017 +0200| [ed635879f16bea96437d117a072c18175dcb4705] | committer: Francois Cartegnie
vlc_subpicture: fix alignment usage comments
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ed635879f16bea96437d117a072c18175dcb4705
---
include/vlc_subpicture.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/vlc_subpicture.h b/include/vlc_subpicture.h
index aa2ed0d4fe..3411bfffec 100644
--- a/include/vlc_subpicture.h
+++ b/include/vlc_subpicture.h
@@ -59,9 +59,9 @@ struct subpicture_region_t
video_format_t fmt; /**< format of the picture */
picture_t *p_picture; /**< picture comprising this region */
- int i_x; /**< position of region */
- int i_y; /**< position of region */
- int i_align; /**< alignment within a region */
+ int i_x; /**< position of region, relative to alignment */
+ int i_y; /**< position of region, relative to alignment */
+ int i_align; /**< alignment flags of region and content */
int i_alpha; /**< transparency */
text_segment_t *p_text; /**< subtitle text, made of a list of segments */
More information about the vlc-commits
mailing list