Disabled boundary check by default

This commit is contained in:
Piotr Krysik 2016-06-29 14:59:18 +02:00
parent 7aa290fc54
commit 1bfe1e09c7
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@
<param>
<name>Voice boundary detection</name>
<key>boundary_check</key>
<value>True</value>
<value>False</value>
<type>bool</type>
<option>
<name>False</name>

View File

@ -62,7 +62,7 @@ namespace gr {
* class. gsm::tch_f_decoder::make is the public interface for
* creating new instances.
*/
static sptr make(tch_mode mode, const std::string &file, bool boundary_check=true);
static sptr make(tch_mode mode, const std::string &file, bool boundary_check=false);
};