From 3bc2a78056d5d9f2dab50c0533607750b4744fca Mon Sep 17 00:00:00 2001 From: Christophe Massiot Date: Mon, 27 Apr 2015 12:36:27 +0200 Subject: [PATCH] eit_print: print section numbers DVB states that EIT present and following should be in two different sections. --- dvb/si/eit_print.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dvb/si/eit_print.h b/dvb/si/eit_print.h index 45dbed3..6c4d53c 100644 --- a/dvb/si/eit_print.h +++ b/dvb/si/eit_print.h @@ -76,12 +76,14 @@ static inline void eit_print(uint8_t *p_eit, break; default: pf_print(print_opaque, - "new EIT tableid=0x%02x type=%s service_id=%u version=%u%s tsid=%u" + "new EIT tableid=0x%02x type=%s service_id=%u version=%u%s section=%u/%u tsid=%u" " onid=%u", i_tid, psz_tid, eit_get_sid(p_eit), psi_get_version(p_eit), !psi_get_current(p_eit) ? " (next)" : "", + psi_get_section(p_eit), + psi_get_lastsection(p_eit), eit_get_tsid(p_eit), eit_get_onid(p_eit) );