Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
c9aa3522
提交
c9aa3522
authored
2月 16, 2017
作者:
Mike Jerris
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-10050: fix build issues and add mod_video_filter to packages
上级
1f6b66a8
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
25 行增加
和
6 行删除
+25
-6
modules.conf.in
build/modules.conf.in
+1
-1
modules.conf.most
build/modules.conf.most
+1
-0
bootstrap.sh
debian/bootstrap.sh
+2
-0
control-modules
debian/control-modules
+4
-0
freeswitch.spec
freeswitch.spec
+13
-1
Makefile.am
src/mod/applications/mod_video_filter/Makefile.am
+4
-4
没有找到文件。
build/modules.conf.in
浏览文件 @
c9aa3522
#applications/mod_abstraction
#applications/mod_av
#applications/mod_video_filter
#applications/mod_avmd
#applications/mod_bert
#applications/mod_blacklist
...
...
@@ -51,6 +50,7 @@ applications/mod_spandsp
#applications/mod_stress
#applications/mod_translate
applications/mod_valet_parking
#applications/mod_video_filter
#applications/mod_vmd
applications/mod_voicemail
#applications/mod_voicemail_ivr
...
...
build/modules.conf.most
浏览文件 @
c9aa3522
...
...
@@ -48,6 +48,7 @@ applications/mod_spy
applications/mod_stress
applications/mod_translate
applications/mod_valet_parking
applications/mod_video_filter
applications/mod_vmd
applications/mod_voicemail
applications/mod_voicemail_ivr
...
...
debian/bootstrap.sh
浏览文件 @
c9aa3522
...
...
@@ -632,6 +632,7 @@ Depends: \${misc:Depends}, freeswitch (= \${binary:Version}),
freeswitch-mod-stress (= \
${
binary
:Version
}
),
freeswitch-mod-translate (= \
${
binary
:Version
}
),
freeswitch-mod-valet-parking (= \
${
binary
:Version
}
),
freeswitch-mod-video_filter (= \
${
binary
:Version
}
),
freeswitch-mod-voicemail (= \
${
binary
:Version
}
),
freeswitch-mod-voicemail-ivr (= \
${
binary
:Version
}
),
freeswitch-mod-flite (= \
${
binary
:Version
}
),
...
...
@@ -870,6 +871,7 @@ Depends: \${misc:Depends}, freeswitch (= \${binary:Version}),
freeswitch-mod-stress-dbg (= \
${
binary
:Version
}
),
freeswitch-mod-translate-dbg (= \
${
binary
:Version
}
),
freeswitch-mod-valet-parking-dbg (= \
${
binary
:Version
}
),
freeswitch-mod-video_filter-dbg (= \
${
binary
:Version
}
),
freeswitch-mod-voicemail-dbg (= \
${
binary
:Version
}
),
freeswitch-mod-voicemail-ivr-dbg (= \
${
binary
:Version
}
),
freeswitch-mod-flite-dbg (= \
${
binary
:Version
}
),
...
...
debian/control-modules
浏览文件 @
c9aa3522
...
...
@@ -250,6 +250,10 @@ Module: applications/mod_valet_parking
Description: Valet parking
This module implements the valet call parking strategy.
Module: applications/mod_video_filter
Description: Video filter chromakey
This module provides a media bug for chromakey functionality
Module: applications/mod_vmd
Description: Voicemail detection
This module detects voicemail beeps at any frequency in O(1) time.
...
...
freeswitch.spec
浏览文件 @
c9aa3522
...
...
@@ -609,6 +609,14 @@ Provides FreeSWITCH mod_valet_parking. Provides 'Call Parking' in the switch
as opposed to on the phone and allows for a number of options to handle call
retrieval
%package application-video_filter
Summary: FreeSWITCH video filter bugs
Group: System/Libraries
Requires: %{name} = %{version}-%{release}
%description application-video_filter
Provide a chromakey video filter media bug
%package application-voicemail
Summary: FreeSWITCH mod_voicemail
Group: System/Libraries
...
...
@@ -1366,6 +1374,7 @@ Requires: freeswitch-application-soundtouch
Requires: freeswitch-application-spy
Requires: freeswitch-application-stress
Requires: freeswitch-application-valet_parking
Requires: freeswitch-application-video_filter
Requires: freeswitch-application-voicemail
Requires: freeswitch-application-voicemail-ivr
Requires: freeswitch-codec-passthru-amr
...
...
@@ -1446,7 +1455,7 @@ APPLICATION_MODULES_FR="applications/mod_fifo applications/mod_fsk applications/
APPLICATION_MODULES_SZ="applications/mod_sms applications/mod_snapshot applications/mod_snom applications/mod_soundtouch \
applications/mod_spandsp applications/mod_spy applications/mod_stress \
applications/mod_valet_parking applications/mod_translate applications/mod_voicemail \
applications/mod_voicemail_ivr"
applications/mod_voicemail_ivr
applications/mod_video_filter
"
APPLICATIONS_MODULES="$APPLICATION_MODULES_AC $APPLICATION_MODULES_DE $APPLICATION_MODULES_FR $APPLICATION_MODULES_SZ"
...
...
@@ -2121,6 +2130,9 @@ fi
%files application-valet_parking
%{MODINSTDIR}/mod_valet_parking.so*
%files application-video_filter
%{MODINSTDIR}/mod_video_filter.so*
%files application-voicemail
%{MODINSTDIR}/mod_voicemail.so*
...
...
src/mod/applications/mod_video_filter/Makefile.am
浏览文件 @
c9aa3522
...
...
@@ -2,7 +2,7 @@ include $(top_srcdir)/build/modmake.rulesam
MODNAME
=
mod_video_filter
mod_LTLIBRARIES
=
mod_video_filter.la
mod_
av
_la_SOURCES
=
mod_video_filter.c
mod_
av
_la_CFLAGS
=
$(AM_CFLAGS)
mod_
av
_la_LIBADD
=
$(switch_builddir)
/libfreeswitch.la
mod_
av
_la_LDFLAGS
=
-avoid-version
-module
-no-undefined
-shared
-lm
-lz
mod_
video_filter
_la_SOURCES
=
mod_video_filter.c
mod_
video_filter
_la_CFLAGS
=
$(AM_CFLAGS)
mod_
video_filter
_la_LIBADD
=
$(switch_builddir)
/libfreeswitch.la
mod_
video_filter
_la_LDFLAGS
=
-avoid-version
-module
-no-undefined
-shared
-lm
-lz
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论