Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
5d3412e1
Commit
5d3412e1
authored
2 years ago
by
Vladimir Stoiakin
Browse files
Options
Downloads
Patches
Plain Diff
meson: make a Speex audio processor a feature
Change-Id: I6542e049809ab2526fa652986a4078f3a9969733
parent
8105fa0d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
meson.build
+2
-4
2 additions, 4 deletions
meson.build
meson_options.txt
+2
-1
2 additions, 1 deletion
meson_options.txt
src/meson.build
+0
-1
0 additions, 1 deletion
src/meson.build
with
4 additions
and
6 deletions
meson.build
+
2
−
4
View file @
5d3412e1
...
...
@@ -29,7 +29,6 @@ deplibavformat = dependency('libavformat', version: '>= 56.40.101')
deplibswscale
=
dependency
(
'libswscale'
,
version
:
'>= 3.1.101'
)
deplibswresample
=
dependency
(
'libswresample'
,
version
:
'>= 1.2.101'
)
deplibavutil
=
dependency
(
'libavutil'
,
version
:
'>= 55.75.100'
)
depfmt
=
dependency
(
'fmt'
,
version
:
'>= 5.3'
)
depyamlcpp
=
dependency
(
'yaml-cpp'
,
version
:
'>= 0.5.1'
,
required
:
false
)
...
...
@@ -110,10 +109,10 @@ conf.set10('HAVE_LIBNATPMP', depnatpmp.found())
depopenssl
=
dependency
(
'openssl'
,
required
:
get_option
(
'name_service'
))
conf
.
set10
(
'HAVE_RINGNS'
,
depopenssl
.
found
())
depwebrtcap
=
dependency
(
'webrtc-audio-processing'
,
required
:
get_option
(
'
aec
'
))
depwebrtcap
=
dependency
(
'webrtc-audio-processing'
,
required
:
get_option
(
'
webrtc_ap
'
))
conf
.
set10
(
'HAVE_WEBRTC_AP'
,
depwebrtcap
.
found
())
depspeexdsp
=
dependency
(
'speexdsp'
)
depspeexdsp
=
dependency
(
'speexdsp'
,
required
:
get_option
(
'speex_ap'
)
)
conf
.
set10
(
'HAVE_SPEEXDSP'
,
depspeexdsp
.
found
())
if
get_option
(
'video'
)
...
...
@@ -161,7 +160,6 @@ endif
if
get_option
(
'tracepoints'
)
conf
.
set
(
'ENABLE_TRACEPOINTS'
,
true
)
deplttngust
=
dependency
(
'lttng-ust'
,
version
:
'>= 2.13'
)
#depliburcu = dependency('liburcu', version: '>= 0.13.1')
else
conf
.
set
(
'ENABLE_TRACEPOINTS'
,
false
)
endif
...
...
This diff is collapsed.
Click to expand it.
meson_options.txt
+
2
−
1
View file @
5d3412e1
...
...
@@ -11,7 +11,8 @@ option('jack', type: 'feature', value: 'auto', description: 'Enable support for
option
(
'portaudio'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable support for PortAudio'
)
option
(
'upnp'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable support for UPnP'
)
option
(
'natpmp'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable support for NAT-PMP'
)
option
(
'aec'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable Acoustic Echo Cancellation'
)
option
(
'webrtc_ap'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable support for WebRTC audio processing'
)
option
(
'speex_ap'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable support for Speex audio processing'
)
option
(
'natpmp_prefix'
,
type
:
'string'
,
value
:
''
,
description
:
'Override a system directory to search for the library "natpmp"'
)
option
(
'tests'
,
type
:
'boolean'
,
value
:
false
,
description
:
'Build tests'
)
...
...
This diff is collapsed.
Click to expand it.
src/meson.build
+
0
−
1
View file @
5d3412e1
...
...
@@ -145,7 +145,6 @@ libjami_dependencies = [
deplibswscale
,
deplibswresample
,
deplibavutil
,
depspeexdsp
,
depfmt
,
depyamlcpp
,
depjsoncpp
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment