mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 10:40:05 +08:00
flv录制延时两秒启动,防止收集config帧不齐
This commit is contained in:
parent
6ef5ae0f3c
commit
c857968f40
@ -1 +1 @@
|
||||
Subproject commit 02d8b5df6a93cc84b605a548220fd552061e66c5
|
||||
Subproject commit f9297f31e570e4ca6f3ab1bee32eadebfbee1c1f
|
@ -44,11 +44,13 @@ void FlvMuxer::start(const EventPoller::Ptr &poller,const RtmpMediaSource::Ptr &
|
||||
}
|
||||
if(!poller->isCurrentThread()){
|
||||
weak_ptr<FlvMuxer> weakSelf = getSharedPtr();
|
||||
poller->async([weakSelf,poller,media](){
|
||||
//延时两秒启动录制,目的是为了等待config帧收集完毕
|
||||
poller->doDelayTask(2000,[weakSelf,poller,media](){
|
||||
auto strongSelf = weakSelf.lock();
|
||||
if(strongSelf){
|
||||
strongSelf->start(poller,media);
|
||||
}
|
||||
return 0;
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user