Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
3945cc1e
Commit
3945cc1e
authored
Nov 16, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics.
parent
b51fa630
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
28 deletions
+36
-28
src/input/es_out_timeshift.c
src/input/es_out_timeshift.c
+36
-28
No files found.
src/input/es_out_timeshift.c
View file @
3945cc1e
...
...
@@ -63,26 +63,23 @@ enum
typedef
struct
{
int
i_type
;
mtime_t
i_date
;
union
{
struct
{
es_out_id_t
*
p_es
;
es_format_t
*
p_fmt
;
}
add
;
struct
{
}
ts_cmd_add_t
typedef
struct
{
es_out_id_t
*
p_es
;
}
del
;
struct
{
}
ts_cmd_del_t
;
typedef
struct
{
es_out_id_t
*
p_es
;
block_t
*
p_block
;
}
send
;
struct
{
}
ts_cmd_send_t
;
typedef
struct
{
int
i_query
;
bool
b_bool
;
...
...
@@ -94,7 +91,18 @@ typedef struct
vlc_epg_t
*
p_epg
;
es_out_id_t
*
p_es
;
es_format_t
*
p_fmt
;
}
control
;
}
ts_cmd_control_t
;
typedef
struct
{
int
i_type
;
mtime_t
i_date
;
union
{
ts_cmd_add_t
add
;
ts_cmd_del_t
del
;
ts_cmd_send_t
send
;
ts_cmd_control_t
control
;
};
}
ts_cmd_t
;
...
...
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