Removed the DecodedText snr limitation

This commit is contained in:
Jordan Sherer 2019-11-20 14:39:10 -05:00
parent 43a6dbc42d
commit fc4a6d35a5

View File

@ -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();
}