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
591bebd1
Commit
591bebd1
authored
Mar 02, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* More consistency in the p_input->stream management.
parent
775bd58d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
plugins/mpeg/input_ps.c
plugins/mpeg/input_ps.c
+1
-2
src/input/input_programs.c
src/input/input_programs.c
+6
-1
No files found.
plugins/mpeg/input_ps.c
View file @
591bebd1
...
...
@@ -2,7 +2,7 @@
* input_ps.c: PS demux and packet management
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: input_ps.c,v 1.
9 2001/02/20 08:47:25 stef
Exp $
* $Id: input_ps.c,v 1.
10 2001/03/02 15:51:22 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -301,7 +301,6 @@ static void PSInit( input_thread_t * p_input )
*****************************************************************************/
static
void
PSEnd
(
input_thread_t
*
p_input
)
{
free
(
p_input
->
stream
.
p_demux_data
);
free
(
p_input
->
p_plugin_data
);
}
...
...
src/input/input_programs.c
View file @
591bebd1
...
...
@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: input_programs.c,v 1.3
8 2001/03/02 13:49:37
massiot Exp $
* $Id: input_programs.c,v 1.3
9 2001/03/02 15:51:22
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -87,6 +87,11 @@ void input_EndStream( input_thread_t * p_input )
{
input_DelES
(
p_input
,
p_input
->
stream
.
pp_es
[
0
]
);
}
if
(
p_input
->
stream
.
p_demux_data
!=
NULL
)
{
free
(
p_input
->
stream
.
p_demux_data
);
}
}
/*****************************************************************************
...
...
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