Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
e41cdcc4
Commit
e41cdcc4
authored
Jan 07, 2008
by
Pierre d'Herbemont
Browse files
src/input.c: Define and set the "can-pause" variable.
parent
24653eff
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/input/input.c
View file @
e41cdcc4
...
...
@@ -108,6 +108,7 @@ static void AppendAttachment( int *pi_attachment, input_attachment_t ***ppp_atta
* - length
* - bookmarks
* - seekable (if you can seek, it doesn't say if 'bar display' has be shown or not, for that check position != 0.0)
* - can-pause
* * For intf callback upon changes
* - intf-change
* TODO explain when Callback is called
...
...
@@ -2265,6 +2266,7 @@ static int InputSourceInit( input_thread_t *p_input,
if
(
demux2_Control
(
in
->
p_demux
,
DEMUX_CAN_PAUSE
,
&
in
->
b_can_pause
)
)
in
->
b_can_pause
=
VLC_FALSE
;
var_SetBool
(
p_input
,
"can-pause"
,
in
->
b_can_pause
);
int
ret
=
demux2_Control
(
in
->
p_demux
,
DEMUX_CAN_SEEK
,
&
val
.
b_bool
);
...
...
@@ -2361,6 +2363,7 @@ static int InputSourceInit( input_thread_t *p_input,
access2_Control
(
in
->
p_access
,
ACCESS_CAN_PAUSE
,
&
in
->
b_can_pause
);
var_SetBool
(
p_input
,
"can-pause"
,
in
->
b_can_pause
);
access2_Control
(
in
->
p_access
,
ACCESS_CAN_SEEK
,
&
val
.
b_bool
);
var_Set
(
p_input
,
"seekable"
,
val
);
...
...
src/input/var.c
View file @
e41cdcc4
...
...
@@ -448,6 +448,9 @@ void input_ConfigVarInit ( input_thread_t *p_input )
var_Create
(
p_input
,
"seekable"
,
VLC_VAR_BOOL
);
val
.
b_bool
=
VLC_TRUE
;
/* Fixed later*/
var_Change
(
p_input
,
"seekable"
,
VLC_VAR_SETVALUE
,
&
val
,
NULL
);
var_Create
(
p_input
,
"can-pause"
,
VLC_VAR_BOOL
);
val
.
b_bool
=
VLC_TRUE
;
/* Fixed later*/
var_Change
(
p_input
,
"can-pause"
,
VLC_VAR_SETVALUE
,
&
val
,
NULL
);
/* */
var_Create
(
p_input
,
"access-filter"
,
VLC_VAR_STRING
|
VLC_VAR_DOINHERIT
);
...
...
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