Commit 48f72a1a authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] drxk: fix CNR calculus

Changeset 8f3741e0 accidentally broke the CNR estimation. It should
be calculated as "a + b - c". However, previously, the subtraction
by c only occurred if SNR would be positive, due to a bad binding
to DVBv3 API.

This also fixes the following warning:
	drivers/media/dvb-frontends/drxk_hard.c:2556:6: warning: variable 'c' set but not used [-Wunused-but-set-variable]
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent f35d09db
......@@ -2628,7 +2628,7 @@ static int GetDVBTSignalToNoise(struct drxk_state *state,
/* log(x) x = (16bits + 16bits) << 15 ->32 bits */
c = Log10Times100(SqrErrIQ);
iMER = a + b;
iMER = a + b - c;
}
*pSignalToNoise = iMER;
......
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