ZLMediaKit/src/Rtsp/RtpParser.cpp

132 lines
3.6 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
*/
2017-04-25 11:35:41 +08:00
#include <cctype>
#include <algorithm>
2017-04-01 16:35:56 +08:00
#include "RtpParser.h"
2018-09-20 15:43:49 +08:00
#include "Util/base64.h"
2017-04-01 16:35:56 +08:00
#include "H264/SPSParser.h"
2018-10-24 09:23:57 +08:00
#include "Common/Factory.h"
2017-04-25 11:35:41 +08:00
2017-04-01 16:35:56 +08:00
using namespace std;
2017-04-25 11:35:41 +08:00
2017-04-01 16:35:56 +08:00
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: {
2018-10-23 18:39:17 +08:00
onGetVideoTrack(tmp[i]);
2017-04-01 16:35:56 +08:00
}
break;
case TrackAudio: {
2018-10-23 18:39:17 +08:00
onGetAudioTrack(tmp[i]);
2017-04-01 16:35:56 +08:00
}
break;
default:
break;
}
}
m_fDuration = getTimeInSDP(sdp);
}
2018-10-23 16:41:25 +08:00
bool RtpParser::inputRtp(const RtpPacket::Ptr & rtp) {
2018-10-23 18:39:17 +08:00
switch (rtp->getTrackType()) {
2018-10-24 10:03:51 +08:00
case TrackVideo:{
if(_videoRtpDecoder){
return _videoRtpDecoder->inputRtp(rtp, true);
}
return false;
}
case TrackAudio:{
_audioRtpDecoder->inputRtp(rtp, false);
return false;
}
2017-04-01 16:35:56 +08:00
default:
return false;
}
}
inline void RtpParser::onGetAudioTrack(const RtspTrack& audio) {
//生成Track对象
2018-10-24 09:23:57 +08:00
_audioTrack = dynamic_pointer_cast<AudioTrack>(Factory::getTrackBySdp(audio.trackSdp));
2018-10-23 18:39:17 +08:00
if(_audioTrack){
//生成RtpCodec对象以便解码rtp
2018-10-24 09:23:57 +08:00
_audioRtpDecoder = Factory::getRtpDecoderById(_audioTrack->getCodecId(),_audioTrack->getAudioSampleRate());
if(_audioRtpDecoder){
//设置rtp解码器代理生成的frame写入该Track
_audioRtpDecoder->setDelegate(_audioTrack);
}
2018-10-23 18:39:17 +08:00
}
2017-04-01 16:35:56 +08:00
}
2018-10-23 16:41:25 +08:00
inline void RtpParser::onGetVideoTrack(const RtspTrack& video) {
//生成Track对象
2018-10-24 09:23:57 +08:00
_videoTrack = dynamic_pointer_cast<VideoTrack>(Factory::getTrackBySdp(video.trackSdp));
2018-10-23 18:39:17 +08:00
if(_videoTrack){
//生成RtpCodec对象以便解码rtp
2018-10-24 09:23:57 +08:00
_videoRtpDecoder = Factory::getRtpDecoderById(_videoTrack->getCodecId(),90000);
if(_videoRtpDecoder){
//设置rtp解码器代理生成的frame写入该Track
_videoRtpDecoder->setDelegate(_videoTrack);
}
2018-10-23 18:39:17 +08:00
}
2017-04-01 16:35:56 +08:00
}
2018-10-23 18:39:17 +08:00
vector<Track::Ptr> RtpParser::getTracks() const {
vector<Track::Ptr> ret;
if(_videoTrack){
ret.emplace_back(_videoTrack);
}
if(_audioTrack){
ret.emplace_back(_audioTrack);
}
return ret;
2017-04-01 16:35:56 +08:00
}
2018-10-23 18:39:17 +08:00
2017-04-01 16:35:56 +08:00
} /* namespace Rtsp */
} /* namespace ZL */