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
GSoC
GSoC2018
macOS
vlc
Commits
2852aba4
Commit
2852aba4
authored
Nov 29, 2009
by
Rémi Denis-Courmont
Browse files
Fix another potential audio output dead lock
parent
15442228
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/audio_output/output.c
View file @
2852aba4
...
...
@@ -336,6 +336,14 @@ aout_buffer_t * aout_OutputNextBuffer( aout_instance_t * p_aout,
p_aout
->
output
.
b_starving
=
0
;
p_aout
->
output
.
fifo
.
p_first
=
p_buffer
->
p_next
;
if
(
p_buffer
->
p_next
==
NULL
)
{
p_aout
->
output
.
fifo
.
pp_last
=
&
p_aout
->
output
.
fifo
.
p_first
;
}
aout_unlock_output_fifo
(
p_aout
);
if
(
!
b_can_sleek
&&
(
(
p_buffer
->
i_pts
-
start_date
>
AOUT_PTS_TOLERANCE
)
||
(
start_date
-
p_buffer
->
i_pts
>
AOUT_PTS_TOLERANCE
)
)
)
...
...
@@ -358,12 +366,5 @@ aout_buffer_t * aout_OutputNextBuffer( aout_instance_t * p_aout,
aout_unlock_input_fifos
(
p_aout
);
}
p_aout
->
output
.
fifo
.
p_first
=
p_buffer
->
p_next
;
if
(
p_buffer
->
p_next
==
NULL
)
{
p_aout
->
output
.
fifo
.
pp_last
=
&
p_aout
->
output
.
fifo
.
p_first
;
}
aout_unlock_output_fifo
(
p_aout
);
return
p_buffer
;
}
Write
Preview
Supports
Markdown
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