Adtec digital DTA-3050 (version 6.02.14) Manual User Manual
Page 74

SDT generation by the DTA. If your SI Generator is to supply all tables, you should disable all tables in the DTA. This can be
accomplished from the Tables menu (Front Panel) or Tables page in the GUI.
<?xml version="1.0" encoding="UTF-8"?> <configuration xmlns:xi=!"http://www.w3.org/2001/XInclude">
<manual_pid_config index="5"> <pid> <pid_in base="16">10</pid_in> <pid_out
base="16">10</pid_out> <stream_type>Private</stream_type> </pid> <pid> <pid_in
base="16">11</pid_in> <pid_out base="16">11</pid_out> <stream_type>Private</stream_type>
</pid> </manual_pid_config> </configuration>
Program Injection
The following sample will pass PID 0x257 from Input 5, and build a program number 9999 (PMT) 0x256 that references it.
<?xml version="1.0" encoding="UTF-8"?> <configuration xmlns:xi="!http://www.w3.org/2001/XInclude">
<manual_pid_config index="5"> <pid> <program_number_out base="10">9999</program_number_out>
<pid_in base="16">0</pid_in> <pid_out base="16">256</pid_out>
<stream_type>PMT</stream_type> </pid> <pid> <program_number_out
base="10">9999</program_number_out> <pid_in base="16">257</pid_in> <pid_out
base="16">257</pid_out> <stream_type>Private</stream_type> </pid> </manual_pid_config>
</configuration>
Elementary Stream Addition
The sample below will pass PIDs Oxcf and Oxd) from Input 5 ans add htem to porgram number 2 sourced from input 2. This
sample is from an MPH injection application. If you wanted to add the MHP objects to additional programs, you would add
additional xml notes with the corresponding <port> and <program_number_out> elements.
<?xml version="1.0" encoding="UTF-8"?> <configuration xmlns:xi="http://www.w3.org/2001/XInclude">
<manual_pid_config index="10"> <pid> <port>2</port>
<program_number_out_base="10">2</program_number_out> <pid_in base="16">cf</pid_in>
<pid_out base="16">cf</pid_out> <stream_type>Type B</stream_type> </pid> </manual_pid_config>
</configuration>
XML Elements
Complete breakdown on all the XML elements:
XML Element
Function
<manual_pid_config_index>
signals the application as to which input to look for the PIDs to pass
<port>
used in conjunction with <program_number_out> and signalls the egress as to which program
(PMT) to update with the injected PIDs.
<pid_in>
signals the ingres as to which PID to look for.
<pid_out>
signals the egress to pass the <pid_in> on the defined value.
<stream_type>
signals the egress (PMT) how to define the injected PIDs.
Operations
66