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
00eecb8d
Commit
00eecb8d
authored
Jun 28, 2003
by
Laurent Aimar
Browse files
* input.c : call input_DelInfo _after_ that all decoders have been
destroyed as vorbis decoder could add info.
parent
66adf459
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/input/input.c
View file @
00eecb8d
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: input.c,v 1.23
1
2003/06/2
4
1
3:33:48 sam
Exp $
* $Id: input.c,v 1.23
2
2003/06/2
8
1
7:20:41 fenrir
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -570,10 +570,6 @@ static void EndThread( input_thread_t * p_input )
msg_Dbg
(
p_input
,
"%ld loops"
,
p_input
->
c_loops
);
#endif
/* Free info structures */
msg_Dbg
(
p_input
,
"freeing info structures..."
);
input_DelInfo
(
p_input
);
input_DumpStream
(
p_input
);
/* Free all ES and destroy all decoder threads */
...
...
@@ -593,9 +589,14 @@ static void EndThread( input_thread_t * p_input )
input_AccessEnd
(
p_input
);
/* Free info structures XXX destroy es before 'cause vorbis */
msg_Dbg
(
p_input
,
"freeing info structures..."
);
input_DelInfo
(
p_input
);
/* Close the video output that should have been re-attached
* to our object */
p_object
=
vlc_object_find
(
p_input
,
VLC_OBJECT_VOUT
,
FIND_CHILD
);
if
(
p_object
)
{
vlc_object_detach
(
p_object
);
...
...
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