2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <cctype>
|
|
|
|
|
#include <algorithm>
|
2022-11-29 11:07:13 +08:00
|
|
|
|
#include "RtpCodec.h"
|
2018-10-24 18:09:54 +08:00
|
|
|
|
#include "RtspDemuxer.h"
|
2018-09-20 15:43:49 +08:00
|
|
|
|
#include "Util/base64.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
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
void RtspDemuxer::loadSdp(const string &sdp) {
|
2020-03-20 11:51:24 +08:00
|
|
|
|
loadSdp(SdpParser(sdp));
|
2018-10-26 09:56:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-28 16:48:02 +08:00
|
|
|
|
void RtspDemuxer::loadSdp(const SdpParser &attr) {
|
2020-03-20 11:51:24 +08:00
|
|
|
|
auto tracks = attr.getAvailableTrack();
|
2021-11-10 10:58:43 +08:00
|
|
|
|
for (auto &track : tracks) {
|
2020-03-20 11:51:24 +08:00
|
|
|
|
switch (track->_type) {
|
|
|
|
|
case TrackVideo: {
|
|
|
|
|
makeVideoTrack(track);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case TrackAudio: {
|
|
|
|
|
makeAudioTrack(track);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-20 17:53:43 +08:00
|
|
|
|
//rtsp能通过sdp立即知道有多少个track
|
|
|
|
|
addTrackCompleted();
|
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
auto titleTrack = attr.getTrack(TrackTitle);
|
2021-11-10 10:58:43 +08:00
|
|
|
|
if (titleTrack) {
|
|
|
|
|
_duration = titleTrack->_duration;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
2021-11-10 10:58:43 +08:00
|
|
|
|
|
|
|
|
|
float RtspDemuxer::getDuration() const {
|
|
|
|
|
return _duration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RtspDemuxer::inputRtp(const RtpPacket::Ptr &rtp) {
|
2020-03-20 11:51:24 +08:00
|
|
|
|
switch (rtp->type) {
|
2021-11-10 10:58:43 +08:00
|
|
|
|
case TrackVideo: {
|
2022-01-10 17:34:25 +08:00
|
|
|
|
if (_video_rtp_decoder) {
|
|
|
|
|
return _video_rtp_decoder->inputRtp(rtp, true);
|
2021-11-10 10:58:43 +08:00
|
|
|
|
}
|
|
|
|
|
return false;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2021-11-10 10:58:43 +08:00
|
|
|
|
case TrackAudio: {
|
2022-01-10 17:34:25 +08:00
|
|
|
|
if (_audio_rtp_decoder) {
|
|
|
|
|
_audio_rtp_decoder->inputRtp(rtp, false);
|
2021-11-10 10:58:43 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-03-20 11:51:24 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-11-10 10:58:43 +08:00
|
|
|
|
default: return false;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
static void setBitRate(const SdpTrack::Ptr &sdp, const Track::Ptr &track) {
|
2020-12-05 12:22:17 +08:00
|
|
|
|
if (!sdp->_b.empty()) {
|
|
|
|
|
int data_rate = 0;
|
|
|
|
|
sscanf(sdp->_b.data(), "AS:%d", &data_rate);
|
|
|
|
|
if (data_rate) {
|
|
|
|
|
track->setBitRate(data_rate * 1024);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-26 09:56:29 +08:00
|
|
|
|
void RtspDemuxer::makeAudioTrack(const SdpTrack::Ptr &audio) {
|
2022-01-10 17:34:25 +08:00
|
|
|
|
if (_audio_rtp_decoder) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-03-20 11:51:24 +08:00
|
|
|
|
//生成Track对象
|
2021-11-10 10:58:43 +08:00
|
|
|
|
_audio_track = dynamic_pointer_cast<AudioTrack>(Factory::getTrackBySdp(audio));
|
|
|
|
|
if (!_audio_track) {
|
|
|
|
|
return;
|
2018-10-23 18:39:17 +08:00
|
|
|
|
}
|
2021-11-10 10:58:43 +08:00
|
|
|
|
setBitRate(audio, _audio_track);
|
|
|
|
|
//生成RtpCodec对象以便解码rtp
|
2023-12-10 10:21:40 +08:00
|
|
|
|
_audio_rtp_decoder = Factory::getRtpDecoderByCodecId(_audio_track->getCodecId());
|
2022-01-10 17:34:25 +08:00
|
|
|
|
if (!_audio_rtp_decoder) {
|
2021-11-10 10:58:43 +08:00
|
|
|
|
//找不到相应的rtp解码器,该track无效
|
|
|
|
|
_audio_track.reset();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//设置rtp解码器代理,生成的frame写入该Track
|
2022-01-10 17:34:25 +08:00
|
|
|
|
_audio_rtp_decoder->addDelegate(_audio_track);
|
2021-11-10 10:58:43 +08:00
|
|
|
|
addTrack(_audio_track);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-26 09:56:29 +08:00
|
|
|
|
void RtspDemuxer::makeVideoTrack(const SdpTrack::Ptr &video) {
|
2022-01-10 17:34:25 +08:00
|
|
|
|
if (_video_rtp_decoder) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-03-20 11:51:24 +08:00
|
|
|
|
//生成Track对象
|
2021-11-10 10:58:43 +08:00
|
|
|
|
_video_track = dynamic_pointer_cast<VideoTrack>(Factory::getTrackBySdp(video));
|
|
|
|
|
if (!_video_track) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
setBitRate(video, _video_track);
|
|
|
|
|
//生成RtpCodec对象以便解码rtp
|
2023-12-10 10:21:40 +08:00
|
|
|
|
_video_rtp_decoder = Factory::getRtpDecoderByCodecId(_video_track->getCodecId());
|
2022-01-10 17:34:25 +08:00
|
|
|
|
if (!_video_rtp_decoder) {
|
2021-11-10 10:58:43 +08:00
|
|
|
|
//找不到相应的rtp解码器,该track无效
|
|
|
|
|
_video_track.reset();
|
|
|
|
|
return;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2021-11-10 10:58:43 +08:00
|
|
|
|
//设置rtp解码器代理,生成的frame写入该Track
|
2022-01-10 17:34:25 +08:00
|
|
|
|
_video_rtp_decoder->addDelegate(_video_track);
|
2021-11-10 10:58:43 +08:00
|
|
|
|
addTrack(_video_track);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|