Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
cefb3563
提交
cefb3563
authored
3月 18, 2006
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
git-svn-id:
http://svn.freeswitch.org/svn/freeswitch/trunk@871
d0543943-73ff-0310-b7d9-9358b9ac24b2
上级
bef74390
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
65 行增加
和
23 行删除
+65
-23
mod_g729.c
src/mod/codecs/mod_g729/mod_g729.c
+11
-5
mod_l16.c
src/mod/codecs/mod_l16/mod_l16.c
+2
-2
mod_wanpipe.c
src/mod/endpoints/mod_wanpipe/mod_wanpipe.c
+31
-10
switch_core.c
src/switch_core.c
+20
-5
switch_ivr.c
src/switch_ivr.c
+1
-1
没有找到文件。
src/mod/codecs/mod_g729/mod_g729.c
浏览文件 @
cefb3563
...
...
@@ -57,7 +57,7 @@ static switch_status switch_g729_init(switch_codec *codec, switch_codec_flag fla
}
else
{
if
(
encoding
)
{
g729_init_coder
(
&
context
->
encoder_object
,
1
);
g729_init_coder
(
&
context
->
encoder_object
,
0
);
}
if
(
decoding
)
{
...
...
@@ -121,6 +121,7 @@ static switch_status switch_g729_encode(switch_codec *codec,
return
SWITCH_STATUS_FALSE
;
}
}
return
SWITCH_STATUS_SUCCESS
;
}
...
...
@@ -144,7 +145,6 @@ static switch_status switch_g729_decode(switch_codec *codec,
int
plen
=
10
;
if
(
!
context
)
{
return
SWITCH_STATUS_FALSE
;
}
...
...
@@ -165,6 +165,7 @@ static switch_status switch_g729_decode(switch_codec *codec,
}
if
(
encoded_data_len
%
divisor
==
0
)
{
uint8_t
*
test
;
int
loops
=
(
int
)
encoded_data_len
/
divisor
;
...
...
@@ -176,6 +177,13 @@ static switch_status switch_g729_decode(switch_codec *codec,
unsigned
int
new_len
=
0
;
test
=
(
uint8_t
*
)
encoded_data
;
if
(
*
test
==
0
&&
*
(
test
+
1
)
==
0
)
{
*
decoded_data_len
=
(
encoded_data_len
/
divisor
)
*
160
;
memset
(
decoded_data
,
0
,
*
decoded_data_len
);
return
SWITCH_STATUS_SUCCESS
;
}
for
(
x
=
0
;
x
<
loops
&&
new_len
<
*
decoded_data_len
;
x
++
)
{
g729_decoder
(
&
context
->
decoder_object
,
ddp
,
edp
,
plen
);
...
...
@@ -191,13 +199,11 @@ static switch_status switch_g729_decode(switch_codec *codec,
}
else
{
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"buffer overflow!!!
\n
"
);
return
SWITCH_STATUS_FALSE
;
}
}
}
else
{
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"yo this frame is an odd size [%d]
\n
"
,
encoded_data_len
);
return
SWITCH_STATUS_FALSE
;
}
...
...
@@ -237,7 +243,7 @@ static const switch_codec_implementation g729_8k_implementation = {
/*.encoded_bytes_per_frame */
20
,
/*.number_of_channels */
1
,
/*.pref_frames_per_packet */
1
,
/*.max_frames_per_packet */
24
,
/*.max_frames_per_packet */
1
,
/*.init */
switch_g729_init
,
/*.encode */
switch_g729_encode
,
/*.decode */
switch_g729_decode
,
...
...
src/mod/codecs/mod_l16/mod_l16.c
浏览文件 @
cefb3563
...
...
@@ -59,7 +59,7 @@ static switch_status switch_raw_encode(switch_codec *codec,
{
/* NOOP indicates that the audio in is already the same as the audio out, so no conversion was necessary. */
if
(
codec
->
implementation
->
samples_per_second
!=
other_codec
->
implementation
->
samples_per_second
)
{
if
(
codec
&&
other_codec
&&
codec
->
implementation
->
samples_per_second
!=
other_codec
->
implementation
->
samples_per_second
)
{
memcpy
(
encoded_data
,
decoded_data
,
decoded_data_len
);
*
encoded_data_len
=
decoded_data_len
;
return
SWITCH_STATUS_RESAMPLE
;
...
...
@@ -75,7 +75,7 @@ static switch_status switch_raw_decode(switch_codec *codec,
void
*
decoded_data
,
size_t
*
decoded_data_len
,
int
*
decoded_rate
,
unsigned
int
*
flag
)
{
if
(
codec
->
implementation
->
samples_per_second
!=
other_codec
->
implementation
->
samples_per_second
)
{
if
(
codec
&&
other_codec
&&
codec
->
implementation
->
samples_per_second
!=
other_codec
->
implementation
->
samples_per_second
)
{
memcpy
(
decoded_data
,
encoded_data
,
encoded_data_len
);
*
decoded_data_len
=
encoded_data_len
;
return
SWITCH_STATUS_RESAMPLE
;
...
...
src/mod/endpoints/mod_wanpipe/mod_wanpipe.c
浏览文件 @
cefb3563
...
...
@@ -224,10 +224,11 @@ static switch_status wanpipe_on_init(switch_core_session *session)
{
struct
private_object
*
tech_pvt
;
switch_channel
*
channel
=
NULL
;
wanpipe_tdm_api_t
tdm_api
;
wanpipe_tdm_api_t
tdm_api
=
{}
;
int
err
=
0
;
int
mtu_mru
;
unsigned
int
rate
=
8000
;
int
new_mtu
=
((
globals
.
mtu
/
8
)
/
2
);
channel
=
switch_core_session_get_channel
(
session
);
assert
(
channel
!=
NULL
);
...
...
@@ -238,13 +239,20 @@ static switch_status wanpipe_on_init(switch_core_session *session)
tech_pvt
->
read_frame
.
data
=
tech_pvt
->
databuf
;
err
=
sangoma_tdm_set_codec
(
tech_pvt
->
socket
,
&
tdm_api
,
WP_SLINEAR
);
mtu_mru
=
sangoma_tdm_get_usr_mtu_mru
(
tech_pvt
->
socket
,
&
tdm_api
);
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"WANPIPE INIT MTU is %d
\n
"
,
mtu_mru
);
if
(
mtu_mru
!=
globals
.
mtu
)
{
sangoma_tdm_set_usr_period
(
tech_pvt
->
socket
,
&
tdm_api
,
(
globals
.
mtu
/
8
)
/
2
);
sangoma_tdm_set_usr_period
(
tech_pvt
->
socket
,
&
tdm_api
,
40
);
err
=
sangoma_tdm_set_usr_period
(
tech_pvt
->
socket
,
&
tdm_api
,
new_mtu
);
mtu_mru
=
sangoma_tdm_get_usr_mtu_mru
(
tech_pvt
->
socket
,
&
tdm_api
);
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"ADJUSTED MTU is %d
\n
"
,
mtu_mru
);
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"ADJUSTED MTU AFTER SETTING IT TO %d is %d %d [%s]
\n
"
,
new_mtu
,
mtu_mru
,
err
,
strerror
(
err
));
if
(
mtu_mru
!=
globals
.
mtu
)
{
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"Failure to adjust MTU
\n
"
);
switch_channel_hangup
(
channel
);
return
SWITCH_STATUS_FALSE
;
}
}
if
(
switch_core_codec_init
...
...
@@ -287,6 +295,10 @@ static switch_status wanpipe_on_init(switch_core_session *session)
teletone_dtmf_detect_init
(
&
tech_pvt
->
dtmf_detect
,
rate
);
if
(
switch_test_flag
(
tech_pvt
,
TFLAG_NOSIG
))
{
switch_channel_answer
(
channel
);
}
/* Move Channel's State Machine to RING */
switch_channel_set_state
(
channel
,
CS_RING
);
...
...
@@ -366,6 +378,17 @@ static switch_status wanpipe_on_loopback(switch_core_session *session)
static
switch_status
wanpipe_on_transmit
(
switch_core_session
*
session
)
{
struct
private_object
*
tech_pvt
;
switch_channel
*
channel
;
channel
=
switch_core_session_get_channel
(
session
);
assert
(
channel
!=
NULL
);
tech_pvt
=
switch_core_session_get_private
(
session
);
assert
(
tech_pvt
!=
NULL
);
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"WANPIPE TRANSMIT
\n
"
);
return
SWITCH_STATUS_SUCCESS
;
}
...
...
@@ -461,7 +484,6 @@ static switch_status wanpipe_outgoing_channel(switch_core_session *session, swit
return
SWITCH_STATUS_GENERR
;
}
switch_set_flag
(
tech_pvt
,
TFLAG_NOSIG
);
switch_channel_answer
(
channel
);
}
else
{
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"Invalid address
\n
"
);
switch_core_session_destroy
(
new_session
);
...
...
@@ -634,8 +656,8 @@ static switch_status wanpipe_read_frame(switch_core_session *session, switch_fra
}
}
if
(
tech_pvt
->
skip_read_frames
)
{
memset
(
tech_pvt
->
read_frame
.
data
,
255
,
tech_pvt
->
read_frame
.
datalen
);
if
(
tech_pvt
->
skip_read_frames
>
0
)
{
memset
(
tech_pvt
->
read_frame
.
data
,
0
,
tech_pvt
->
read_frame
.
datalen
);
tech_pvt
->
skip_read_frames
--
;
}
...
...
@@ -666,8 +688,6 @@ static switch_status wanpipe_write_frame(switch_core_session *session, switch_fr
assert
(
tech_pvt
!=
NULL
);
//printf("write %d\n", frame->datalen);
while
(
tech_pvt
->
dtmf_buffer
&&
bwrote
<
frame
->
datalen
&&
bytes
>
0
&&
(
inuse
=
switch_buffer_inuse
(
tech_pvt
->
dtmf_buffer
))
>
0
)
{
if
((
bread
=
switch_buffer_read
(
tech_pvt
->
dtmf_buffer
,
dtmf
,
globals
.
mtu
))
<
globals
.
mtu
)
{
while
(
bread
<
globals
.
mtu
)
{
...
...
@@ -712,7 +732,7 @@ static switch_status wanpipe_write_frame(switch_core_session *session, switch_fr
write
(
tech_pvt
->
fd
,
bp
,
(
int
)
globals
.
mtu
);
#endif
towrite
=
bytes
>=
globals
.
mtu
?
globals
.
mtu
:
bytes
;
//printf("write %d\n", towrite);
res
=
sangoma_sendmsg_socket
(
tech_pvt
->
socket
,
&
tech_pvt
->
hdrframe
,
sizeof
(
tech_pvt
->
hdrframe
),
bp
,
towrite
,
0
);
if
(
res
<
0
)
{
...
...
@@ -731,7 +751,8 @@ static switch_status wanpipe_write_frame(switch_core_session *session, switch_fr
res
=
0
;
}
}
//printf("write %d %d\n", frame->datalen, status);
return
status
;
}
...
...
src/switch_core.c
浏览文件 @
cefb3563
...
...
@@ -1047,6 +1047,9 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
unsigned
int
flag
=
0
,
need_codec
=
0
,
perfect
=
0
;
switch_io_flag
io_flag
=
SWITCH_IO_FLAG_NOOP
;
assert
(
frame
->
codec
!=
NULL
);
/* if you think this code is redundant.... too bad! I like to understand what I'm doing */
if
((
session
->
write_codec
&&
frame
->
codec
&&
session
->
write_codec
->
implementation
!=
frame
->
codec
->
implementation
))
{
need_codec
=
TRUE
;
...
...
@@ -1071,6 +1074,8 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
session
->
write_codec
->
implementation
->
samples_per_second
,
session
->
raw_write_frame
.
data
,
&
session
->
raw_write_frame
.
datalen
,
&
session
->
raw_write_frame
.
rate
,
&
flag
);
switch
(
status
)
{
case
SWITCH_STATUS_RESAMPLE
:
write_frame
=
&
session
->
raw_write_frame
;
...
...
@@ -1114,6 +1119,8 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
write_frame
->
datalen
=
session
->
write_resampler
->
to_len
*
2
;
write_frame
->
rate
=
session
->
write_resampler
->
to_rate
;
}
if
(
session
->
write_codec
)
{
if
(
write_frame
->
datalen
==
session
->
write_codec
->
implementation
->
bytes_per_frame
)
{
perfect
=
TRUE
;
...
...
@@ -1132,11 +1139,13 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
}
}
if
(
!
(
switch_buffer_write
(
session
->
raw_write_buffer
,
write_frame
->
data
,
write_frame
->
datalen
)))
{
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"Write Buffer Failed!
\n
"
);
return
SWITCH_STATUS_MEMERR
;
}
}
if
(
perfect
)
{
enc_frame
=
write_frame
;
session
->
enc_write_frame
.
datalen
=
session
->
enc_write_frame
.
buflen
;
...
...
@@ -1175,6 +1184,11 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
size_t
frames
=
(
used
/
bytes
);
status
=
SWITCH_STATUS_SUCCESS
;
if
(
frames
)
{
size_t
x
;
for
(
x
=
0
;
x
<
frames
;
x
++
)
{
...
...
@@ -1184,6 +1198,8 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
enc_frame
=
&
session
->
raw_write_frame
;
session
->
raw_write_frame
.
rate
=
session
->
write_codec
->
implementation
->
samples_per_second
;
session
->
enc_write_frame
.
datalen
=
session
->
enc_write_frame
.
buflen
;
status
=
switch_core_codec_encode
(
session
->
write_codec
,
frame
->
codec
,
enc_frame
->
data
,
...
...
@@ -1193,8 +1209,7 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
&
session
->
enc_write_frame
.
datalen
,
&
session
->
enc_write_frame
.
rate
,
&
flag
);
switch
(
status
)
{
case
SWITCH_STATUS_RESAMPLE
:
write_frame
=
&
session
->
enc_write_frame
;
...
...
@@ -1240,16 +1255,16 @@ SWITCH_DECLARE(switch_status) switch_core_session_write_frame(switch_core_sessio
write_frame
->
datalen
=
session
->
read_resampler
->
to_len
*
2
;
write_frame
->
rate
=
session
->
read_resampler
->
to_rate
;
}
status
=
perform_write
(
session
,
write_frame
,
timeout
,
io_flag
,
stream_id
);
return
perform_write
(
session
,
write_frame
,
timeout
,
io_flag
,
stream_id
);
}
}
return
status
;
}
}
}
}
else
{
status
=
perform_write
(
session
,
frame
,
timeout
,
io_flag
,
stream_id
);
return
perform_write
(
session
,
frame
,
timeout
,
io_flag
,
stream_id
);
}
return
status
;
}
...
...
src/switch_ivr.c
浏览文件 @
cefb3563
...
...
@@ -763,7 +763,7 @@ static void *audio_bridge_thread(switch_thread *thread, void *obj)
if
(
switch_core_session_read_frame
(
session_a
,
&
read_frame
,
-
1
,
stream_id
)
==
SWITCH_STATUS_SUCCESS
&&
read_frame
->
datalen
)
{
if
(
switch_core_session_write_frame
(
session_b
,
read_frame
,
-
1
,
stream_id
)
!=
SWITCH_STATUS_SUCCESS
)
{
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"write: %s Bad Frame....
Bubye!
\n
"
,
switch_channel_get_name
(
chan_b
)
);
switch_console_printf
(
SWITCH_CHANNEL_CONSOLE
,
"write: %s Bad Frame....
[%d] Bubye!
\n
"
,
switch_channel_get_name
(
chan_b
),
read_frame
->
datalen
);
data
->
running
=
-
1
;
}
}
else
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论