Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
16c88b6d
Commit
16c88b6d
authored
Jun 28, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not filter out program/epg at the TS demuxer level.
parent
d4c95534
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
modules/demux/ts.c
modules/demux/ts.c
+1
-4
No files found.
modules/demux/ts.c
View file @
16c88b6d
...
...
@@ -2786,9 +2786,6 @@ static void SDTCallBack( demux_t *p_demux, dvbpsi_sdt_t *p_sdt )
p_srv
->
b_eit_present
,
p_srv
->
i_running_status
,
p_srv
->
b_free_ca
);
if
(
p_sys
->
i_current_program
!=
-
1
&&
p_sys
->
i_current_program
!=
p_srv
->
i_service_id
)
continue
;
p_meta
=
vlc_meta_New
();
for
(
p_dr
=
p_srv
->
p_first_descriptor
;
p_dr
;
p_dr
=
p_dr
->
p_next
)
{
...
...
@@ -2965,7 +2962,7 @@ static void EITCallBack( demux_t *p_demux,
vlc_epg_t
*
p_epg
;
msg_Dbg
(
p_demux
,
"EITCallBack called"
);
if
(
!
p_eit
->
b_current_next
||
(
p_sys
->
i_current_program
!=
-
1
&&
p_sys
->
i_current_program
!=
p_eit
->
i_service_id
)
)
if
(
!
p_eit
->
b_current_next
)
{
dvbpsi_DeleteEIT
(
p_eit
);
return
;
...
...
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