Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
02eae249
Commit
02eae249
authored
Jan 12, 2009
by
Laurent Aimar
Browse files
Do not issue input times event when buffering.
parent
c90c5e39
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/input/es_out.c
View file @
02eae249
...
...
@@ -2399,7 +2399,8 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
if
(
f_position
<
0
)
f_position
=
0
;
input_SendEventTimes
(
p_sys
->
p_input
,
f_position
,
i_time
,
i_length
);
if
(
!
p_sys
->
b_buffering
)
input_SendEventTimes
(
p_sys
->
p_input
,
f_position
,
i_time
,
i_length
);
return
VLC_SUCCESS
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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