Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
9990be42
提交
9990be42
authored
10月 11, 2013
作者:
Steve Underwood
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Avoid use of config.h in build environment tools in spandsp
上级
1cd6d44b
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1 行增加
和
33 行删除
+1
-33
fax.c
libs/spandsp/src/fax.c
+1
-1
make_at_dictionary.c
libs/spandsp/src/make_at_dictionary.c
+0
-4
make_cielab_luts.c
libs/spandsp/src/make_cielab_luts.c
+0
-9
make_math_fixed_tables.c
libs/spandsp/src/make_math_fixed_tables.c
+0
-4
make_modem_filter.c
libs/spandsp/src/make_modem_filter.c
+0
-10
make_t43_gray_code_tables.c
libs/spandsp/src/make_t43_gray_code_tables.c
+0
-4
super_tone_tx_tests.c
libs/spandsp/tests/super_tone_tx_tests.c
+0
-1
没有找到文件。
libs/spandsp/src/fax.c
浏览文件 @
9990be42
...
@@ -255,7 +255,6 @@ static void fax_set_rx_type(void *user_data, int type, int bit_rate, int short_t
...
@@ -255,7 +255,6 @@ static void fax_set_rx_type(void *user_data, int type, int bit_rate, int short_t
{
{
case
T30_MODEM_V21
:
case
T30_MODEM_V21
:
fax_modems_start_slow_modem
(
t
,
FAX_MODEM_V21_RX
);
fax_modems_start_slow_modem
(
t
,
FAX_MODEM_V21_RX
);
fax_modems_set_rx_handler
(
t
,
(
span_rx_handler_t
)
&
fsk_rx
,
&
t
->
v21_rx
,
(
span_rx_fillin_handler_t
)
&
fsk_rx_fillin
,
&
t
->
v21_rx
);
break
;
break
;
case
T30_MODEM_V17
:
case
T30_MODEM_V17
:
fax_modems_start_fast_modem
(
t
,
FAX_MODEM_V17_RX
,
bit_rate
,
short_train
,
use_hdlc
);
fax_modems_start_fast_modem
(
t
,
FAX_MODEM_V17_RX
,
bit_rate
,
short_train
,
use_hdlc
);
...
@@ -286,6 +285,7 @@ static void fax_set_tx_type(void *user_data, int type, int bit_rate, int short_t
...
@@ -286,6 +285,7 @@ static void fax_set_tx_type(void *user_data, int type, int bit_rate, int short_t
span_log
(
&
s
->
logging
,
SPAN_LOG_FLOW
,
"Set tx type %d
\n
"
,
type
);
span_log
(
&
s
->
logging
,
SPAN_LOG_FLOW
,
"Set tx type %d
\n
"
,
type
);
if
(
t
->
current_tx_type
==
type
)
if
(
t
->
current_tx_type
==
type
)
return
;
return
;
switch
(
type
)
switch
(
type
)
{
{
case
T30_MODEM_PAUSE
:
case
T30_MODEM_PAUSE
:
...
...
libs/spandsp/src/make_at_dictionary.c
浏览文件 @
9990be42
...
@@ -24,10 +24,6 @@
...
@@ -24,10 +24,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
*/
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <inttypes.h>
#include <inttypes.h>
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
...
...
libs/spandsp/src/make_cielab_luts.c
浏览文件 @
9990be42
...
@@ -25,22 +25,13 @@
...
@@ -25,22 +25,13 @@
/*! \file */
/*! \file */
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <inttypes.h>
#include <inttypes.h>
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
#include <fcntl.h>
#include <fcntl.h>
#include <unistd.h>
#include <unistd.h>
#include <memory.h>
#include <memory.h>
#if defined(HAVE_TGMATH_H)
#include <tgmath.h>
#endif
#if defined(HAVE_MATH_H)
#include <math.h>
#include <math.h>
#endif
typedef
struct
typedef
struct
{
{
...
...
libs/spandsp/src/make_math_fixed_tables.c
浏览文件 @
9990be42
...
@@ -24,10 +24,6 @@
...
@@ -24,10 +24,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
*/
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <inttypes.h>
#include <inttypes.h>
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
...
...
libs/spandsp/src/make_modem_filter.c
浏览文件 @
9990be42
...
@@ -24,10 +24,6 @@
...
@@ -24,10 +24,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
*/
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <inttypes.h>
#include <inttypes.h>
#include <stdlib.h>
#include <stdlib.h>
#include <unistd.h>
#include <unistd.h>
...
@@ -35,18 +31,12 @@
...
@@ -35,18 +31,12 @@
#include <stdio.h>
#include <stdio.h>
#include <time.h>
#include <time.h>
#include <fcntl.h>
#include <fcntl.h>
#if defined(HAVE_TGMATH_H)
#include <tgmath.h>
#endif
#if defined(HAVE_MATH_H)
#include <math.h>
#include <math.h>
#endif
#if defined(HAVE_STDBOOL_H)
#if defined(HAVE_STDBOOL_H)
#include <stdbool.h>
#include <stdbool.h>
#else
#else
#include "spandsp/stdbool.h"
#include "spandsp/stdbool.h"
#endif
#endif
#include "floating_fudge.h"
#if defined(__sunos) || defined(__solaris) || defined(__sun)
#if defined(__sunos) || defined(__solaris) || defined(__sun)
#include <getopt.h>
#include <getopt.h>
#endif
#endif
...
...
libs/spandsp/src/make_t43_gray_code_tables.c
浏览文件 @
9990be42
...
@@ -24,10 +24,6 @@
...
@@ -24,10 +24,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
*/
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <inttypes.h>
#include <inttypes.h>
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
...
...
libs/spandsp/tests/super_tone_tx_tests.c
浏览文件 @
9990be42
...
@@ -41,7 +41,6 @@
...
@@ -41,7 +41,6 @@
#include <ctype.h>
#include <ctype.h>
#include <time.h>
#include <time.h>
#include <inttypes.h>
#include <inttypes.h>
#include <sys/socket.h>
#include <sndfile.h>
#include <sndfile.h>
#if defined(HAVE_LIBXML_XMLMEMORY_H)
#if defined(HAVE_LIBXML_XMLMEMORY_H)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论