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

RTC: Fix bug

This commit is contained in:
winlin 2020-09-10 17:49:10 +08:00
parent 2b99b43633
commit c5f7a90a68

View file

@ -390,6 +390,7 @@ SrsRtcPlayStream::~SrsRtcPlayStream()
{
_srs_config->unsubscribe(this);
srs_freep(nack_epp);
srs_freep(pli_worker_);
srs_freep(trd);
srs_freep(timer_);
@ -408,8 +409,6 @@ SrsRtcPlayStream::~SrsRtcPlayStream()
srs_freep(it->second);
}
}
srs_freep(nack_epp);
}
srs_error_t SrsRtcPlayStream::initialize(SrsRequest* req, std::map<uint32_t, SrsRtcTrackDescription*> sub_relations)