diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-09-14 08:34:26 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-09-14 16:02:55 +0200 |
commit | 9cf8572d6b6ffc42755f897c1623eb026cdf8c79 (patch) | |
tree | d2962a8da014299b0328edeaa421c0ad288c0d90 /drivers/media/test-drivers/vidtv/vidtv_mux.c | |
parent | f58cac01ab4e0221b3886261ec2a8386cd3d8896 (diff) |
media: vidtv: increment byte and block counters
Add support for incrementing DVBv5 stats for block counters
and post/pre BER byte counts.
For now, the errors won't be incremented yet.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/test-drivers/vidtv/vidtv_mux.c')
-rw-r--r-- | drivers/media/test-drivers/vidtv/vidtv_mux.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/drivers/media/test-drivers/vidtv/vidtv_mux.c b/drivers/media/test-drivers/vidtv/vidtv_mux.c index d1db9dc6dc89..5d1a275d504b 100644 --- a/drivers/media/test-drivers/vidtv/vidtv_mux.c +++ b/drivers/media/test-drivers/vidtv/vidtv_mux.c @@ -381,6 +381,7 @@ static void vidtv_mux_tick(struct work_struct *work) struct vidtv_mux *m = container_of(work, struct vidtv_mux, mpeg_thread); + struct dtv_frontend_properties *c = &m->fe->dtv_property_cache; u32 nbytes; u32 npkts; @@ -411,6 +412,17 @@ static void vidtv_mux_tick(struct work_struct *work) vidtv_mux_clear(m); + /* + * Update bytes and packet counts at DVBv5 stats + * + * For now, both pre and post bit counts are identical, + * but post BER count can be lower than pre BER, if the error + * correction logic discards packages. + */ + c->pre_bit_count.stat[0].uvalue = nbytes; + c->post_bit_count.stat[0].uvalue = nbytes; + c->block_count.stat[0].uvalue += npkts; + usleep_range(VIDTV_SLEEP_USECS, VIDTV_MAX_SLEEP_USECS); } } @@ -435,12 +447,14 @@ void vidtv_mux_stop_thread(struct vidtv_mux *m) } } -struct vidtv_mux *vidtv_mux_init(struct device *dev, +struct vidtv_mux *vidtv_mux_init(struct dvb_frontend *fe, + struct device *dev, struct vidtv_mux_init_args args) { struct vidtv_mux *m = kzalloc(sizeof(*m), GFP_KERNEL); m->dev = dev; + m->fe = fe; m->timing.pcr_period_usecs = args.pcr_period_usecs; m->timing.si_period_usecs = args.si_period_usecs; |