From fc4a6d35a574e040b7f9c0fddba4936b32068a8f Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 20 Nov 2019 14:39:10 -0500 Subject: [PATCH] Removed the DecodedText snr limitation --- decodedtext.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/decodedtext.cpp b/decodedtext.cpp index 0810fbd..ecb539e 100644 --- a/decodedtext.cpp +++ b/decodedtext.cpp @@ -62,11 +62,6 @@ DecodedText::DecodedText (QString const& the_string, bool contest_mode, QString bits_ = bits(); - // don't even try to unpack -24dB frames...they are *very* likely to be false decodes... - if(snr() <= -24){ - return; - } - tryUnpack(); }