mirror of
https://github.com/rtlsdrblog/rtl-sdr-blog.git
synced 2024-11-10 04:37:37 +01:00
rtl_fm: bugs found by Axiomatic, alkw0ia and cgommer
Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
parent
0c3c356d19
commit
c792c4aeac
@ -187,10 +187,10 @@ void build_fir(struct fm_state *fm)
|
||||
{
|
||||
int i, len;
|
||||
len = fm->downsample;
|
||||
for(i = 0; i < len; i++) {
|
||||
for(i = 0; i < (len/2); i++) {
|
||||
fm->fir[i] = i;
|
||||
}
|
||||
for(i = len-1; i <= 0; i--) {
|
||||
for(i = len-1; i >= (len/2); i--) {
|
||||
fm->fir[i] = len - i;
|
||||
}
|
||||
fm->fir_sum = 0;
|
||||
@ -311,6 +311,8 @@ int mad(int *samples, int len, int step)
|
||||
/* mean average deviation */
|
||||
{
|
||||
int i=0, sum=0, ave=0;
|
||||
if (len == 0)
|
||||
{return 0;}
|
||||
for (i=0; i<len; i+=step) {
|
||||
sum += samples[i];
|
||||
}
|
||||
@ -319,7 +321,7 @@ int mad(int *samples, int len, int step)
|
||||
for (i=0; i<len; i+=step) {
|
||||
sum += abs(samples[i] - ave);
|
||||
}
|
||||
return sum / (len * step);
|
||||
return sum / (len / step);
|
||||
}
|
||||
|
||||
int post_squelch(struct fm_state *fm)
|
||||
|
Loading…
Reference in New Issue
Block a user