Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
8939e8f9
Commit
8939e8f9
authored
Dec 22, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix padding for picture_t and subpicture_t.
parent
9fa485d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
include/vlc_picture.h
include/vlc_picture.h
+1
-1
include/vlc_subpicture.h
include/vlc_subpicture.h
+4
-4
No files found.
include/vlc_picture.h
View file @
8939e8f9
...
...
@@ -106,8 +106,8 @@ struct picture_t
* @{
*/
bool
b_progressive
;
/**< is it a progressive frame ? */
unsigned
int
i_nb_fields
;
/**< # of displayed fields */
bool
b_top_field_first
;
/**< which field is first */
unsigned
int
i_nb_fields
;
/**< # of displayed fields */
int8_t
*
p_q
;
/**< quantification table */
int
i_qstride
;
/**< quantification stride */
int
i_qtype
;
/**< quantification style */
...
...
include/vlc_subpicture.h
View file @
8939e8f9
...
...
@@ -124,6 +124,8 @@ struct subpicture_t
subpicture_t
*
p_next
;
/**< next subtitle to be displayed */
/**@}*/
subpicture_region_t
*
p_region
;
/**< region list composing this subtitle */
/** \name Date properties */
/**@{*/
mtime_t
i_start
;
/**< beginning of display date */
...
...
@@ -133,17 +135,15 @@ struct subpicture_t
bool
b_fade
;
/**< enable fading */
/**@}*/
subpicture_region_t
*
p_region
;
/**< region list composing this subtitle */
/** \name Display properties
* These properties are only indicative and may be
* changed by the video output thread, or simply ignored depending of the
* subtitle type. */
/**@{*/
int
i_original_picture_width
;
/**< original width of the movie */
int
i_original_picture_height
;
/**< original height of the movie */
bool
b_subtitle
;
/**< the picture is a movie subtitle */
bool
b_absolute
;
/**< position is absolute */
int
i_original_picture_width
;
/**< original width of the movie */
int
i_original_picture_height
;
/**< original height of the movie */
int
i_alpha
;
/**< transparency */
/**@}*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment