Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
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
Hide 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
...
...
@@ -61,40 +61,48 @@ enum
C_CONTROL
,
};
typedef
struct
{
es_out_id_t
*
p_es
;
es_format_t
*
p_fmt
;
}
ts_cmd_add_t
typedef
struct
{
es_out_id_t
*
p_es
;
}
ts_cmd_del_t
;
typedef
struct
{
es_out_id_t
*
p_es
;
block_t
*
p_block
;
}
ts_cmd_send_t
;
typedef
struct
{
int
i_query
;
bool
b_bool
;
bool
*
pb_bool
;
int
i_int
;
int
*
pi_int
;
int64_t
i_i64
;
vlc_meta_t
*
p_meta
;
vlc_epg_t
*
p_epg
;
es_out_id_t
*
p_es
;
es_format_t
*
p_fmt
;
}
ts_cmd_control_t
;
typedef
struct
{
int
i_type
;
mtime_t
i_date
;
union
{
struct
{
es_out_id_t
*
p_es
;
es_format_t
*
p_fmt
;
}
add
;
struct
{
es_out_id_t
*
p_es
;
}
del
;
struct
{
es_out_id_t
*
p_es
;
block_t
*
p_block
;
}
send
;
struct
{
int
i_query
;
bool
b_bool
;
bool
*
pb_bool
;
int
i_int
;
int
*
pi_int
;
int64_t
i_i64
;
vlc_meta_t
*
p_meta
;
vlc_epg_t
*
p_epg
;
es_out_id_t
*
p_es
;
es_format_t
*
p_fmt
;
}
control
;
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