Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
00eecb8d
Commit
00eecb8d
authored
Jun 28, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* input.c : call input_DelInfo _after_ that all decoders have been
destroyed as vorbis decoder could add info.
parent
66adf459
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/input/input.c
src/input/input.c
+6
-5
No files found.
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/24 13:33:48 sam
Exp $
* $Id: input.c,v 1.23
2 2003/06/28 17: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