From b4c1b2f81b0d5aeb9460941335a3f19198c78bce Mon Sep 17 00:00:00 2001 From: rjkm Date: Mon, 18 Jan 2021 16:07:39 +0100 Subject: [PATCH] 0x7a is corrct --- octoscan/octoscan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/octoscan/octoscan.c b/octoscan/octoscan.c index 0aa75e6..52c12d0 100644 --- a/octoscan/octoscan.c +++ b/octoscan/octoscan.c @@ -985,7 +985,8 @@ static int pmt_cb(struct sfilter *sf) s->ttx = epid; else if (hasdesc(0x59, buf + c + 5, eslen)) s->sub = epid; - else if (hasdesc(0x6a, buf + c + 5, eslen)) { + else if (hasdesc(0x6a, buf + c + 5, eslen) || + hasdesc(0x7a, buf + c + 5, eslen)) { if (s->anum < MAX_ANUM) s->apid[s->anum++] = epid; }