Browse Source

eit_print: print section numbers

DVB states that EIT present and following should be in two different sections.
master
Christophe Massiot 10 years ago
parent
commit
3bc2a78056
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      dvb/si/eit_print.h

+ 3
- 1
dvb/si/eit_print.h View File

@ -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)
);

Loading…
Cancel
Save