ZLMediaKit/src/Rtmp/RtmpMediaSource.h

129 lines
3.7 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
*
2017-09-27 16:20:30 +08:00
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
*
* 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"
#include "RtmpParser.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"
2017-04-01 16:35:56 +08:00
using namespace std;
using namespace ZL::Util;
using namespace ZL::Thread;
using namespace ZL::Media;
2017-04-01 16:35:56 +08:00
namespace ZL {
namespace Rtmp {
class RtmpMediaSource: public MediaSource {
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;
RtmpMediaSource(const string &vhost,const string &strApp, const string &strId) :
MediaSource(RTMP_SCHEMA,vhost,strApp,strId),
2018-09-14 18:21:39 +08:00
m_pRing(new RingBuffer<RtmpPacket::Ptr>()) {
2017-04-01 16:35:56 +08:00
}
virtual ~RtmpMediaSource() {}
2017-04-01 16:35:56 +08:00
const RingType::Ptr &getRing() const {
//获取媒体源的rtp环形缓冲
return m_pRing;
}
2017-04-01 16:35:56 +08:00
const AMFValue &getMetaData() const {
lock_guard<recursive_mutex> lock(m_mtxMap);
2017-04-01 16:35:56 +08:00
return m_metadata;
}
template<typename FUN>
void getConfigFrame(const FUN &f) {
lock_guard<recursive_mutex> lock(m_mtxMap);
for (auto &pr : m_mapCfgFrame) {
f(pr.second);
}
}
2017-04-01 16:35:56 +08:00
virtual void onGetMetaData(const AMFValue &_metadata) {
lock_guard<recursive_mutex> lock(m_mtxMap);
2017-04-01 16:35:56 +08:00
m_metadata = _metadata;
RtmpParser parser(_metadata);
m_iCfgFrameSize = parser.containAudio() + parser.containVideo();
if(ready()){
MediaSource::regist();
m_bRegisted = true;
} else{
m_bAsyncRegist = true;
}
2017-04-01 16:35:56 +08:00
}
2017-12-04 23:55:09 +08:00
virtual void onGetMedia(const RtmpPacket::Ptr &pkt) {
lock_guard<recursive_mutex> lock(m_mtxMap);
if (pkt->isCfgFrame()) {
m_mapCfgFrame.emplace(pkt->typeId, pkt);
if(m_bAsyncRegist && !m_bRegisted && m_mapCfgFrame.size() == m_iCfgFrameSize){
m_bAsyncRegist = false;
MediaSource::regist();
m_bRegisted = true;
}
2017-04-01 16:35:56 +08:00
}
2018-09-14 18:21:39 +08:00
m_pRing->write(pkt,pkt->isVideoKeyFrame());
2017-04-01 16:35:56 +08:00
}
private:
bool ready(){
lock_guard<recursive_mutex> lock(m_mtxMap);
return m_iCfgFrameSize != -1 && m_iCfgFrameSize == m_mapCfgFrame.size();
}
2017-04-01 16:35:56 +08:00
protected:
AMFValue m_metadata;
2017-12-04 23:55:09 +08:00
unordered_map<int, RtmpPacket::Ptr> m_mapCfgFrame;
2017-04-01 16:35:56 +08:00
mutable recursive_mutex m_mtxMap;
2017-12-04 23:55:09 +08:00
RingBuffer<RtmpPacket::Ptr>::Ptr m_pRing; //rtp环形缓冲
int m_iCfgFrameSize = -1;
bool m_bAsyncRegist = false;
bool m_bRegisted = false;
2017-04-01 16:35:56 +08:00
};
} /* namespace Rtmp */
} /* namespace ZL */
#endif /* SRC_RTMP_RTMPMEDIASOURCE_H_ */