Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pulseaudio/webrtc-audio-processing
  • ystreet/webrtc-audio-processing
  • lle-bout/webrtc-audio-processing
  • val260/webrtc-audio-processing
  • seungha.yang/webrtc-audio-processing
  • sthibaul/webrtc-audio-processing
  • 1480c1/webrtc-audio-processing
  • neuschaefer/webrtc-audio-processing
  • jbeich/webrtc-audio-processing
  • gdesmott/webrtc-audio-processing
  • arun/webrtc-audio-processing
  • jcsing.lee/webrtc-audio-processing
  • zhifengxingyue/webrtc-audio-processing
  • cel/webrtc-audio-processing
  • zhaofengli/webrtc-audio-processing
  • jbyrnes/webrtc-audio-processing
  • skywhale/webrtc-audio-processing
  • alldarrenamee007/webrtc-audio-processing
  • kcoul/webrtc-audio-processing
  • jpalus/webrtc-audio-processing
  • mchrul/webrtc-audio-processing
  • benjamb/webrtc-audio-processing
  • noorkator/webrtc-audio-processing
  • shr-project/webrtc-audio-processing
  • nirbheek/webrtc-audio-processing
  • flk/webrtc-audio-processing
  • music/webrtc-audio-processing
  • alistair23/webrtc-audio-processing
  • amyspark/webrtc-audio-processing
  • trofi/webrtc-audio-processing
  • alpernebbi/webrtc-audio-processing
31 results
Show changes
Commits on Source (2)
poject('webrtc-audio-processing', 'c', 'cpp',
project('webrtc-audio-processing', 'c', 'cpp',
version : '0.3.1',
meson_version : '>= 0.47',
default_options : [ 'warning_level=1',
......@@ -21,19 +21,16 @@ if ['darwin', 'ios'].contains(host_system)
if host_system == 'ios'
os_cflags += ['-DWEBRTC_IOS']
endif
platform_cflags += ['-D WEBRTC_POSIX']
have_posix = true
elif host_system == 'android'
os_cflags += ['-DWEBRTC_ANDROID', '-DWEBRTC_LINUX', '-DWEBRTC_THREAD_RR', '-DWEBRTC_CLOCK_TYPE_REALTIME']
os_deps += [cc.find_library('log')]
os_deps += [dependency('gnustl', required : get_option('gnustl'))]
platform_cflags += ['-DWEBRTC_POSIX']
have_posix = true
elif host_system == 'linux'
os_cflags += ['-DWEBRTC_LINUX', '-DWEBRTC_THREAD_RR']
os_deps += [cc.find_library('rt', required : false)]
os_deps += [dependency('threads')]
platform_cflags += ['-DWEBRTC_POSIX']
have_posix = true
elif host_system == 'windows'
platform_cflags += ['-DWEBRTC_WIN', '-D_WIN32', '-U__STRICT_ANSI__']
......@@ -41,6 +38,10 @@ elif host_system == 'windows'
have_win = true
endif
if have_posix
platform_cflags += ['-DWEBRTC_POSIX']
endif
arch_cflags = []
have_arm = false
have_armv7 = false
......