mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
Merge branch 'master' of github.com:ZLMediaKit/ZLMediaKit
This commit is contained in:
commit
a226794cd2
@ -299,7 +299,7 @@ if(ENABLE_FFMPEG)
|
||||
endif()
|
||||
|
||||
if(ENABLE_MEM_DEBUG)
|
||||
list(APPEND COMPILE_OPTIONS_DEFAULT
|
||||
update_cached_list(MK_LINK_LIBRARIES
|
||||
"-Wl,-wrap,free;-Wl,-wrap,malloc;-Wl,-wrap,realloc;-Wl,-wrap,calloc")
|
||||
update_cached_list(MK_COMPILE_DEFINITIONS ENABLE_MEM_DEBUG)
|
||||
message(STATUS "已启用内存调试功能")
|
||||
@ -308,6 +308,10 @@ endif()
|
||||
if(ENABLE_ASAN)
|
||||
list(APPEND COMPILE_OPTIONS_DEFAULT
|
||||
"-fsanitize=address;-fno-omit-frame-pointer")
|
||||
# https://github.com/google/sanitizers/wiki/AddressSanitizer#using-addresssanitizer
|
||||
# > In order to use AddressSanitizer you will need to
|
||||
# > compile and link your program using clang with the -fsanitize=address switch.
|
||||
update_cached_list(MK_LINK_LIBRARIES "-fsanitize=address")
|
||||
message(STATUS "已启用 Address Sanitize")
|
||||
endif()
|
||||
|
||||
@ -413,6 +417,9 @@ endif()
|
||||
# for version.h
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
# for assert.h
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/3rdparty)
|
||||
|
||||
add_subdirectory(3rdpart)
|
||||
|
||||
add_subdirectory(src)
|
||||
|
@ -128,9 +128,9 @@ void SrtSession::onError(const SockException &err) {
|
||||
// 防止互相引用导致不释放
|
||||
auto transport = std::move(_transport);
|
||||
getPoller()->async(
|
||||
[transport, err] {
|
||||
[transport] {
|
||||
//延时减引用,防止使用transport对象时,销毁对象
|
||||
transport->onShutdown(err);
|
||||
//transport->onShutdown(err);
|
||||
},
|
||||
false);
|
||||
}
|
||||
|
@ -60,7 +60,29 @@ void SrtTransport::switchToOtherTransport(uint8_t *buf, int len, uint32_t socket
|
||||
}
|
||||
}
|
||||
|
||||
void SrtTransport::createTimerForCheckAlive(){
|
||||
std::weak_ptr<SrtTransport> weak_self = std::static_pointer_cast<SrtTransport>(shared_from_this());
|
||||
auto timeoutSec = getTimeOutSec();
|
||||
_timer = std::make_shared<Timer>(
|
||||
timeoutSec/ 2,
|
||||
[weak_self,timeoutSec]() {
|
||||
auto strong_self = weak_self.lock();
|
||||
if (!strong_self) {
|
||||
return false;
|
||||
}
|
||||
if (strong_self->_alive_ticker.elapsedTime() > timeoutSec * 1000) {
|
||||
strong_self->onShutdown(SockException(Err_timeout, "接收srt数据超时"));
|
||||
}
|
||||
return true;
|
||||
},
|
||||
getPoller());
|
||||
}
|
||||
|
||||
void SrtTransport::inputSockData(uint8_t *buf, int len, struct sockaddr_storage *addr) {
|
||||
_alive_ticker.resetTime();
|
||||
if(!_timer){
|
||||
createTimerForCheckAlive();
|
||||
}
|
||||
using srt_control_handler = void (SrtTransport::*)(uint8_t * buf, int len, struct sockaddr_storage *addr);
|
||||
static std::unordered_map<uint16_t, srt_control_handler> s_control_functions;
|
||||
static onceToken token([]() {
|
||||
@ -173,7 +195,6 @@ void SrtTransport::handleHandshakeInduction(HandshakePacket &pkt, struct sockadd
|
||||
|
||||
registerSelfHandshake();
|
||||
sendControlPacket(res, true);
|
||||
|
||||
_handleshake_timer = std::make_shared<Timer>(0.02,[this]()->bool{
|
||||
sendControlPacket(_handleshake_res, true);
|
||||
return true;
|
||||
|
@ -57,6 +57,7 @@ protected:
|
||||
virtual void sendPacket(Buffer::Ptr pkt, bool flush = true);
|
||||
virtual int getLatencyMul() { return 4; };
|
||||
virtual int getPktBufSize() { return 8192; };
|
||||
virtual float getTimeOutSec(){return 5.0;};
|
||||
|
||||
private:
|
||||
void registerSelf();
|
||||
@ -88,6 +89,8 @@ private:
|
||||
|
||||
size_t getPayloadSize();
|
||||
|
||||
void createTimerForCheckAlive();
|
||||
|
||||
protected:
|
||||
void sendDataPacket(DataPacket::Ptr pkt, char *buf, int len, bool flush = false);
|
||||
void sendControlPacket(ControlPacket::Ptr pkt, bool flush = true);
|
||||
@ -144,6 +147,11 @@ private:
|
||||
Timer::Ptr _handleshake_timer;
|
||||
|
||||
ResourcePool<BufferRaw> _packet_pool;
|
||||
|
||||
//检测超时的定时器
|
||||
Timer::Ptr _timer;
|
||||
//刷新计时器
|
||||
Ticker _alive_ticker;
|
||||
};
|
||||
|
||||
class SrtTransportManager {
|
||||
|
@ -340,6 +340,15 @@ int SrtTransportImp::getLatencyMul() {
|
||||
return latencyMul;
|
||||
}
|
||||
|
||||
float SrtTransportImp::getTimeOutSec() {
|
||||
GET_CONFIG(float, timeOutSec, kTimeOutSec);
|
||||
if (timeOutSec <= 0) {
|
||||
WarnL << "config srt " << kTimeOutSec << " not vaild";
|
||||
return 5.0;
|
||||
}
|
||||
return timeOutSec;
|
||||
}
|
||||
|
||||
int SrtTransportImp::getPktBufSize() {
|
||||
// kPktBufSize
|
||||
GET_CONFIG(int, pktBufSize, kPktBufSize);
|
||||
|
@ -37,6 +37,7 @@ protected:
|
||||
///////SrtTransport override///////
|
||||
int getLatencyMul() override;
|
||||
int getPktBufSize() override;
|
||||
float getTimeOutSec() override;
|
||||
void onSRTData(DataPacket::Ptr pkt) override;
|
||||
void onShutdown(const SockException &ex) override;
|
||||
void onHandShakeFinished(std::string &streamid, struct sockaddr_storage *addr) override;
|
||||
|
Loading…
Reference in New Issue
Block a user