1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
#
# modules.mk
#
# Copyright (C) 2010 Creytiv.com
#
# External libraries:
#
# USE_ALSA ALSA audio driver
# USE_AMR Adaptive Multi-Rate (AMR) audio codec
# USE_AVCAPTURE AVFoundation video capture for OSX/iOS
# USE_AVCODEC avcodec video codec module
# USE_AVFORMAT avformat video source module
# USE_BV32 BroadVoice32 Wideband Audio codec
# USE_CAIRO Cairo module
# USE_CONS Console input driver
# USE_COREAUDIO MacOSX Coreaudio audio driver
# USE_EVDEV Event Device module
# USE_G711 G.711 audio codec
# USE_G722 G.722 audio codec
# USE_G722_1 G.722.1 audio codec
# USE_G726 G.726 audio codec
# USE_GSM GSM audio codec
# USE_GST Gstreamer audio module
# USE_ILBC iLBC audio codec
# USE_ISAC iSAC audio codec
# USE_L16 L16 audio codec
# USE_LIBSRTP Secure RTP module using libsrtp
# USE_MPG123 Use mpg123
# USE_OPUS Opus audio codec
# USE_OSS OSS audio driver
# USE_PLC Packet Loss Concealment
# USE_PORTAUDIO Portaudio audio driver
# USE_SDL libSDL video output
# USE_SILK SILK (Skype) audio codec
# USE_SNDFILE sndfile wav dumper
# USE_SPEEX Speex audio codec
# USE_SPEEX_AEC Speex Acoustic Echo Canceller
# USE_SPEEX_PP Speex preprocessor
# USE_SRTP Secure RTP module using libre
# USE_STDIO stdio input driver
# USE_SYSLOG Syslog module
# USE_V4L Video4Linux module
# USE_V4L2 Video4Linux2 module
# USE_WINWAVE Windows audio driver
# USE_X11 X11 video output
#
# Default is enabled
MOD_AUTODETECT := 1
ifneq ($(MOD_AUTODETECT),)
USE_CONS := 1
USE_G711 := 1
USE_L16 := 1
ifneq ($(OS),win32)
USE_ALSA := $(shell [ -f $(SYSROOT)/include/alsa/asoundlib.h ] || \
[ -f $(SYSROOT_ALT)/include/alsa/asoundlib.h ] && echo "yes")
USE_AMR := $(shell [ -d $(SYSROOT)/include/opencore-amrnb ] || \
[ -d $(SYSROOT_ALT)/include/opencore-amrnb ] || \
[ -d $(SYSROOT)/local/include/amrnb ] || \
[ -d $(SYSROOT)/include/amrnb ] && echo "yes")
USE_AVCODEC := $(shell [ -f $(SYSROOT)/include/libavcodec/avcodec.h ] || \
[ -f $(SYSROOT)/local/include/libavcodec/avcodec.h ] || \
[ -f $(SYSROOT_ALT)/include/libavcodec/avcodec.h ] && echo "yes")
USE_AVFORMAT := $(shell [ -f $(SYSROOT)/include/libavformat/avformat.h ] || \
[ -f $(SYSROOT)/local/include/libavformat/avformat.h ] || \
[ -f $(SYSROOT_ALT)/include/libavformat/avformat.h ] && echo "yes")
USE_BV32 := $(shell [ -f $(SYSROOT)/include/bv32/bv32.h ] || \
[ -f $(SYSROOT)/local/include/bv32/bv32.h ] && echo "yes")
USE_CAIRO := $(shell [ -f $(SYSROOT)/include/cairo/cairo.h ] || \
[ -f $(SYSROOT)/local/include/cairo/cairo.h ] || \
[ -f $(SYSROOT_ALT)/include/cairo/cairo.h ] && echo "yes")
USE_DTLS := $(shell [ -f $(SYSROOT)/include/openssl/dtls1.h ] || \
[ -f $(SYSROOT)/local/include/openssl/dtls1.h ] || \
[ -f $(SYSROOT_ALT)/include/openssl/dtls1.h ] && echo "yes")
USE_DTLS_SRTP := $(shell [ -f $(SYSROOT)/include/openssl/srtp.h ] || \
[ -f $(SYSROOT)/local/include/openssl/srtp.h ] || \
[ -f $(SYSROOT_ALT)/include/openssl/srtp.h ] && echo "yes")
USE_G722 := $(shell [ -f $(SYSROOT)/include/spandsp/g722.h ] || \
[ -f $(SYSROOT_ALT)/include/spandsp/g722.h ] || \
[ -f $(SYSROOT)/local/include/spandsp/g722.h ] && echo "yes")
USE_G722_1 := $(shell [ -f $(SYSROOT)/include/g722_1.h ] || \
[ -f $(SYSROOT_ALT)/include/g722_1.h ] || \
[ -f $(SYSROOT)/local/include/g722_1.h ] && echo "yes")
USE_G726 := $(shell [ -f $(SYSROOT)/include/spandsp/g726.h ] || \
[ -f $(SYSROOT_ALT)/include/spandsp/g726.h ] || \
[ -f $(SYSROOT)/local/include/spandsp/g726.h ] && echo "yes")
USE_GSM := $(shell [ -f $(SYSROOT)/include/gsm.h ] || \
[ -f $(SYSROOT_ALT)/include/gsm.h ] || \
[ -f $(SYSROOT)/include/gsm/gsm.h ] || \
[ -f $(SYSROOT)/local/include/gsm.h ] || \
[ -f $(SYSROOT)/local/include/gsm/gsm.h ] && echo "yes")
USE_GST := $(shell [ -f $(SYSROOT)/include/gstreamer-0.10/gst/gst.h ] || \
[ -f $(SYSROOT_ALT)/include/gstreamer-0.10/gst/gst.h ] && echo "yes")
USE_ILBC := $(shell [ -f $(SYSROOT)/include/iLBC_define.h ] || \
[ -f $(SYSROOT)/local/include/iLBC_define.h ] && echo "yes")
USE_ISAC := $(shell [ -f $(SYSROOT)/include/isac.h ] || \
[ -f $(SYSROOT)/local/include/isac.h ] && echo "yes")
USE_MPG123 := $(shell [ -f $(SYSROOT)/include/mpg123.h ] || \
[ -f $(SYSROOT)/local/include/mpg123.h ] || \
[ -f $(SYSROOT_ALT)/include/mpg123.h ] && echo "yes")
USE_OPUS := $(shell [ -f $(SYSROOT)/include/opus/opus.h ] || \
[ -f $(SYSROOT_ALT)/include/opus/opus.h ] || \
[ -f $(SYSROOT)/local/include/opus/opus.h ] && echo "yes")
USE_OSS := $(shell [ -f $(SYSROOT)/include/soundcard.h ] || \
[ -f $(SYSROOT)/include/linux/soundcard.h ] || \
[ -f $(SYSROOT)/include/sys/soundcard.h ] && echo "yes")
USE_PLC := $(shell [ -f $(SYSROOT)/include/spandsp/plc.h ] || \
[ -f $(SYSROOT_ALT)/include/spandsp/plc.h ] || \
[ -f $(SYSROOT)/local/include/spandsp/plc.h ] && echo "yes")
USE_PORTAUDIO := $(shell [ -f $(SYSROOT)/local/include/portaudio.h ] || \
[ -f $(SYSROOT)/include/portaudio.h ] || \
[ -f $(SYSROOT_ALT)/include/portaudio.h ] && echo "yes")
USE_SDL := $(shell [ -f $(SYSROOT)/include/SDL/SDL.h ] || \
[ -f $(SYSROOT)/local/include/SDL/SDL.h ] || \
[ -f $(SYSROOT_ALT)/include/SDL/SDl.h ] && echo "yes")
USE_SDL2 := $(shell [ -f $(SYSROOT)/include/SDL2/SDL.h ] || \
[ -f $(SYSROOT)/local/include/SDL2/SDL.h ] || \
[ -f $(SYSROOT_ALT)/include/SDL2/SDl.h ] && echo "yes")
USE_SILK := $(shell [ -f $(SYSROOT)/include/silk/SKP_Silk_SDK_API.h ] || \
[ -f $(SYSROOT_ALT)/include/silk/SKP_Silk_SDK_API.h ] || \
[ -f $(SYSROOT)/local/include/silk/SKP_Silk_SDK_API.h ] && echo "yes")
USE_SNDFILE := $(shell [ -f $(SYSROOT)/include/sndfile.h ] || \
[ -f $(SYSROOT_ALT)/include/sndfile.h ] && echo "yes")
USE_STDIO := $(shell [ -f $(SYSROOT)/include/termios.h ] && echo "yes")
HAVE_SPEEXDSP := $(shell \
[ -f $(SYSROOT)/local/lib/libspeexdsp$(LIB_SUFFIX) ] || \
[ -f $(SYSROOT)/lib/libspeexdsp$(LIB_SUFFIX) ] || \
[ -f $(SYSROOT_ALT)/lib/libspeexdsp$(LIB_SUFFIX) ] && echo "yes")
ifeq ($(HAVE_SPEEXDSP),)
HAVE_SPEEXDSP := \
$(shell find $(SYSROOT)/lib -name libspeexdsp$(LIB_SUFFIX) 2>/dev/null)
endif
USE_SPEEX := $(shell [ -f $(SYSROOT)/include/speex.h ] || \
[ -f $(SYSROOT)/include/speex/speex.h ] || \
[ -f $(SYSROOT)/local/include/speex.h ] || \
[ -f $(SYSROOT)/local/include/speex/speex.h ] || \
[ -f $(SYSROOT_ALT)/include/speex/speex.h ] && echo "yes")
USE_SPEEX_AEC := $(shell [ -f $(SYSROOT)/include/speex/speex_echo.h ] || \
[ -f $(SYSROOT)/local/include/speex/speex_echo.h ] || \
[ -f $(SYSROOT_ALT)/include/speex/speex_echo.h ] && echo "yes")
USE_SPEEX_PP := $(shell [ -f $(SYSROOT)/include/speex_preprocess.h ] || \
[ -f $(SYSROOT)/local/include/speex_preprocess.h ] || \
[ -f $(SYSROOT)/local/include/speex/speex_preprocess.h ] || \
[ -f $(SYSROOT_ALT)/include/speex/speex_preprocess.h ] || \
[ -f $(SYSROOT)/include/speex/speex_preprocess.h ] && echo "yes")
USE_LIBSRTP := $(shell [ -f $(SYSROOT)/include/srtp/srtp.h ] || \
[ -f $(SYSROOT_ALT)/include/srtp/srtp.h ] || \
[ -f $(SYSROOT)/local/include/srtp/srtp.h ] && echo "yes")
USE_SYSLOG := $(shell [ -f $(SYSROOT)/include/syslog.h ] || \
[ -f $(SYSROOT_ALT)/include/syslog.h ] || \
[ -f $(SYSROOT)/local/include/syslog.h ] && echo "yes")
USE_V4L := $(shell [ -f $(SYSROOT)/include/libv4l1.h ] || \
[ -f $(SYSROOT)/local/include/libv4l1.h ] \
&& echo "yes")
HAVE_LIBV4L2 := $(shell [ -f $(SYSROOT)/include/libv4l2.h ] || \
[ -f $(SYSROOT)/local/include/libv4l2.h ] \
&& echo "yes")
USE_V4L2 := $(shell [ -f $(SYSROOT)/include/linux/videodev2.h ] || \
[ -f $(SYSROOT)/local/include/linux/videodev2.h ] || \
[ -f $(SYSROOT)/include/sys/videoio.h ] \
&& echo "yes")
USE_X11 := $(shell [ -f $(SYSROOT)/include/X11/Xlib.h ] || \
[ -f $(SYSROOT)/local/include/X11/Xlib.h ] || \
[ -f $(SYSROOT_ALT)/include/X11/Xlib.h ] && echo "yes")
USE_VPX := $(shell [ -f $(SYSROOT)/include/vpx/vp8.h ] \
|| [ -f $(SYSROOT)/local/include/vpx/vp8.h ] \
|| [ -f $(SYSROOT_ALT)/include/vpx/vp8.h ] \
&& echo "yes")
endif
# Platform specific modules
ifeq ($(OS),darwin)
USE_COREAUDIO := yes
USE_OPENGL := yes
USE_AVFOUNDATION := \
$(shell [ -d /System/Library/Frameworks/AVFoundation.framework ] \
&& echo "yes")
ifneq ($(USE_AVFOUNDATION),)
USE_AVCAPTURE := yes
else
USE_QTCAPTURE := yes
endif
endif
ifeq ($(OS),linux)
USE_EVDEV := $(shell [ -f $(SYSROOT)/include/linux/input.h ] && echo "yes")
MODULES += dtmfio
endif
ifeq ($(OS),win32)
USE_WINWAVE := yes
MODULES += wincons
endif
endif
# ------------------------------------------------------------------------- #
MODULES += $(EXTRA_MODULES)
MODULES += stun turn ice natbd auloop presence
MODULES += menu contact vumeter mwi account natpmp httpd
MODULES += selftest
MODULES += srtp
MODULES += uuid
ifneq ($(HAVE_PTHREAD),)
MODULES += aubridge aufile
endif
ifneq ($(USE_VIDEO),)
MODULES += vidloop selfview vidbridge
ifneq ($(HAVE_PTHREAD),)
MODULES += fakevideo
endif
endif
ifneq ($(USE_ALSA),)
MODULES += alsa
endif
ifneq ($(USE_AMR),)
MODULES += amr
endif
ifneq ($(USE_AVCAPTURE),)
MODULES += avcapture
endif
ifneq ($(USE_AVCODEC),)
MODULES += avcodec
ifneq ($(USE_AVFORMAT),)
MODULES += avformat
endif
endif
ifneq ($(USE_BV32),)
MODULES += bv32
endif
ifneq ($(USE_CAIRO),)
MODULES += cairo
ifneq ($(USE_MPG123),)
MODULES += rst
endif
endif
ifneq ($(USE_CONS),)
MODULES += cons
endif
ifneq ($(USE_COREAUDIO),)
MODULES += coreaudio
endif
ifneq ($(USE_DTLS_SRTP),)
MODULES += dtls_srtp
endif
ifneq ($(USE_QTCAPTURE),)
MODULES += qtcapture
CFLAGS += -DQTCAPTURE_RUNLOOP
endif
ifneq ($(USE_EVDEV),)
MODULES += evdev
endif
ifneq ($(USE_G711),)
MODULES += g711
endif
ifneq ($(USE_G722),)
MODULES += g722
endif
ifneq ($(USE_G722_1),)
MODULES += g7221
endif
ifneq ($(USE_G726),)
MODULES += g726
endif
ifneq ($(USE_GSM),)
MODULES += gsm
endif
ifneq ($(USE_GST),)
MODULES += gst
endif
ifneq ($(USE_ILBC),)
MODULES += ilbc
endif
ifneq ($(USE_ISAC),)
MODULES += isac
endif
ifneq ($(USE_L16),)
MODULES += l16
endif
ifneq ($(USE_OPENGL),)
MODULES += opengl
endif
ifneq ($(USE_OPENGLES),)
MODULES += opengles
endif
ifneq ($(USE_OPUS),)
MODULES += opus
endif
ifneq ($(USE_OSS),)
MODULES += oss
endif
ifneq ($(USE_PLC),)
MODULES += plc
endif
ifneq ($(USE_PORTAUDIO),)
MODULES += portaudio
endif
ifneq ($(USE_SDL),)
MODULES += sdl
endif
ifneq ($(USE_SDL2),)
MODULES += sdl2
endif
ifneq ($(USE_SILK),)
MODULES += silk
endif
ifneq ($(USE_SNDFILE),)
MODULES += sndfile
endif
ifneq ($(USE_SPEEX),)
MODULES += speex
endif
ifneq ($(USE_SPEEX_AEC),)
MODULES += speex_aec
endif
ifneq ($(USE_SPEEX_PP),)
MODULES += speex_pp
endif
ifneq ($(USE_LIBSRTP),)
MODULES += libsrtp
endif
ifneq ($(USE_STDIO),)
MODULES += stdio
endif
ifneq ($(USE_SYSLOG),)
MODULES += syslog
endif
ifneq ($(USE_V4L),)
MODULES += v4l
endif
ifneq ($(USE_V4L2),)
MODULES += v4l2
endif
ifneq ($(USE_VPX),)
MODULES += vpx
endif
ifneq ($(USE_WINWAVE),)
MODULES += winwave
endif
ifneq ($(USE_X11),)
MODULES += x11 x11grab
endif
|