Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
bd133f64
提交
bd133f64
authored
2月 07, 2008
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vid stuff
git-svn-id:
http://svn.freeswitch.org/svn/freeswitch/trunk@7546
d0543943-73ff-0310-b7d9-9358b9ac24b2
上级
b44d74f3
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
58 行增加
和
8 行删除
+58
-8
switch.h
src/include/switch.h
+1
-1
switch_channel.h
src/include/switch_channel.h
+1
-0
mod_sofia.c
src/mod/endpoints/mod_sofia/mod_sofia.c
+2
-0
sofia_glue.c
src/mod/endpoints/mod_sofia/sofia_glue.c
+29
-7
switch_channel.c
src/switch_channel.c
+25
-0
没有找到文件。
src/include/switch.h
浏览文件 @
bd133f64
...
...
@@ -43,7 +43,7 @@
#define SWITCH_END_EXTERN_C
#endif
#define SWITCH_VIDEO_IN_THREADS
#ifndef WIN32
#include <switch_am_config.h>
...
...
src/include/switch_channel.h
浏览文件 @
bd133f64
...
...
@@ -212,6 +212,7 @@ SWITCH_DECLARE(char *) switch_channel_get_uuid(switch_channel_t *channel);
SWITCH_DECLARE
(
switch_status_t
)
switch_channel_set_variable
(
switch_channel_t
*
channel
,
const
char
*
varname
,
const
char
*
value
);
SWITCH_DECLARE
(
switch_status_t
)
switch_channel_set_variable_partner
(
switch_channel_t
*
channel
,
const
char
*
varname
,
const
char
*
value
);
SWITCH_DECLARE
(
const
char
*
)
switch_channel_get_variable_partner
(
switch_channel_t
*
channel
,
const
char
*
varname
);
/*!
\brief Retrieve a variable from a given channel
...
...
src/mod/endpoints/mod_sofia/mod_sofia.c
浏览文件 @
bd133f64
...
...
@@ -1745,6 +1745,8 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session
switch_ivr_transfer_variable
(
session
,
nsession
,
SOFIA_REPLACES_HEADER
);
switch_ivr_transfer_variable
(
session
,
nsession
,
"sip_auto_answer"
);
switch_ivr_transfer_variable
(
session
,
nsession
,
SOFIA_SIP_HEADER_PREFIX_T
);
switch_ivr_transfer_variable
(
session
,
nsession
,
"sip_video_fmtp"
);
if
(
switch_core_session_compare
(
session
,
nsession
))
{
/* It's another sofia channel! so lets cache what they use as a pt for telephone event so
we can keep it the same
...
...
src/mod/endpoints/mod_sofia/sofia_glue.c
浏览文件 @
bd133f64
...
...
@@ -46,6 +46,7 @@ void sofia_glue_set_local_sdp(private_object_t *tech_pvt, const char *ip, uint32
uint32_t
v_port
;
int
use_cng
=
1
;
const
char
*
val
;
const
char
*
pass_fmtp
=
switch_channel_get_variable
(
tech_pvt
->
channel
,
"sip_video_fmtp"
);
if
(
sofia_test_pflag
(
tech_pvt
->
profile
,
PFLAG_SUPRESS_CNG
)
||
((
val
=
switch_channel_get_variable
(
tech_pvt
->
channel
,
"supress_cng"
))
&&
switch_true
(
val
)))
{
...
...
@@ -219,15 +220,15 @@ void sofia_glue_set_local_sdp(private_object_t *tech_pvt, const char *ip, uint32
}
if
(
switch_test_flag
(
tech_pvt
,
TFLAG_VIDEO
)
&&
tech_pvt
->
video_rm_encoding
)
{
if
(
switch_test_flag
(
tech_pvt
,
TFLAG_VIDEO
)
)
{
sofia_glue_tech_choose_video_port
(
tech_pvt
);
if
((
v_port
=
tech_pvt
->
adv_sdp_video_port
))
{
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"m=video %d RTP/AVP"
,
v_port
);
sofia_glue_tech_set_video_codec
(
tech_pvt
,
0
);
/*****************************/
if
(
tech_pvt
->
video_rm_encoding
)
{
sofia_glue_tech_set_video_codec
(
tech_pvt
,
0
);
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
" %d"
,
tech_pvt
->
video_pt
);
}
else
if
(
tech_pvt
->
num_codecs
)
{
int
i
;
...
...
@@ -255,15 +256,30 @@ void sofia_glue_set_local_sdp(private_object_t *tech_pvt, const char *ip, uint32
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"
\n
"
);
if
(
tech_pvt
->
rm_encoding
)
{
if
(
tech_pvt
->
video_rm_encoding
)
{
const
char
*
of
;
rate
=
tech_pvt
->
video_rm_rate
;
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"a=rtpmap:%d %s/%ld
\n
"
,
tech_pvt
->
video_pt
,
tech_pvt
->
video_rm_encoding
,
tech_pvt
->
video_rm_rate
);
if
(
tech_pvt
->
video_fmtp_out
)
{
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"a=fmtp:%d %s
\n
"
,
tech_pvt
->
video_pt
,
tech_pvt
->
video_fmtp_out
);
if
(
switch_channel_get_variable
(
tech_pvt
->
channel
,
SWITCH_SIGNAL_BOND_VARIABLE
))
{
if
((
of
=
switch_channel_get_variable_partner
(
tech_pvt
->
channel
,
"sip_video_fmtp"
)))
{
pass_fmtp
=
of
;
}
}
if
(
!
pass_fmtp
)
{
pass_fmtp
=
tech_pvt
->
video_fmtp_out
;
}
if
(
pass_fmtp
)
{
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"a=fmtp:%d %s
\n
"
,
tech_pvt
->
video_pt
,
pass_fmtp
);
}
}
else
if
(
tech_pvt
->
num_codecs
)
{
int
i
;
int
already_did
[
128
]
=
{
0
};
for
(
i
=
0
;
i
<
tech_pvt
->
num_codecs
;
i
++
)
{
const
switch_codec_implementation_t
*
imp
=
tech_pvt
->
codecs
[
i
];
...
...
@@ -285,6 +301,10 @@ void sofia_glue_set_local_sdp(private_object_t *tech_pvt, const char *ip, uint32
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"a=rtpmap:%d %s/%d
\n
"
,
imp
->
ianacode
,
imp
->
iananame
,
imp
->
samples_per_second
);
if
(
imp
->
fmtp
)
{
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"a=fmtp:%d %s
\n
"
,
imp
->
ianacode
,
imp
->
fmtp
);
}
else
{
if
(
pass_fmtp
)
{
switch_snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"a=fmtp:%d %s
\n
"
,
imp
->
ianacode
,
pass_fmtp
);
}
}
}
}
...
...
@@ -1042,7 +1062,8 @@ switch_status_t sofia_glue_tech_set_video_codec(private_object_t *tech_pvt, int
switch_channel_get_name
(
tech_pvt
->
channel
),
tech_pvt
->
video_rm_encoding
,
tech_pvt
->
video_rm_rate
,
tech_pvt
->
video_codec_ms
);
tech_pvt
->
video_read_frame
.
codec
=
&
tech_pvt
->
video_read_codec
;
tech_pvt
->
fmtp_out
=
switch_core_session_strdup
(
tech_pvt
->
session
,
tech_pvt
->
video_write_codec
.
fmtp_out
);
tech_pvt
->
video_fmtp_out
=
switch_core_session_strdup
(
tech_pvt
->
session
,
tech_pvt
->
video_write_codec
.
fmtp_out
);
}
}
return
SWITCH_STATUS_SUCCESS
;
...
...
@@ -1878,6 +1899,7 @@ uint8_t sofia_glue_negotiate_sdp(switch_core_session_t *session, sdp_session_t *
switch_snprintf
(
tmp
,
sizeof
(
tmp
),
"%d"
,
tech_pvt
->
remote_sdp_video_port
);
switch_channel_set_variable
(
tech_pvt
->
channel
,
SWITCH_REMOTE_VIDEO_IP_VARIABLE
,
tech_pvt
->
remote_sdp_audio_ip
);
switch_channel_set_variable
(
tech_pvt
->
channel
,
SWITCH_REMOTE_VIDEO_PORT_VARIABLE
,
tmp
);
switch_channel_set_variable
(
tech_pvt
->
channel
,
"sip_video_fmtp"
,
tech_pvt
->
video_rm_fmtp
);
break
;
}
else
{
vmatch
=
0
;
...
...
src/switch_channel.c
浏览文件 @
bd133f64
...
...
@@ -416,6 +416,31 @@ SWITCH_DECLARE(const char *) switch_channel_get_variable(switch_channel_t *chann
return
v
;
}
SWITCH_DECLARE
(
const
char
*
)
switch_channel_get_variable_partner
(
switch_channel_t
*
channel
,
const
char
*
varname
)
{
const
char
*
uuid
;
const
char
*
val
=
NULL
;
switch_assert
(
channel
!=
NULL
);
if
(
!
switch_strlen_zero
(
varname
))
{
if
((
uuid
=
switch_channel_get_variable
(
channel
,
SWITCH_SIGNAL_BOND_VARIABLE
)))
{
switch_core_session_t
*
session
;
switch_mutex_lock
(
channel
->
profile_mutex
);
if
((
session
=
switch_core_session_locate
(
uuid
)))
{
switch_channel_t
*
tchannel
=
switch_core_session_get_channel
(
session
);
switch_mutex_lock
(
tchannel
->
profile_mutex
);
val
=
switch_channel_get_variable
(
tchannel
,
varname
);
switch_mutex_unlock
(
tchannel
->
profile_mutex
);
switch_core_session_rwunlock
(
session
);
}
switch_mutex_unlock
(
channel
->
profile_mutex
);
}
}
return
val
;
}
SWITCH_DECLARE
(
void
)
switch_channel_variable_last
(
switch_channel_t
*
channel
)
{
switch_assert
(
channel
!=
NULL
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论