Ongoing fixes and improvements, transient suppressor is gone. Also, dropping isac because it doesn't seem to be useful, and is just build system deadweight now. Upstream references: Version: 131.0.6778.200 WebRTC: 79aff54b0fa9238ce3518dd9eaf9610cd6f22e82 Chromium: 2a19506ad24af755f2a215a4c61f775393e0db42
49 lines
1.0 KiB
Meson
49 lines
1.0 KiB
Meson
api_sources = [
|
|
'audio/audio_frame.cc',
|
|
'audio/audio_processing.cc',
|
|
'audio/audio_processing_statistics.cc',
|
|
'audio/channel_layout.cc',
|
|
'audio/echo_canceller3_config.cc',
|
|
'audio_codecs/audio_decoder.cc',
|
|
'audio_codecs/audio_encoder.cc',
|
|
'rtp_headers.cc',
|
|
'rtp_packet_info.cc',
|
|
'task_queue/task_queue_base.cc',
|
|
'units/data_rate.cc',
|
|
'units/data_size.cc',
|
|
'units/frequency.cc',
|
|
'units/time_delta.cc',
|
|
'units/timestamp.cc',
|
|
'video/color_space.cc',
|
|
'video/hdr_metadata.cc',
|
|
'video/video_content_type.cc',
|
|
'video/video_timing.cc',
|
|
]
|
|
|
|
api_headers = [
|
|
['', 'array_view.h'],
|
|
['', 'scoped_refptr.h'],
|
|
['audio', 'echo_canceller3_config.h'],
|
|
['audio', 'echo_control.h'],
|
|
]
|
|
|
|
foreach h : api_headers
|
|
install_headers(
|
|
join_paths(h[0], h[1]),
|
|
subdir: join_paths(include_subdir, 'api', h[0])
|
|
)
|
|
endforeach
|
|
|
|
|
|
libapi = static_library('libapi',
|
|
api_sources,
|
|
dependencies: common_deps,
|
|
include_directories: webrtc_inc,
|
|
cpp_args : common_cxxflags
|
|
)
|
|
|
|
api_dep = declare_dependency(
|
|
link_with: libapi
|
|
)
|
|
|