Commit 56ce9eff authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: vidtv: fix initialization of the network_id field at SDT

This field should point to the network ID, and has different
ranges for cable, terrestrial or satellite. It also has
an special range for temporary private usage.

For now, let's use the temporary private one. Once the
Network Information Table (NIT) gets added, this should be
reviewed.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 02578bdf
...@@ -1107,7 +1107,14 @@ struct vidtv_psi_table_sdt *vidtv_psi_sdt_table_init(u16 transport_stream_id) ...@@ -1107,7 +1107,14 @@ struct vidtv_psi_table_sdt *vidtv_psi_sdt_table_init(u16 transport_stream_id)
sdt->header.section_id = 0; sdt->header.section_id = 0;
sdt->header.last_section = 0; sdt->header.last_section = 0;
sdt->network_id = cpu_to_be16(transport_stream_id); /*
* FIXME: The network_id range from 0xFF01 to 0xFFFF is used to
* indicate temporary private use. For now, let's use the first
* value.
* This can be changed to something more useful, when support for
* NIT gets added
*/
sdt->network_id = cpu_to_be16(0xff01);
sdt->reserved = RESERVED; sdt->reserved = RESERVED;
vidtv_psi_sdt_table_update_sec_len(sdt); vidtv_psi_sdt_table_update_sec_len(sdt);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment