aboutsummaryrefslogtreecommitdiffstats
path: root/apps/grgsm_decode
diff options
context:
space:
mode:
authorPiotr Krysik <ptrkrysik@gmail.com>2017-07-23 22:05:10 +0200
committerPiotr Krysik <ptrkrysik@gmail.com>2017-07-23 22:05:10 +0200
commit2770fc485c7f3ba95856a1d5d7c9243c9744fd5c (patch)
tree5b7861d8d88233ace11d102b659af06b9ef9c329 /apps/grgsm_decode
parent6629abc5e0bf8271c91c8953b1847c7715d7f6af (diff)
Added missing default value of voice-boundary parameter. Fixes #206
Diffstat (limited to 'apps/grgsm_decode')
-rwxr-xr-xapps/grgsm_decode2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/grgsm_decode b/apps/grgsm_decode
index 18536c3..2198bc4 100755
--- a/apps/grgsm_decode
+++ b/apps/grgsm_decode
@@ -319,7 +319,7 @@ if __name__ == '__main__':
"Valid options are " + ", ".join(tch_codecs.keys()))
tch_options.add_option("-o", "--output-tch", dest="speech_output_file", default="/tmp/speech.au.gsm",
help="TCH/F speech output file [default=%default].")
- tch_options.add_option("--voice-boundary", dest="enable_voice_boundary_detection", action="store_true",
+ tch_options.add_option("--voice-boundary", dest="enable_voice_boundary_detection", action="store_true", default=False,
help="Enable voice boundary detection for traffic channels. This can help reduce noice in the output.")
parser.add_option_group(tch_options)