RtspMediaSource.h 3.25 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * MIT License
xzl committed
3
 *
xiongziliang committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * 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.
xzl committed
25 26 27 28 29
 */

#ifndef SRC_RTSP_RTSPMEDIASOURCE_H_
#define SRC_RTSP_RTSPMEDIASOURCE_H_

xiongzilaing committed
30
#include <mutex>
xzl committed
31 32
#include <string>
#include <memory>
xiongzilaing committed
33
#include <functional>
xzl committed
34
#include <unordered_map>
xiongzilaing committed
35
#include "Rtsp.h"
xiongziliang committed
36
#include "Common/config.h"
37 38
#include "Common/MediaSource.h"

xzl committed
39
#include "Util/logger.h"
xiongzilaing committed
40
#include "Util/RingBuffer.h"
xzl committed
41
#include "Util/TimeTicker.h"
xiongzilaing committed
42 43 44
#include "Util/ResourcePool.h"
#include "Util/NoticeCenter.h"
#include "Thread/ThreadPool.h"
xzl committed
45 46 47 48

using namespace std;
using namespace ZL::Util;
using namespace ZL::Thread;
49
using namespace ZL::Media;
xzl committed
50 51 52 53

namespace ZL {
namespace Rtsp {

54
class RtspMediaSource: public MediaSource {
xzl committed
55
public:
xiongziliang committed
56
	typedef ResourcePool<RtpPacket> PoolType;
xzl committed
57 58
	typedef std::shared_ptr<RtspMediaSource> Ptr;
	typedef RingBuffer<RtpPacket::Ptr> RingType;
59 60 61

	RtspMediaSource(const string &strVhost,const string &strApp, const string &strId) :
			MediaSource(RTSP_SCHEMA,strVhost,strApp,strId),
xiongziliang committed
62
			m_pRing(new RingBuffer<RtpPacket::Ptr>()) {
xzl committed
63
	}
64
	virtual ~RtspMediaSource() {}
xzl committed
65 66 67 68 69 70 71 72 73 74

	const RingType::Ptr &getRing() const {
		//获取媒体源的rtp环形缓冲
		return m_pRing;
	}
	const string& getSdp() const {
		//获取该源的媒体描述信息
		return m_strSdp;
	}

xiongziliang committed
75 76
	virtual uint32_t getSsrc(TrackType trackType) {
		return m_mapTracks[trackType].ssrc;
xzl committed
77
	}
xiongziliang committed
78 79
	virtual uint16_t getSeqence(TrackType trackType) {
		return m_mapTracks[trackType].seq;
xzl committed
80
	}
xiongziliang committed
81 82
	virtual uint32_t getTimestamp(TrackType trackType) {
		return m_mapTracks[trackType].timeStamp;
xzl committed
83 84 85 86
	}

	virtual void onGetSDP(const string& sdp) {
		//派生类设置该媒体源媒体描述信息
87
		m_strSdp = sdp;
88
		regist();
xzl committed
89
	}
90
	virtual void onGetRTP(const RtpPacket::Ptr &rtppt, bool keyPos) {
xiongziliang committed
91
		auto &trackRef = m_mapTracks[rtppt->type];
xzl committed
92 93 94 95
		trackRef.seq = rtppt->sequence;
		trackRef.timeStamp = rtppt->timeStamp;
		trackRef.ssrc = rtppt->ssrc;
		trackRef.type = rtppt->type;
xiongziliang committed
96
		m_pRing->write(rtppt,keyPos);
xzl committed
97 98 99
	}
protected:
	unordered_map<int, RtspTrack> m_mapTracks;
100 101
    string m_strSdp; //媒体描述信息
    RingType::Ptr m_pRing; //rtp环形缓冲
xzl committed
102 103 104 105 106 107
};

} /* namespace Rtsp */
} /* namespace ZL */

#endif /* SRC_RTSP_RTSPMEDIASOURCE_H_ */