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
95a10916
Commit
95a10916
authored
Aug 01, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ts.c: arggg, bad copy/past.
parent
b62b2827
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/demux/mpeg/ts.c
modules/demux/mpeg/ts.c
+4
-4
No files found.
modules/demux/mpeg/ts.c
View file @
95a10916
...
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: ts.c,v 1.3
0 2003/08/01 18:02:06
fenrir Exp $
* $Id: ts.c,v 1.3
1 2003/08/01 18:49:51
fenrir Exp $
*
* Authors: Henri Fallon <henri@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
...
...
@@ -1278,16 +1278,16 @@ static void TS_DVBPSI_HandlePMT( input_thread_t * p_input,
/* Delete all ES in this program except the PSI. We start from the
* end because i_es_number gets decremented after each deletion. */
for
(
i_loop
=
p_
es
->
p_
pgrm
->
i_es_number
;
i_loop
>
0
;
)
for
(
i_loop
=
p_pgrm
->
i_es_number
;
i_loop
>
0
;
)
{
es_ts_data_t
*
p_es_demux
;
i_loop
--
;
p_es_demux
=
(
es_ts_data_t
*
)
p_
es
->
p_
pgrm
->
pp_es
[
i_loop
]
->
p_demux_data
;
p_pgrm
->
pp_es
[
i_loop
]
->
p_demux_data
;
if
(
!
p_es_demux
->
b_psi
)
{
input_DelES
(
p_input
,
p_
es
->
p_
pgrm
->
pp_es
[
i_loop
]
);
input_DelES
(
p_input
,
p_pgrm
->
pp_es
[
i_loop
]
);
}
}
...
...
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