Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
20bb474c
提交
20bb474c
authored
8月 29, 2012
作者:
Robert Jongbloed
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Added T.38 fax support to mod_opal
上级
016550f2
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
147 行增加
和
13 行删除
+147
-13
mod_opal.cpp
src/mod/endpoints/mod_opal/mod_opal.cpp
+134
-13
mod_opal.h
src/mod/endpoints/mod_opal/mod_opal.h
+13
-0
没有找到文件。
src/mod/endpoints/mod_opal/mod_opal.cpp
浏览文件 @
20bb474c
差异被折叠。
点击展开。
src/mod/endpoints/mod_opal/mod_opal.h
浏览文件 @
20bb474c
...
@@ -77,6 +77,12 @@
...
@@ -77,6 +77,12 @@
#define MODNAME "mod_opal"
#define MODNAME "mod_opal"
#ifndef OPAL_CHECK_VERSION
#define OPAL_CHECK_VERSION(a,b,c) 0
#endif
#define HAVE_T38 (OPAL_CHECK_VERSION(3,11,2) && OPAL_T38_CAPABILITY)
class
FSEndPoint
;
class
FSEndPoint
;
class
FSManager
;
class
FSManager
;
...
@@ -248,6 +254,10 @@ class FSConnection : public OpalLocalConnection
...
@@ -248,6 +254,10 @@ class FSConnection : public OpalLocalConnection
virtual
void
OnPatchMediaStream
(
PBoolean
isSource
,
OpalMediaPatch
&
patch
);
virtual
void
OnPatchMediaStream
(
PBoolean
isSource
,
OpalMediaPatch
&
patch
);
virtual
OpalMediaFormatList
GetMediaFormats
()
const
;
virtual
OpalMediaFormatList
GetMediaFormats
()
const
;
virtual
PBoolean
SendUserInputTone
(
char
tone
,
unsigned
duration
);
virtual
PBoolean
SendUserInputTone
(
char
tone
,
unsigned
duration
);
#if HAVE_T38
virtual
void
OnSwitchedT38
(
bool
toT38
,
bool
success
);
virtual
void
OnSwitchingT38
(
bool
toT38
);
#endif
DECLARE_CALLBACK0
(
on_init
);
DECLARE_CALLBACK0
(
on_init
);
DECLARE_CALLBACK0
(
on_destroy
);
DECLARE_CALLBACK0
(
on_destroy
);
...
@@ -294,6 +304,9 @@ class FSConnection : public OpalLocalConnection
...
@@ -294,6 +304,9 @@ class FSConnection : public OpalLocalConnection
protected
:
protected
:
void
SetCodecs
();
void
SetCodecs
();
bool
WaitForMedia
();
bool
WaitForMedia
();
#if HAVE_T38
void
SetT38OptionsFromMediaFormat
(
const
OpalMediaFormat
&
mediaFormat
);
#endif
switch_status_t
read_frame
(
const
OpalMediaType
&
mediaType
,
switch_frame_t
**
frame
,
switch_io_flag_t
flags
);
switch_status_t
read_frame
(
const
OpalMediaType
&
mediaType
,
switch_frame_t
**
frame
,
switch_io_flag_t
flags
);
switch_status_t
write_frame
(
const
OpalMediaType
&
mediaType
,
const
switch_frame_t
*
frame
,
switch_io_flag_t
flags
);
switch_status_t
write_frame
(
const
OpalMediaType
&
mediaType
,
const
switch_frame_t
*
frame
,
switch_io_flag_t
flags
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论