Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
be6739e1
提交
be6739e1
authored
7月 21, 2012
作者:
Steve Underwood
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Updates to spands test data
上级
fd8c576c
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
363 行增加
和
349 行删除
+363
-349
tones.dtd
libs/spandsp/spandsp/tones.dtd
+2
-0
tsb85.xml
libs/spandsp/spandsp/tsb85.xml
+77
-73
v17_v32bis_tx_constellation_maps.h
libs/spandsp/src/v17_v32bis_tx_constellation_maps.h
+248
-248
v29tx_constellation_maps.h
libs/spandsp/src/v29tx_constellation_maps.h
+36
-28
没有找到文件。
libs/spandsp/spandsp/tones.dtd
浏览文件 @
be6739e1
...
...
@@ -35,6 +35,7 @@
<!ELEMENT call-waiting-tone (step)* >
<!ATTLIST call-waiting-tone
domain CDATA #IMPLIED
type CDATA #IMPLIED
>
<!ELEMENT pay-tone (step)* >
<!ATTLIST pay-tone
...
...
@@ -190,4 +191,5 @@
level CDATA #IMPLIED
length CDATA #IMPLIED
recorded-announcement CDATA #IMPLIED
recognition-length CDATA #IMPLIED
>
libs/spandsp/spandsp/tsb85.xml
浏览文件 @
be6739e1
差异被折叠。
点击展开。
libs/spandsp/src/v17_v32bis_tx_constellation_maps.h
浏览文件 @
be6739e1
差异被折叠。
点击展开。
libs/spandsp/src/v29tx_constellation_maps.h
浏览文件 @
be6739e1
...
...
@@ -24,18 +24,26 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#if !defined(FP_SCALE)
#if defined(SPANDSP_USE_FIXED_POINT)
#define FP_SCALE(x) ((int16_t) x)
#else
#define FP_SCALE(x) (x)
#endif
#endif
#if defined(SPANDSP_USE_FIXED_POINT)
static
const
complexi16_t
v29_abab_constellation
[
6
]
=
#else
static
const
complexf_t
v29_abab_constellation
[
6
]
=
#endif
{
{
3
,
-
3
},
/* 315deg high 9600 */
{
-
3
,
0
},
/* 180deg low */
{
1
,
-
1
},
/* 315deg low 7200 */
{
-
3
,
0
},
/* 180deg low */
{
0
,
-
3
},
/* 270deg low 4800 */
{
-
3
,
0
}
/* 180deg low */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
-
3
.
0
f
)},
/* 315deg high 9600 */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 180deg low */
{
FP_SCALE
(
1
.
0
f
),
FP_SCALE
(
-
1
.
0
f
)},
/* 315deg low 7200 */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 180deg low */
{
FP_SCALE
(
0
.
0
f
),
FP_SCALE
(
-
3
.
0
f
)},
/* 270deg low 4800 */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)}
/* 180deg low */
};
#if defined(SPANDSP_USE_FIXED_POINT)
...
...
@@ -44,12 +52,12 @@ static const complexi16_t v29_cdcd_constellation[6] =
static
const
complexf_t
v29_cdcd_constellation
[
6
]
=
#endif
{
{
3
,
0
},
/* 0deg low 9600 */
{
-
3
,
3
},
/* 135deg high */
{
3
,
0
},
/* 0deg low 7200 */
{
-
1
,
1
},
/* 135deg low */
{
3
,
0
},
/* 0deg low 4800 */
{
0
,
3
}
/* 90deg low */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 0deg low 9600 */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
3
.
0
f
)},
/* 135deg high */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 0deg low 7200 */
{
FP_SCALE
(
-
1
.
0
f
),
FP_SCALE
(
1
.
0
f
)},
/* 135deg low */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 0deg low 4800 */
{
FP_SCALE
(
0
.
0
f
),
FP_SCALE
(
3
.
0
f
)}
/* 90deg low */
};
#if defined(SPANDSP_USE_FIXED_POINT)
...
...
@@ -58,22 +66,22 @@ static const complexi16_t v29_9600_constellation[16] =
static
const
complexf_t
v29_9600_constellation
[
16
]
=
#endif
{
{
3
,
0
},
/* 0deg low */
{
1
,
1
},
/* 45deg low */
{
0
,
3
},
/* 90deg low */
{
-
1
,
1
},
/* 135deg low */
{
-
3
,
0
},
/* 180deg low */
{
-
1
,
-
1
},
/* 225deg low */
{
0
,
-
3
},
/* 270deg low */
{
1
,
-
1
},
/* 315deg low */
{
5
,
0
},
/* 0deg high */
{
3
,
3
},
/* 45deg high */
{
0
,
5
},
/* 90deg high */
{
-
3
,
3
},
/* 135deg high */
{
-
5
,
0
},
/* 180deg high */
{
-
3
,
-
3
},
/* 225deg high */
{
0
,
-
5
},
/* 270deg high */
{
3
,
-
3
}
/* 315deg high */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 0deg low */
{
FP_SCALE
(
1
.
0
f
),
FP_SCALE
(
1
.
0
f
)},
/* 45deg low */
{
FP_SCALE
(
0
.
0
f
),
FP_SCALE
(
3
.
0
f
)},
/* 90deg low */
{
FP_SCALE
(
-
1
.
0
f
),
FP_SCALE
(
1
.
0
f
)},
/* 135deg low */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 180deg low */
{
FP_SCALE
(
-
1
.
0
f
),
FP_SCALE
(
-
1
.
0
f
)},
/* 225deg low */
{
FP_SCALE
(
0
.
0
f
),
FP_SCALE
(
-
3
.
0
f
)},
/* 270deg low */
{
FP_SCALE
(
1
.
0
f
),
FP_SCALE
(
-
1
.
0
f
)},
/* 315deg low */
{
FP_SCALE
(
5
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 0deg high */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
3
.
0
f
)},
/* 45deg high */
{
FP_SCALE
(
0
.
0
f
),
FP_SCALE
(
5
.
0
f
)},
/* 90deg high */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
3
.
0
f
)},
/* 135deg high */
{
FP_SCALE
(
-
5
.
0
f
),
FP_SCALE
(
0
.
0
f
)},
/* 180deg high */
{
FP_SCALE
(
-
3
.
0
f
),
FP_SCALE
(
-
3
.
0
f
)},
/* 225deg high */
{
FP_SCALE
(
0
.
0
f
),
FP_SCALE
(
-
5
.
0
f
)},
/* 270deg high */
{
FP_SCALE
(
3
.
0
f
),
FP_SCALE
(
-
3
.
0
f
)}
/* 315deg high */
};
/*- End of file ------------------------------------------------------------*/
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论