Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
d7455f37
Commit
d7455f37
authored
Oct 26, 2009
by
Marian Ďurkovič
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display time info also when DVB MPEG-TS is received over network
parent
2d55ac82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/demux/ts.c
modules/demux/ts.c
+4
-2
No files found.
modules/demux/ts.c
View file @
d7455f37
...
...
@@ -1142,7 +1142,7 @@ static int DVBEventInformation( demux_t *p_demux, int64_t *pi_time, int64_t *pi_
if
(
pi_time
)
*
pi_time
=
0
;
if
(
p_sys
->
b_access_control
&&
p_sys
->
i_dvb_length
>
0
)
if
(
p_sys
->
i_dvb_length
>
0
)
{
/* FIXME we should not use time() but read the date from the tdt */
const
time_t
t
=
time
(
NULL
);
...
...
@@ -3028,7 +3028,9 @@ static void EITCallBack( demux_t *p_demux,
}
if
(
p_epg
->
i_event
>
0
)
{
if
(
p_eit
->
i_service_id
==
p_sys
->
i_current_program
&&
b_current_following
)
if
(
b_current_following
&&
(
p_sys
->
i_current_program
==
-
1
||
p_sys
->
i_current_program
==
p_eit
->
i_service_id
)
)
{
p_sys
->
i_dvb_length
=
0
;
p_sys
->
i_dvb_start
=
0
;
...
...
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