Commit 6333c5b9 authored by Sašo Kiselkov's avatar Sašo Kiselkov

Fixed bad generation of EIT sections - should use i_service_id not i_ts_id for the table extension.

parent feab57cd
......@@ -554,7 +554,7 @@ static dvbpsi_psi_section_t* NewEITSection(dvbpsi_eit_t* p_eit, int i_table_id,
p_result->b_private_indicator = 1;
p_result->i_length = 15; /* header: 11B + CRC32 */
p_result->i_extension = p_eit->i_ts_id;
p_result->i_extension = p_eit->i_service_id;
p_result->i_version = p_eit->i_version;
p_result->b_current_next = p_eit->b_current_next;
p_result->i_number = 0;
......
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