Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
bfa286d3
Commit
bfa286d3
authored
Nov 22, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/input/input.c: fixed previous fix (sout needs to be destroyed after the ES).
parent
6ae3f4f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/input/input.c
src/input/input.c
+7
-7
No files found.
src/input/input.c
View file @
bfa286d3
...
...
@@ -4,7 +4,7 @@
* decoders.
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
* $Id: input.c,v 1.2
59 2003/11/22 12:41:31
gbazin Exp $
* $Id: input.c,v 1.2
60 2003/11/22 13:19:30
gbazin Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -805,6 +805,12 @@ static void EndThread( input_thread_t * p_input )
input_DumpStream
(
p_input
);
/* Free demultiplexer's data */
module_Unneed
(
p_input
,
p_input
->
p_demux
);
/* Free all ES and destroy all decoder threads */
input_EndStream
(
p_input
);
/* Close optional stream output instance */
if
(
p_input
->
stream
.
p_sout
!=
NULL
)
{
...
...
@@ -843,12 +849,6 @@ static void EndThread( input_thread_t * p_input )
/* Free input_thread_sys_t */
free
(
p_input
->
p_sys
);
/* Free demultiplexer's data */
module_Unneed
(
p_input
,
p_input
->
p_demux
);
/* Free all ES and destroy all decoder threads */
input_EndStream
(
p_input
);
/* Destroy the stream_t facilities */
stream_Release
(
p_input
->
s
);
...
...
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