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
2173760d
Commit
2173760d
authored
Jan 27, 2003
by
Sam Hocevar
Browse files
* ./src/audio_output/output.c: fixed return with a value in function
returning void.
parent
04b59c91
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/audio_output/output.c
View file @
2173760d
...
...
@@ -2,7 +2,7 @@
* output.c : internal management of output streams for the audio output
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: output.c,v 1.3
3
2003/01/2
3 17:13:28 massiot
Exp $
* $Id: output.c,v 1.3
4
2003/01/2
7 22:50:01 sam
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -211,14 +211,18 @@ int aout_OutputNew( aout_instance_t * p_aout,
*****************************************************************************/
void
aout_OutputDelete
(
aout_instance_t
*
p_aout
)
{
if
(
p_aout
->
output
.
b_error
)
return
0
;
if
(
p_aout
->
output
.
b_error
)
{
return
;
}
module_Unneed
(
p_aout
,
p_aout
->
output
.
p_module
);
aout_FiltersDestroyPipeline
(
p_aout
,
p_aout
->
output
.
pp_filters
,
p_aout
->
output
.
i_nb_filters
);
aout_FifoDestroy
(
p_aout
,
&
p_aout
->
output
.
fifo
);
p_aout
->
output
.
b_error
=
1
;
p_aout
->
output
.
b_error
=
VLC_TRUE
;
}
/*****************************************************************************
...
...
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