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
67c4bc39
Commit
67c4bc39
authored
Apr 26, 2002
by
Johan Bilien
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* plugins/mpeg_system/mpeg_ts.c : fixed --program option
parent
62d636ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
plugins/mpeg_system/mpeg_ts.c
plugins/mpeg_system/mpeg_ts.c
+3
-3
No files found.
plugins/mpeg_system/mpeg_ts.c
View file @
67c4bc39
...
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: mpeg_ts.c,v 1.
9 2002/04/25 02:10:33
jobi Exp $
* $Id: mpeg_ts.c,v 1.
10 2002/04/26 20:18:26
jobi Exp $
*
* Authors: Henri Fallon <henri@via.ecp.fr>
* Johan Bilien <jobi@via.ecp.fr>
...
...
@@ -642,7 +642,7 @@ static void TSDecodePMT( input_thread_t * p_input, es_descriptor_t * p_es )
{
p_pgrm_to_select
=
input_FindProgram
(
p_input
,
i_id
);
if
(
p_pgrm_to_select
||
p_pgrm_to_select
==
p_es
->
p_pgrm
)
if
(
p_pgrm_to_select
&&
p_pgrm_to_select
==
p_es
->
p_pgrm
)
p_input
->
pf_set_program
(
p_input
,
p_pgrm_to_select
);
}
else
...
...
@@ -801,7 +801,7 @@ void TS_DVBPSI_HandlePMT( input_thread_t * p_input, dvbpsi_pmt_t * p_new_pmt )
p_pgrm_demux
=
(
pgrm_ts_data_t
*
)
p_pgrm
->
p_demux_data
;
p_pgrm_demux
->
i_pcr_pid
=
p_new_pmt
->
i_pcr_pid
;
if
(
!
p_new_pmt
->
b_current_next
||
p_pgrm_demux
->
i_pmt_version
==
PMT_UNINITIALIZED
)
{
...
...
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