Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
c304eaf3
提交
c304eaf3
authored
8月 18, 2016
作者:
Piotr Gregor
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-9138: [avmd] Add config to vanilla folder
上级
346a60ed
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
63 行增加
和
1 行删除
+63
-1
avmd.conf.xml
conf/vanilla/autoload_configs/avmd.conf.xml
+61
-0
freeswitch.spec
freeswitch.spec
+2
-1
没有找到文件。
conf/vanilla/autoload_configs/avmd.conf.xml
0 → 100644
浏览文件 @
c304eaf3
<configuration
name=
"avmd.conf"
description=
"AVMD config"
>
<settings>
<!-- Edit these settings to change default behaviour
of each avmd session. Settings can be overwritten
by values passed dynamically per each session -->
<!-- Global settings -->
<!-- define/undefine this to enable/disable logging of avmd
intermediate computations to log -->
<param
name=
"debug"
value=
"0"
/>
<!-- define/undef this to enable/disable verbose logging (and reporting to the console)
of detection status and other diagnostics like parameters avmd session has been started with,
change of configuration parameters, beep detection status after session ended
(stop event is fired independently of this setting and beep status included there) -->
<param
name=
"report_status"
value=
"1"
/>
<!-- define/undefine this to enable/disable faster computation
of arcus cosine - table will be created mapping floats
to integers and returning arc cos values given these integer
indices into table -->
<param
name=
"fast_math"
value=
"0"
/>
<!-- Global settings end -->
<!-- Per call (session) settings. These settings can be overwritten
with custom/different values per each avmd session -->
<!-- define/undefine this to classify avmd beep detection as valid
only when there is required number of consecutive elements
in the SMA buffer without reset -->
<param
name=
"require_continuous_streak"
value=
"1"
/>
<!-- required number of consecutive elements in the SMA buffer
without reset. This parameter helps to avoid false beeps, bigger this value is
smaller the probability of getting false detection -->
<param
name=
"sample_n_continuous_streak"
value=
"15"
/>
<!-- define number of samples to skip starting from the beginning
of the frame and/or after reset has happened. This serves the purpose of skipping first few
estimations on each frame, as these estimations may be inaccurate. This parameter also helps
to give more robust detections when it's value is increased (up to scertain limit of about 60). -->
<param
name=
"sample_n_to_skip"
value=
"15"
/>
<!-- define/undefine this to enable/disable simplified estimation
of frequency based on approximation of sin(x) with (x)
in the range x=[0,PI/2] -->
<param
name=
"simplified_estimation"
value=
"1"
/>
<!-- define/undefine to enable/disable avmd on internal channel -->
<param
name=
"inbound_channel"
value=
"0"
/>
<!-- define/undefine to enable/disable avmd on external channel -->
<param
name=
"outbound_channel"
value=
"1"
/>
<!-- Per call settings end -->
</settings>
</configuration>
freeswitch.spec
浏览文件 @
c304eaf3
...
...
@@ -1172,7 +1172,7 @@ Requires: %{name} = %{version}-%{release}
Implements TGML Tone Generation for the FreeSWITCH open source telephony platform
######################################################################################################################
# FreeSWITCH Programing Language Modules
# FreeSWITCH Program
m
ing Language Modules
######################################################################################################################
%package lua
...
...
@@ -1882,6 +1882,7 @@ fi
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/acl.conf.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/alsa.conf.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/amqp.conf.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/avmd.conf.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/blacklist.conf.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/callcenter.conf.xml
%config(noreplace) %attr(0640, freeswitch, daemon) %{sysconfdir}/autoload_configs/cdr_csv.conf.xml
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论