reduce FSK_MIN_STRENGTH to 0.005

This commit is contained in:
Kamal Mostafa 2011-06-23 23:05:35 -07:00
parent db594f2e5f
commit 2d1310febf
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ fsk_frame_analyze( fsk_plan *fskp, float *samples, float samples_per_bit,
v += databit_strengths[i];
v /= (fskp->n_data_bits + 3);
#define FSK_MIN_STRENGTH 0.05
#define FSK_MIN_STRENGTH 0.005
if ( v < FSK_MIN_STRENGTH )
return 0.0;