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
e7537f3a
Commit
e7537f3a
authored
4 years ago
by
Vladimir Stoiakin
Committed by
Sébastien Blin
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
meson: rename the option from 'webrtc-audio-processing' to 'aec'
Change-Id: I69cc9da36dfbb1258f8f84e9351a6c1c29c2a722
parent
306c536b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
meson.build
+3
-3
3 additions, 3 deletions
meson.build
meson_options.txt
+1
-1
1 addition, 1 deletion
meson_options.txt
src/meson.build
+8
-11
8 additions, 11 deletions
src/meson.build
with
12 additions
and
15 deletions
meson.build
+
3
−
3
View file @
e7537f3a
...
...
@@ -80,9 +80,6 @@ conf.set10('HAVE_PULSE', deplibpulse.found())
depjack
=
dependency
(
'jack'
,
required
:
get_option
(
'jack'
))
conf
.
set10
(
'HAVE_JACK'
,
depjack
.
found
())
depwebrtcap
=
dependency
(
'webrtc-audio-processing'
,
required
:
get_option
(
'webrtc-audio-processing'
))
conf
.
set10
(
'HAVE_WEBRTC_AP'
,
depwebrtcap
.
found
())
depportaudio
=
dependency
(
'portaudio-2.0'
,
required
:
get_option
(
'portaudio'
))
conf
.
set10
(
'HAVE_PORTAUDIO'
,
depportaudio
.
found
())
...
...
@@ -107,6 +104,9 @@ 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'
))
conf
.
set10
(
'HAVE_WEBRTC_AP'
,
depwebrtcap
.
found
())
if
get_option
(
'video'
)
conf
.
set
(
'ENABLE_VIDEO'
,
true
)
if
host_machine
.
system
()
==
'linux'
and
meson
.
get_compiler
(
'cpp'
).
get_define
(
'__ANDROID__'
)
!=
'1'
...
...
This diff is collapsed.
Click to expand it.
meson_options.txt
+
1
−
1
View file @
e7537f3a
...
...
@@ -11,7 +11,7 @@ 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
(
'
webrtc-audio-processing
'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable
support for WebRtc audio processing
'
)
option
(
'
aec
'
,
type
:
'feature'
,
value
:
'auto'
,
description
:
'Enable
Acoustic Echo Cancellation
'
)
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
+
8
−
11
View file @
e7537f3a
...
...
@@ -32,6 +32,7 @@ libjami_sources = files(
'jamidht/p2p.cpp'
,
'jamidht/server_account_manager.cpp'
,
'jamidht/sips_transport_ice.cpp'
,
'media/audio/echo-cancel/null_echo_canceller.cpp'
,
'media/audio/sound/audiofile.cpp'
,
'media/audio/sound/dtmf.cpp'
,
'media/audio/sound/dtmfgenerator.cpp'
,
...
...
@@ -45,9 +46,6 @@ libjami_sources = files(
'media/audio/audio_receive_thread.cpp'
,
'media/audio/audio_rtp_session.cpp'
,
'media/audio/audio_sender.cpp'
,
'media/audio/echo-cancel/echo_canceller.h'
,
'media/audio/echo-cancel/null_echo_canceller.h'
,
'media/audio/echo-cancel/null_echo_canceller.cpp'
,
'media/audio/dcblocker.cpp'
,
'media/audio/dsp.cpp'
,
'media/audio/resampler.cpp'
,
...
...
@@ -162,14 +160,6 @@ if conf.get('HAVE_PULSE') == 1
libjami_dependencies
+=
deplibpulse
endif
if
conf
.
get
(
'HAVE_WEBRTC_AP'
)
==
1
libjami_sources
+=
files
(
'media/audio/echo-cancel/webrtc_echo_canceller.h'
,
'media/audio/echo-cancel/webrtc_echo_canceller.cpp'
)
libjami_dependencies
+=
depwebrtcap
endif
if
conf
.
get
(
'HAVE_JACK'
)
==
1
libjami_sources
+=
files
(
'media/audio/jack/jacklayer.cpp'
...
...
@@ -220,6 +210,13 @@ if conf.get('HAVE_RINGNS') == 1
libjami_dependencies
+=
depopenssl
endif
if
conf
.
get
(
'HAVE_WEBRTC_AP'
)
==
1
libjami_sources
+=
files
(
'media/audio/echo-cancel/webrtc_echo_canceller.cpp'
)
libjami_dependencies
+=
depwebrtcap
endif
if
conf
.
get
(
'ENABLE_VIDEO'
)
libjami_sources
+=
files
(
'client/videomanager.cpp'
,
...
...
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