ZLMediaKit/src/RtspMuxer/RtspDemuxer.cpp

150 lines
3.9 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>
2018-10-24 18:09:54 +08:00
#include "RtspDemuxer.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-30 14:59:42 +08:00
#include "Extension/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
2018-10-24 17:17:55 +08:00
namespace mediakit {
2017-04-01 16:35:56 +08:00
2018-10-24 18:09:54 +08:00
RtspDemuxer::RtspDemuxer(const string& sdp) {
2018-10-26 09:56:29 +08:00
loadSdp(SdpAttr(sdp));
}
RtspDemuxer::RtspDemuxer(const SdpAttr &attr) {
loadSdp(attr);
}
void RtspDemuxer::loadSdp(const SdpAttr &attr) {
auto tracks = attr.getAvailableTrack();
for (auto &track : tracks){
2018-10-26 10:59:13 +08:00
switch (track->_type) {
2018-10-26 09:56:29 +08:00
case TrackVideo: {
makeVideoTrack(track);
}
break;
case TrackAudio: {
makeAudioTrack(track);
}
break;
default:
break;
2017-04-01 16:35:56 +08:00
}
}
2018-10-26 09:56:29 +08:00
auto titleTrack = attr.getTrack(TrackTitle);
if(titleTrack){
_fDuration = titleTrack->_duration;
}
2017-04-01 16:35:56 +08:00
}
2018-10-24 18:09:54 +08:00
bool RtspDemuxer::inputRtp(const RtpPacket::Ptr & rtp) {
2018-10-25 10:00:17 +08:00
switch (rtp->type) {
2018-10-24 10:03:51 +08:00
case TrackVideo:{
if(_videoRtpDecoder){
return _videoRtpDecoder->inputRtp(rtp, true);
}
return false;
}
case TrackAudio:{
2018-10-24 22:03:17 +08:00
if(_audioRtpDecoder){
_audioRtpDecoder->inputRtp(rtp, false);
return false;
}
2018-10-24 10:03:51 +08:00
return false;
}
2017-04-01 16:35:56 +08:00
default:
return false;
}
}
2018-10-26 09:56:29 +08:00
void RtspDemuxer::makeAudioTrack(const SdpTrack::Ptr &audio) {
//生成Track对象
2018-10-26 09:56:29 +08:00
_audioTrack = dynamic_pointer_cast<AudioTrack>(Factory::getTrackBySdp(audio));
2018-10-23 18:39:17 +08:00
if(_audioTrack){
//生成RtpCodec对象以便解码rtp
2018-10-26 14:12:16 +08:00
_audioRtpDecoder = Factory::getRtpDecoderById(_audioTrack->getCodecId());
if(_audioRtpDecoder){
//设置rtp解码器代理生成的frame写入该Track
2018-10-26 16:09:48 +08:00
_audioRtpDecoder->addDelegate(_audioTrack);
2018-10-24 22:03:17 +08:00
} else{
//找不到相应的rtp解码器该track无效
_audioTrack.reset();
}
2018-10-23 18:39:17 +08:00
}
2017-04-01 16:35:56 +08:00
}
2018-10-26 09:56:29 +08:00
void RtspDemuxer::makeVideoTrack(const SdpTrack::Ptr &video) {
//生成Track对象
2018-10-26 09:56:29 +08:00
_videoTrack = dynamic_pointer_cast<VideoTrack>(Factory::getTrackBySdp(video));
2018-10-23 18:39:17 +08:00
if(_videoTrack){
//生成RtpCodec对象以便解码rtp
2018-10-26 14:12:16 +08:00
_videoRtpDecoder = Factory::getRtpDecoderById(_videoTrack->getCodecId());
if(_videoRtpDecoder){
//设置rtp解码器代理生成的frame写入该Track
2018-10-26 16:09:48 +08:00
_videoRtpDecoder->addDelegate(_videoTrack);
2018-10-24 22:03:17 +08:00
}else{
//找不到相应的rtp解码器该track无效
_videoTrack.reset();
}
2018-10-23 18:39:17 +08:00
}
2017-04-01 16:35:56 +08:00
}
2018-10-24 18:09:54 +08:00
vector<Track::Ptr> RtspDemuxer::getTracks() const {
2018-10-23 18:39:17 +08:00
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-24 22:03:17 +08:00
bool RtspDemuxer::isInited() const {
bool videoReady = true ,auidoReady = true;
if(_videoTrack){
videoReady = _videoTrack->ready();
}
if(_audioTrack){
auidoReady = _audioTrack->ready();
}
return videoReady && auidoReady;
2018-10-24 22:03:17 +08:00
}
float RtspDemuxer::getDuration() const {
return _fDuration;
}
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */