RtpParser.cpp 3.83 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
 */

xiongzilaing committed
27 28
#include <cctype>
#include <algorithm>
xzl committed
29
#include "RtpParser.h"
xiongziliang committed
30
#include "Util/base64.h"
xzl committed
31
#include "H264/SPSParser.h"
xiongzilaing committed
32

xzl committed
33
using namespace std;
xiongzilaing committed
34

xzl committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
namespace ZL {
namespace Rtsp {

static int getTimeInSDP(const string &sdp) {
	auto strRange = FindField(sdp.data(), "a=range:npt=", "\r\n");
	strRange.append(" ");
	auto iPos = strRange.find('-');
	if (iPos == string::npos) {
		return 0;
	}
	auto strStart = strRange.substr(0, iPos);
	auto strEnd = strRange.substr(iPos + 1);
	strEnd.pop_back();
	if (strStart == "now") {
		strStart = "0";
	}
	return atof(strEnd.data()) - atof(strStart.data());
}
RtpParser::RtpParser(const string& sdp) {
	RtspTrack tmp[2];
	int cnt = parserSDP(sdp, tmp);
	for (int i = 0; i < cnt; i++) {
		switch (tmp[i].type) {
		case TrackVideo: {
xiongziliang committed
59
            onGetVideoTrack(tmp[i]);
xzl committed
60 61 62
		}
			break;
		case TrackAudio: {
xiongziliang committed
63
            onGetAudioTrack(tmp[i]);
xzl committed
64 65 66 67 68 69 70 71 72
		}
			break;
		default:
			break;
		}
	}
	m_fDuration = getTimeInSDP(sdp);
}

xiongziliang committed
73
bool RtpParser::inputRtp(const RtpPacket::Ptr & rtp) {
xiongziliang committed
74
	switch (rtp->getTrackType()) {
xzl committed
75
	case TrackVideo:
xiongziliang committed
76
        return inputVideo(rtp);
xzl committed
77
	case TrackAudio:
xiongziliang committed
78
        return inputAudio(rtp);
xzl committed
79 80 81 82 83
	default:
		return false;
	}
}

xiongziliang committed
84 85 86 87 88 89
inline bool RtpParser::inputVideo(const RtpPacket::Ptr &rtp) {
    if(_videoRtpDecoder){
		return _videoRtpDecoder->inputRtp(rtp, true);
    }
	return false;
}
xzl committed
90

xiongziliang committed
91 92 93 94 95
inline bool RtpParser::inputAudio(const RtpPacket::Ptr &rtp) {
    if(_audioRtpDecoder){
		return _audioRtpDecoder->inputRtp(rtp, false);
    }
	return false;
xzl committed
96 97 98
}

inline void RtpParser::onGetAudioTrack(const RtspTrack& audio) {
99
	//生成Track对象
xiongziliang committed
100 101
    _audioTrack = dynamic_pointer_cast<AudioTrack>(Track::getTrackBySdp(audio.trackSdp));
    if(_audioTrack){
102
    	//生成RtpCodec对象以便解码rtp
xiongziliang committed
103
		_audioRtpDecoder = RtpCodec::getRtpDecoderById(_audioTrack->getCodecId(),_audioTrack->getAudioSampleRate());
104 105 106 107
		if(_audioRtpDecoder){
			//设置rtp解码器代理,生成的frame写入该Track
			_audioRtpDecoder->setDelegate(_audioTrack);
		}
xiongziliang committed
108
    }
xzl committed
109 110
}

xiongziliang committed
111
inline void RtpParser::onGetVideoTrack(const RtspTrack& video) {
112
	//生成Track对象
xiongziliang committed
113 114
	_videoTrack = dynamic_pointer_cast<VideoTrack>(Track::getTrackBySdp(video.trackSdp));
	if(_videoTrack){
115
		//生成RtpCodec对象以便解码rtp
xiongziliang committed
116
		_videoRtpDecoder = RtpCodec::getRtpDecoderById(_videoTrack->getCodecId(),90000);
117 118 119 120
		if(_videoRtpDecoder){
			//设置rtp解码器代理,生成的frame写入该Track
			_videoRtpDecoder->setDelegate(_videoTrack);
		}
xiongziliang committed
121
	}
xzl committed
122 123
}

xiongziliang committed
124 125 126 127 128 129 130 131 132
vector<Track::Ptr> RtpParser::getTracks() const {
	vector<Track::Ptr> ret;
	if(_videoTrack){
		ret.emplace_back(_videoTrack);
	}
	if(_audioTrack){
		ret.emplace_back(_audioTrack);
	}
	return ret;
xzl committed
133 134
}

xiongziliang committed
135

xzl committed
136 137
} /* namespace Rtsp */
} /* namespace ZL */