164
164
165
165
# srt code path
166
166
if [[ $SRS_SRT == YES ]]; then
167
- SrsSRTRoot=" ${SRS_WORKDIR} /src/srt"
168
167
LibSRTRoot=" ${SRS_OBJS_DIR} /srt/include" ; LibSRTfile=" ${SRS_OBJS_DIR} /srt/lib/libsrt.a"
169
168
if [[ $SRS_SHARED_SRT == YES ]]; then LibSRTfile=" -L${SRS_OBJS_DIR} /srt/lib -lsrt" ; fi
170
169
fi
@@ -200,7 +199,7 @@ MODULE_ID="CORE"
200
199
MODULE_DEPENDS=()
201
200
ModuleLibIncs=(${SRS_OBJS_DIR} )
202
201
MODULE_FILES=(" srs_core" " srs_core_version5" " srs_core_autofree" " srs_core_performance"
203
- " srs_core_time" " srs_core_platform" )
202
+ " srs_core_time" " srs_core_platform" " srs_core_lock " )
204
203
CORE_INCS=" src/core" ; MODULE_DIR=${CORE_INCS} . auto/modules.sh
205
204
CORE_OBJS=" ${MODULE_OBJS[@]} "
206
205
#
@@ -228,6 +227,10 @@ MODULE_FILES=("srs_protocol_amf0" "srs_protocol_io" "srs_protocol_conn" "srs_pro
228
227
" srs_protocol_raw_avc" " srs_protocol_rtsp_stack" " srs_protocol_http_stack" " srs_protocol_kbps" " srs_protocol_json"
229
228
" srs_protocol_format" " srs_protocol_log" " srs_protocol_st" " srs_protocol_http_client"
230
229
" srs_protocol_http_conn" " srs_protocol_rtmp_conn" )
230
+ if [[ $SRS_SRT == YES ]]; then
231
+ MODULE_FILES+=(" srs_protocol_srt" )
232
+ ModuleLibIncs+=(${LibSRTRoot} )
233
+ fi
231
234
if [[ $SRS_RTC == YES ]]; then
232
235
MODULE_FILES+=(" srs_protocol_rtc_stun" )
233
236
ModuleLibIncs+=(${LibSrtpRoot} )
@@ -237,16 +240,6 @@ if [[ $SRS_FFMPEG_FIT == YES ]]; then
237
240
fi
238
241
PROTOCOL_INCS=" src/protocol" ; MODULE_DIR=${PROTOCOL_INCS} . auto/modules.sh
239
242
PROTOCOL_OBJS=" ${MODULE_OBJS[@]} "
240
- #
241
- # srt protocol features.
242
- if [[ $SRS_SRT == YES ]]; then
243
- MODULE_ID=" SRT"
244
- MODULE_DEPENDS=(" CORE" " KERNEL" " PROTOCOL" " APP" )
245
- ModuleLibIncs=(${SRS_OBJS_DIR} ${LibSSLRoot} ${LibSRTRoot} )
246
- MODULE_FILES=(" srt_server" " srt_handle" " srt_conn" " srt_to_rtmp" " ts_demux" " srt_data" " srt_log" )
247
- SRT_INCS=(${LibSRTRoot} ${SrsSRTRoot} ); MODULE_DIR=${SrsSRTRoot} . auto/modules.sh
248
- SRT_OBJS=" ${MODULE_OBJS[@]} "
249
- fi
250
243
251
244
#
252
245
# App Module, for SRS server only.
262
255
if [[ $SRS_FFMPEG_FIT == YES ]]; then
263
256
ModuleLibIncs+=(" ${LibFfmpegRoot[*]} " )
264
257
fi
258
+ if [[ $SRS_SRT == YES ]]; then
259
+ ModuleLibIncs+=(" ${LibSRTRoot[*]} " )
260
+ fi
265
261
MODULE_FILES=(" srs_app_server" " srs_app_conn" " srs_app_rtmp_conn" " srs_app_source"
266
262
" srs_app_refer" " srs_app_hls" " srs_app_forward" " srs_app_encoder" " srs_app_http_stream"
267
263
" srs_app_bandwidth" " srs_app_st" " srs_app_log" " srs_app_config"
@@ -273,6 +269,9 @@ MODULE_FILES=("srs_app_server" "srs_app_conn" "srs_app_rtmp_conn" "srs_app_sourc
273
269
" srs_app_caster_flv" " srs_app_latest_version" " srs_app_uuid" " srs_app_process" " srs_app_ng_exec"
274
270
" srs_app_hourglass" " srs_app_dash" " srs_app_fragment" " srs_app_dvr"
275
271
" srs_app_coworkers" " srs_app_hybrid" " srs_app_threads" )
272
+ if [[ $SRS_SRT == YES ]]; then
273
+ MODULE_FILES+=(" srs_app_srt_server" " srs_app_srt_listener" " srs_app_srt_conn" " srs_app_srt_utility" " srs_app_srt_source" )
274
+ fi
276
275
if [[ $SRS_RTC == YES ]]; then
277
276
MODULE_FILES+=(" srs_app_rtc_conn" " srs_app_rtc_dtls" " srs_app_rtc_sdp"
278
277
" srs_app_rtc_queue" " srs_app_rtc_server" " srs_app_rtc_source" " srs_app_rtc_api" )
@@ -294,9 +293,6 @@ APP_OBJS="${MODULE_OBJS[@]}"
294
293
# Server Module, for SRS only.
295
294
MODULE_ID=" SERVER"
296
295
MODULE_DEPENDS=(" CORE" " KERNEL" " PROTOCOL" " APP" )
297
- if [[ $SRS_SRT == YES ]]; then
298
- MODULE_DEPENDS+=(" SRT" )
299
- fi
300
296
ModuleLibIncs=(${SRS_OBJS_DIR} ${LibSTRoot} ${LibGperfRoot} ${LibSSLRoot} )
301
297
if [[ $SRS_RTC == YES ]]; then
302
298
ModuleLibIncs+=(${LibSrtpRoot} )
@@ -306,7 +302,6 @@ if [[ $SRS_FFMPEG_FIT == YES ]]; then
306
302
fi
307
303
if [[ $SRS_SRT == YES ]]; then
308
304
ModuleLibIncs+=(${LibSRTRoot} )
309
- ModuleLibIncs+=(" ${SrsSRTRoot[*]} " )
310
305
fi
311
306
MODULE_FILES=(" srs_main_server" )
312
307
SERVER_INCS=" src/main" ; MODULE_DIR=${SERVER_INCS} . auto/modules.sh
@@ -324,7 +319,6 @@ if [[ $SRS_FFMPEG_FIT == YES ]]; then
324
319
fi
325
320
if [[ $SRS_SRT == YES ]]; then
326
321
ModuleLibIncs+=(${LibSRTRoot} )
327
- ModuleLibIncs+=(" ${SrsSRTRoot[*]} " )
328
322
fi
329
323
MODULE_FILES=()
330
324
DEFINES=" "
@@ -370,7 +364,6 @@ if [[ $SRS_FFMPEG_FIT == YES ]]; then
370
364
fi
371
365
if [[ $SRS_SRT == YES ]]; then
372
366
ModuleLibIncs+=(${LibSRTRoot} )
373
- ModuleLibIncs+=(" ${SrsSRTRoot[*]} " )
374
367
MODULE_OBJS=" ${MODULE_OBJS} ${SRT_OBJS[@]} "
375
368
fi
376
369
LINK_OPTIONS=" ${SrsLinkOptions}${SrsGprofLink}${SrsGperfLink} "
@@ -416,7 +409,7 @@ if [ $SRS_UTEST = YES ]; then
416
409
ModuleLibIncs+=(" ${LibFfmpegRoot[*]} " )
417
410
fi
418
411
if [[ $SRS_SRT == YES ]]; then
419
- ModuleLibIncs+=(" ${SrsSRTRoot [*]} " )
412
+ ModuleLibIncs+=(" ${LibSRTRoot [*]} " )
420
413
fi
421
414
ModuleLibFiles=(${LibSTfile} ${LibSSLfile} )
422
415
if [[ $SRS_RTC == YES ]]; then
@@ -429,9 +422,6 @@ if [ $SRS_UTEST = YES ]; then
429
422
ModuleLibFiles+=(" ${LibSRTfile[*]} " )
430
423
fi
431
424
MODULE_DEPENDS=(" CORE" " KERNEL" " PROTOCOL" " APP" )
432
- if [[ $SRS_SRT == YES ]]; then
433
- MODULE_DEPENDS+=(" SRT" )
434
- fi
435
425
MODULE_OBJS=" ${CORE_OBJS[@]} ${KERNEL_OBJS[@]} ${PROTOCOL_OBJS[@]} ${APP_OBJS[@]} ${SRT_OBJS[@]} "
436
426
LINK_OPTIONS=" -lpthread ${SrsLinkOptions} " MODULE_DIR=" src/utest" APP_NAME=" srs_utest" . auto/utest.sh
437
427
fi
0 commit comments