1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Fix typo, change bridger to bridge.

This commit is contained in:
winlin 2022-06-09 19:35:07 +08:00
parent f469753b07
commit f1840b87e5
7 changed files with 102 additions and 102 deletions

View file

@ -970,13 +970,13 @@ srs_error_t SrsRtmpConn::acquire_publish(SrsLiveSource* source)
// Bridge to RTC streaming.
#if defined(SRS_RTC) && defined(SRS_FFMPEG_FIT)
if (rtc) {
SrsRtcFromRtmpBridger *bridger = new SrsRtcFromRtmpBridger(rtc);
if ((err = bridger->initialize(req)) != srs_success) {
srs_freep(bridger);
return srs_error_wrap(err, "bridger init");
SrsRtcFromRtmpBridge *bridge = new SrsRtcFromRtmpBridge(rtc);
if ((err = bridge->initialize(req)) != srs_success) {
srs_freep(bridge);
return srs_error_wrap(err, "bridge init");
}
source->set_bridger(bridger);
source->set_bridge(bridge);
}
#endif