Skip to content

Commit fc8097a

Browse files
committed
fix typo in remove_environmental_noise
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
1 parent 1f89540 commit fc8097a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/data_handler/data_handler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ int remove_environmental_noise (double *data, int data_len, int sampling_rate, i
323323
{
324324
case NoiseTypes::FIFTY:
325325
res = perform_bandstop (
326-
data, data_len, sampling_rate, 48.0, 62.0, 4, (int)FilterTypes::BUTTERWORTH, 0.0);
326+
data, data_len, sampling_rate, 48.0, 52.0, 4, (int)FilterTypes::BUTTERWORTH, 0.0);
327327
break;
328328
case NoiseTypes::SIXTY:
329329
res = perform_bandstop (

0 commit comments

Comments
 (0)