Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dvblast
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
dvblast
Commits
19f28796
Commit
19f28796
authored
Oct 30, 2009
by
Marian Ďurkovič
Committed by
Christophe Massiot
Oct 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* demux.c: Pass through the TDT for DVB compliance.
parent
d3d4ff67
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
NEWS
NEWS
+1
-1
demux.c
demux.c
+11
-0
No files found.
NEWS
View file @
19f28796
...
...
@@ -6,7 +6,7 @@ Changes between 1.0 and 1.1:
* Support for adapters with multiple frontends (-n)
* Control of verbosity level with -q
* Support for TS over raw UDP with -U or /udp in the config file
* EIT
and SDT pass-through for EPG information
* EIT
, SDT and TDT pass-through for EPG information (-e)
* Original TSID kept (randomized TSID via -T)
* Miscellaneous CAM and tuning fixes
* DVB-S diseqc support
demux.c
View file @
19f28796
...
...
@@ -45,6 +45,7 @@
#define SDT_PID 0x11
#define EIT_PID 0x12
#define TDT_PID 0x14
typedef
struct
ts_pid_t
{
...
...
@@ -132,6 +133,8 @@ void demux_Open( void )
SetPID
(
EIT_PID
);
/* EIT */
p_eit_dvbpsi_handle
=
dvbpsi_AttachDemux
(
PSITableCallback
,
NULL
);
SetPID
(
TDT_PID
);
/* TDT */
}
}
...
...
@@ -204,6 +207,14 @@ static void demux_Handle( block_t *p_ts )
{
dvbpsi_PushPacket
(
p_sdt_dvbpsi_handle
,
p_ts
->
p_ts
);
}
else
if
(
b_enable_epg
&&
i_pid
==
TDT_PID
)
{
for
(
i
=
0
;
i
<
i_nb_outputs
;
i
++
)
{
if
(
pp_outputs
[
i
]
->
i_maddr
)
output_Put
(
pp_outputs
[
i
],
p_ts
);
}
}
else
{
for
(
i
=
0
;
i
<
i_nb_sids
;
i
++
)
...
...
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