RtspDemuxer.h 2.02 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * MIT License
xzl committed
3
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
xiongziliang committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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
#ifndef SRC_RTP_RTSPDEMUXER_H_
#define SRC_RTP_RTSPDEMUXER_H_
xiongzilaing committed
29

xzl committed
30 31
#include <unordered_map>
#include "Player/PlayerBase.h"
xiongzilaing committed
32
#include "Util/TimeTicker.h"
xiongziliang committed
33
#include "RtpCodec.h"
xzl committed
34 35

using namespace std;
xiongziliang committed
36
using namespace toolkit;
xzl committed
37

xiongziliang committed
38
namespace mediakit {
xzl committed
39

40
class RtspDemuxer : public Demuxer{
xzl committed
41
public:
42 43 44
	typedef std::shared_ptr<RtspDemuxer> Ptr;
	RtspDemuxer(const string &sdp);
	virtual ~RtspDemuxer(){};
xiongziliang committed
45

xiongziliang committed
46 47 48 49 50
	/**
	 * 开始解复用
	 * @param rtp rtp包
	 * @return true 代表是i帧第一个rtp包
	 */
xiongziliang committed
51
	bool inputRtp(const RtpPacket::Ptr &rtp);
xiongziliang committed
52
private:
xiongziliang committed
53 54
	void makeAudioTrack(const SdpTrack::Ptr &audio);
	void makeVideoTrack(const SdpTrack::Ptr &video);
xiongziliang committed
55
	void loadSdp(const SdpParser &parser);
xiongziliang committed
56 57 58
private:
	RtpCodec::Ptr _audioRtpDecoder;
	RtpCodec::Ptr _videoRtpDecoder;
xzl committed
59 60
};

xiongziliang committed
61
} /* namespace mediakit */
xzl committed
62

63
#endif /* SRC_RTP_RTSPDEMUXER_H_ */