ZLMediaKit/src/Rtmp/RtmpMediaSource.h

178 lines
5.2 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +08:00
/*
2017-09-27 16:20:30 +08:00
* MIT License
2017-04-01 16:35:56 +08:00
*
2019-05-08 15:40:07 +08:00
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
2017-04-01 16:35:56 +08:00
*/
#ifndef SRC_RTMP_RTMPMEDIASOURCE_H_
#define SRC_RTMP_RTMPMEDIASOURCE_H_
2017-04-25 11:35:41 +08:00
#include <mutex>
#include <memory>
2017-04-01 16:35:56 +08:00
#include <string>
#include <functional>
#include <unordered_map>
#include "amf.h"
#include "Rtmp.h"
2019-06-28 17:30:13 +08:00
#include "RtmpDemuxer.h"
2017-05-02 17:15:12 +08:00
#include "Common/config.h"
#include "Common/MediaSource.h"
2017-04-25 11:35:41 +08:00
#include "Util/util.h"
#include "Util/logger.h"
#include "Util/RingBuffer.h"
#include "Util/TimeTicker.h"
#include "Util/ResourcePool.h"
#include "Util/NoticeCenter.h"
#include "Thread/ThreadPool.h"
2018-10-24 17:17:55 +08:00
using namespace toolkit;
2017-04-01 16:35:56 +08:00
2018-10-24 17:17:55 +08:00
namespace mediakit {
2017-04-01 16:35:56 +08:00
2018-10-25 16:46:00 +08:00
class RtmpMediaSource: public MediaSource ,public RingDelegate<RtmpPacket::Ptr> {
2017-04-01 16:35:56 +08:00
public:
typedef std::shared_ptr<RtmpMediaSource> Ptr;
2017-12-04 23:55:09 +08:00
typedef RingBuffer<RtmpPacket::Ptr> RingType;
2019-05-27 18:39:43 +08:00
RtmpMediaSource(const string &vhost,
const string &strApp,
const string &strId,
int ringSize = 0) :
MediaSource(RTMP_SCHEMA,vhost,strApp,strId),
2019-05-27 18:39:43 +08:00
_ringSize(ringSize) {}
virtual ~RtmpMediaSource() {}
2017-04-01 16:35:56 +08:00
const RingType::Ptr &getRing() const {
//获取媒体源的rtp环形缓冲
2018-10-24 15:43:52 +08:00
return _pRing;
2017-04-01 16:35:56 +08:00
}
int readerCount() override {
2019-05-27 18:39:43 +08:00
return _pRing ? _pRing->readerCount() : 0;
}
2017-04-01 16:35:56 +08:00
const AMFValue &getMetaData() const {
2018-10-24 15:43:52 +08:00
lock_guard<recursive_mutex> lock(_mtxMap);
return _metadata;
2017-04-01 16:35:56 +08:00
}
template<typename FUN>
void getConfigFrame(const FUN &f) {
2018-10-24 15:43:52 +08:00
lock_guard<recursive_mutex> lock(_mtxMap);
for (auto &pr : _mapCfgFrame) {
2017-04-01 16:35:56 +08:00
f(pr.second);
}
}
2018-10-24 15:43:52 +08:00
virtual void onGetMetaData(const AMFValue &metadata) {
lock_guard<recursive_mutex> lock(_mtxMap);
_metadata = metadata;
2017-04-01 16:35:56 +08:00
}
2018-10-25 16:55:48 +08:00
void onWrite(const RtmpPacket::Ptr &pkt,bool isKey = true) override {
2018-10-24 15:43:52 +08:00
lock_guard<recursive_mutex> lock(_mtxMap);
if (pkt->isCfgFrame()) {
2018-10-26 15:09:08 +08:00
_mapCfgFrame[pkt->typeId] = pkt;
2019-05-27 18:39:43 +08:00
return;
2017-04-01 16:35:56 +08:00
}
2019-05-27 18:39:43 +08:00
_mapStamp[pkt->typeId] = pkt->timeStamp;
if(!_pRing){
weak_ptr<RtmpMediaSource> weakSelf = dynamic_pointer_cast<RtmpMediaSource>(shared_from_this());
_pRing = std::make_shared<RingType>(_ringSize,[weakSelf](const EventPoller::Ptr &,int size,bool){
auto strongSelf = weakSelf.lock();
if(!strongSelf){
return;
}
strongSelf->onReaderChanged(size);
});
onReaderChanged(0);
}
if(!_registed && _metadata && _mapCfgFrame.size() >= getTrackSize()){
//在未注册的情况下需要获取到metadata并且获取到全部的config帧才可以注册
_registed = true;
regist();
}
_pRing->write(pkt,pkt->isVideoKeyFrame());
checkNoneReader();
2019-05-27 18:39:43 +08:00
}
2018-10-26 15:09:08 +08:00
uint32_t getTimeStamp(TrackType trackType) override {
lock_guard<recursive_mutex> lock(_mtxMap);
switch (trackType){
case TrackVideo:
return _mapStamp[MSG_VIDEO];
case TrackAudio:
return _mapStamp[MSG_AUDIO];
default:
return MAX(_mapStamp[MSG_VIDEO],_mapStamp[MSG_AUDIO]);
}
}
2019-05-27 18:39:43 +08:00
private:
void onReaderChanged(int size){
2019-05-28 17:14:36 +08:00
//我们记录最后一次活动时间
2019-05-27 21:37:29 +08:00
_readerTicker.resetTime();
2019-05-27 18:39:43 +08:00
if(size != 0 || readerCount() != 0){
2019-05-28 17:14:36 +08:00
//还有消费者正在观看该流
2019-05-27 18:39:43 +08:00
_asyncEmitNoneReader = false;
return;
}
_asyncEmitNoneReader = true;
}
void checkNoneReader(){
2019-05-28 17:14:36 +08:00
GET_CONFIG(int,stream_none_reader_delay,General::kStreamNoneReaderDelayMS);
2019-05-27 18:39:43 +08:00
if(_asyncEmitNoneReader && _readerTicker.elapsedTime() > stream_none_reader_delay){
_asyncEmitNoneReader = false;
2019-06-10 12:33:45 +08:00
onNoneReader();
2019-05-27 18:39:43 +08:00
}
}
int getTrackSize(){
int ret = 0;
if(_metadata["videocodecid"]){
++ret;
}
if(_metadata["audiocodecid"]){
++ret;
}
return ret;
}
2017-04-01 16:35:56 +08:00
protected:
2018-10-24 15:43:52 +08:00
AMFValue _metadata;
2019-04-09 11:33:28 +08:00
unordered_map<int, RtmpPacket::Ptr> _mapCfgFrame;
unordered_map<int,uint32_t> _mapStamp;
2018-10-24 15:43:52 +08:00
mutable recursive_mutex _mtxMap;
RingBuffer<RtmpPacket::Ptr>::Ptr _pRing; //rtp环形缓冲
2019-05-27 18:39:43 +08:00
int _ringSize;
Ticker _readerTicker;
bool _asyncEmitNoneReader = false;
bool _registed = false;
2017-04-01 16:35:56 +08:00
};
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */
2017-04-01 16:35:56 +08:00
#endif /* SRC_RTMP_RTMPMEDIASOURCE_H_ */