@@ -530,12 +530,17 @@ srs_error_t run_in_thread_pool()
530
530
return srs_error_wrap (err, " start api server thread" );
531
531
}
532
532
533
- // Start the hybrid service worker thread, for RTMP and RTC server, etc.
534
- if ((err = _srs_thread_pool->execute (" hybrid" , run_hybrid_server, NULL )) != srs_success) {
535
- return srs_error_wrap (err, " start hybrid server thread" );
533
+ // Start a number of hybrid service threads.
534
+ int hybrids = _srs_config->get_threads_hybrids ();
535
+ for (int stream_index = 0 ; stream_index < hybrids; stream_index++) {
536
+ // TODO: FIXME: Change the thread name for debugging?
537
+ // Start the hybrid service worker thread, for RTMP and RTC server, etc.
538
+ if ((err = _srs_thread_pool->execute (" hybrid" , run_hybrid_server, (void *)(uint64_t )stream_index)) != srs_success) {
539
+ return srs_error_wrap (err, " start hybrid server %d thread" , stream_index);
540
+ }
536
541
}
537
542
538
- srs_trace (" Pool: Start threads srtp=%d, recv=%d, send=%d" , srtps, recvs, sends);
543
+ srs_trace (" Pool: Start threads hybrids=%d, srtp=%d, recv=%d, send=%d" , hybrids , srtps, recvs, sends);
539
544
540
545
return _srs_thread_pool->run ();
541
546
}
@@ -545,6 +550,10 @@ srs_error_t run_hybrid_server(void* arg)
545
550
{
546
551
srs_error_t err = srs_success;
547
552
553
+ // The config index for hybrid/stream server.
554
+ int stream_index = (int )(uint64_t )arg;
555
+ _srs_hybrid->set_stream_index (stream_index);
556
+
548
557
// Create servers and register them.
549
558
_srs_hybrid->register_server (new SrsServerAdapter ());
550
559
0 commit comments