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
9fa485d1
Commit
9fa485d1
authored
Dec 22, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input_thread_private_t: fix padding.
parent
ba807e32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
src/input/input_internal.h
src/input/input_internal.h
+9
-9
No files found.
src/input/input_internal.h
View file @
9fa485d1
...
@@ -85,15 +85,15 @@ typedef struct
...
@@ -85,15 +85,15 @@ typedef struct
struct
input_thread_private_t
struct
input_thread_private_t
{
{
/* Global properties */
/* Global properties */
double
f_fps
;
int
i_state
;
bool
b_can_pause
;
bool
b_can_pause
;
bool
b_can_rate_control
;
bool
b_can_rate_control
;
bool
b_can_pace_control
;
bool
b_can_pace_control
;
double
f_fps
;
int
i_state
;
/* Current state */
/* Current state */
int
i_rate
;
bool
b_recording
;
bool
b_recording
;
int
i_rate
;
/* Playtime configuration and state */
/* Playtime configuration and state */
int64_t
i_start
;
/* :start-time,0 by default */
int64_t
i_start
;
/* :start-time,0 by default */
...
@@ -102,6 +102,12 @@ struct input_thread_private_t
...
@@ -102,6 +102,12 @@ struct input_thread_private_t
int64_t
i_time
;
/* Current time */
int64_t
i_time
;
/* Current time */
bool
b_fast_seek
;
/* :input-fast-seek */
bool
b_fast_seek
;
/* :input-fast-seek */
/* Output */
bool
b_out_pace_control
;
/* XXX Move it ot es_sout ? */
sout_instance_t
*
p_sout
;
/* Idem ? */
es_out_t
*
p_es_out
;
es_out_t
*
p_es_out_display
;
/* Title infos FIXME multi-input (not easy) ? */
/* Title infos FIXME multi-input (not easy) ? */
int
i_title
;
int
i_title
;
input_title_t
**
title
;
input_title_t
**
title
;
...
@@ -118,12 +124,6 @@ struct input_thread_private_t
...
@@ -118,12 +124,6 @@ struct input_thread_private_t
int
i_attachment
;
int
i_attachment
;
input_attachment_t
**
attachment
;
input_attachment_t
**
attachment
;
/* Output */
es_out_t
*
p_es_out
;
es_out_t
*
p_es_out_display
;
sout_instance_t
*
p_sout
;
/* XXX Move it to es_out ? */
bool
b_out_pace_control
;
/* idem ? */
/* Main input properties */
/* Main input properties */
/* Input item */
/* Input item */
...
...
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