2018-10-25 10:00:17 +08:00
|
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2018-10-24 09:45:57 +08:00
|
|
|
|
#ifndef ZLMEDIAKIT_RTSPSDP_H
|
|
|
|
|
#define ZLMEDIAKIT_RTSPSDP_H
|
2018-09-18 23:49:48 +08:00
|
|
|
|
|
2018-10-24 18:09:54 +08:00
|
|
|
|
#include "RtspMuxer/H264RtpCodec.h"
|
|
|
|
|
#include "RtspMuxer/AACRtpCodec.h"
|
2018-10-23 11:09:21 +08:00
|
|
|
|
#include "Util/base64.h"
|
2018-10-23 22:16:54 +08:00
|
|
|
|
#include "Player/Track.h"
|
2018-09-18 23:49:48 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
/**
|
2018-10-25 14:49:47 +08:00
|
|
|
|
* rtsp sdp基类
|
2018-10-23 11:09:21 +08:00
|
|
|
|
*/
|
2018-10-25 11:53:45 +08:00
|
|
|
|
class Sdp : public CodecInfo{
|
2018-09-18 23:49:48 +08:00
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<Sdp> Ptr;
|
2018-10-23 14:32:06 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 构造sdp
|
|
|
|
|
* @param sample_rate 采样率
|
|
|
|
|
* @param playload_type pt类型
|
|
|
|
|
*/
|
2018-10-23 11:38:56 +08:00
|
|
|
|
Sdp(uint32_t sample_rate, uint8_t playload_type){
|
|
|
|
|
_sample_rate = sample_rate;
|
|
|
|
|
_playload_type = playload_type;
|
|
|
|
|
}
|
2018-10-23 22:16:54 +08:00
|
|
|
|
|
2018-09-18 23:49:48 +08:00
|
|
|
|
virtual ~Sdp(){}
|
2018-10-23 14:32:06 +08:00
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取sdp字符串
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2018-10-23 11:09:21 +08:00
|
|
|
|
virtual string getSdp() const = 0;
|
2018-09-19 12:34:29 +08:00
|
|
|
|
|
2018-10-23 11:09:21 +08:00
|
|
|
|
|
2018-10-23 14:32:06 +08:00
|
|
|
|
/**
|
|
|
|
|
* 创建Rtp打包器
|
|
|
|
|
* @param ssrc 打包器ssrc,可以为0
|
|
|
|
|
* @param mtu mtu大小,一般小于1500字节,推荐1400
|
2018-10-25 11:53:45 +08:00
|
|
|
|
* @return Rtp打包器
|
2018-10-23 14:32:06 +08:00
|
|
|
|
*/
|
2018-10-25 11:53:45 +08:00
|
|
|
|
virtual RtpCodec::Ptr createRtpEncoder(uint32_t ssrc, int mtu);
|
2018-10-23 11:38:56 +08:00
|
|
|
|
private:
|
|
|
|
|
uint8_t _playload_type;
|
|
|
|
|
uint32_t _sample_rate;
|
2018-09-18 23:49:48 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
/**
|
2018-10-23 11:09:21 +08:00
|
|
|
|
* sdp中除音视频外的其他描述部分
|
|
|
|
|
*/
|
2018-10-23 11:47:27 +08:00
|
|
|
|
class TitleSdp : public Sdp{
|
2018-09-18 23:49:48 +08:00
|
|
|
|
public:
|
2018-09-19 12:34:29 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 构造title类型sdp
|
|
|
|
|
* @param dur_sec rtsp点播时长,0代表直播,单位秒
|
|
|
|
|
* @param header 自定义sdp描述
|
|
|
|
|
* @param version sdp版本
|
|
|
|
|
*/
|
2018-10-23 11:47:27 +08:00
|
|
|
|
TitleSdp(float dur_sec = 0,
|
2018-09-18 23:49:48 +08:00
|
|
|
|
const map<string,string> &header = map<string,string>(),
|
2018-10-23 11:38:56 +08:00
|
|
|
|
int version = 0) : Sdp(0,0){
|
2018-09-18 23:49:48 +08:00
|
|
|
|
_printer << "v=" << version << "\r\n";
|
|
|
|
|
|
|
|
|
|
if(!header.empty()){
|
|
|
|
|
for (auto &pr : header){
|
|
|
|
|
_printer << pr.first << "=" << pr.second << "\r\n";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
_printer << "o=- 1383190487994921 1 IN IP4 0.0.0.0\r\n";
|
2018-10-23 11:09:21 +08:00
|
|
|
|
_printer << "s=RTSP Session, streamed by the ZLMediaKit\r\n";
|
|
|
|
|
_printer << "i=ZLMediaKit Live Stream\r\n";
|
2018-09-18 23:49:48 +08:00
|
|
|
|
_printer << "c=IN IP4 0.0.0.0\r\n";
|
|
|
|
|
_printer << "t=0 0\r\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(dur_sec <= 0){
|
|
|
|
|
_printer << "a=range:npt=0-\r\n";
|
|
|
|
|
}else{
|
|
|
|
|
_printer << "a=range:npt=0-" << dur_sec << "\r\n";
|
|
|
|
|
}
|
|
|
|
|
_printer << "a=control:*\r\n";
|
|
|
|
|
}
|
2018-09-19 12:34:29 +08:00
|
|
|
|
string getSdp() const override {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
return _printer;
|
|
|
|
|
}
|
2018-10-25 10:00:17 +08:00
|
|
|
|
/**
|
|
|
|
|
* 返回音频或视频类型
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
TrackType getTrackType() const override {
|
|
|
|
|
return TrackInvalid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 返回编码器id
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
CodecId getCodecId() const override{
|
|
|
|
|
return CodecInvalid;
|
|
|
|
|
}
|
2018-09-18 23:49:48 +08:00
|
|
|
|
private:
|
|
|
|
|
_StrPrinter _printer;
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
/**
|
2018-10-23 11:09:21 +08:00
|
|
|
|
* h264类型sdp
|
|
|
|
|
*/
|
2018-10-23 11:47:27 +08:00
|
|
|
|
class H264Sdp : public Sdp {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
public:
|
2018-09-19 12:34:29 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
2018-10-24 10:03:51 +08:00
|
|
|
|
* @param sps 264 sps,不带0x00000001头
|
|
|
|
|
* @param pps 264 pps,不带0x00000001头
|
2018-10-23 14:32:06 +08:00
|
|
|
|
* @param playload_type rtp playload type 默认96
|
2018-09-19 12:34:29 +08:00
|
|
|
|
* @param bitrate 比特率
|
|
|
|
|
*/
|
2018-10-24 10:03:51 +08:00
|
|
|
|
H264Sdp(const string &strSPS,
|
|
|
|
|
const string &strPPS,
|
2018-09-18 23:49:48 +08:00
|
|
|
|
int playload_type = 96,
|
2018-10-23 14:32:06 +08:00
|
|
|
|
int bitrate = 4000) : Sdp(90000,playload_type) {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
//视频通道
|
|
|
|
|
_printer << "m=video 0 RTP/AVP " << playload_type << "\r\n";
|
|
|
|
|
_printer << "b=AS:" << bitrate << "\r\n";
|
2018-10-23 14:32:06 +08:00
|
|
|
|
_printer << "a=rtpmap:" << playload_type << " H264/" << 90000 << "\r\n";
|
2018-09-18 23:49:48 +08:00
|
|
|
|
_printer << "a=fmtp:" << playload_type << " packetization-mode=1;profile-level-id=";
|
|
|
|
|
|
|
|
|
|
char strTemp[100];
|
|
|
|
|
int profile_level_id = 0;
|
|
|
|
|
if (strSPS.length() >= 4) { // sanity check
|
|
|
|
|
profile_level_id = (strSPS[1] << 16) | (strSPS[2] << 8) | strSPS[3]; // profile_idc|constraint_setN_flag|level_idc
|
|
|
|
|
}
|
|
|
|
|
memset(strTemp, 0, 100);
|
|
|
|
|
sprintf(strTemp, "%06X", profile_level_id);
|
|
|
|
|
_printer << strTemp;
|
|
|
|
|
_printer << ";sprop-parameter-sets=";
|
|
|
|
|
memset(strTemp, 0, 100);
|
|
|
|
|
av_base64_encode(strTemp, 100, (uint8_t *) strSPS.data(), strSPS.size());
|
|
|
|
|
_printer << strTemp << ",";
|
|
|
|
|
memset(strTemp, 0, 100);
|
|
|
|
|
av_base64_encode(strTemp, 100, (uint8_t *) strPPS.data(), strPPS.size());
|
|
|
|
|
_printer << strTemp << "\r\n";
|
2018-10-23 11:38:56 +08:00
|
|
|
|
_printer << "a=control:trackID=" << getTrackType() << "\r\n";
|
2018-09-18 23:49:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
string getSdp() const override {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
return _printer;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
TrackType getTrackType() const override {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
return TrackVideo;
|
2018-10-23 11:09:21 +08:00
|
|
|
|
}
|
2018-09-18 23:49:48 +08:00
|
|
|
|
|
2018-10-23 11:09:21 +08:00
|
|
|
|
CodecId getCodecId() const override {
|
|
|
|
|
return CodecH264;
|
|
|
|
|
}
|
2018-09-18 23:49:48 +08:00
|
|
|
|
private:
|
|
|
|
|
_StrPrinter _printer;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
/**
|
2018-10-23 11:09:21 +08:00
|
|
|
|
* aac类型SDP
|
|
|
|
|
*/
|
2018-10-23 11:47:27 +08:00
|
|
|
|
class AACSdp : public Sdp {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
public:
|
2018-09-19 12:34:29 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2018-10-23 14:32:06 +08:00
|
|
|
|
*
|
2018-09-19 12:34:29 +08:00
|
|
|
|
* @param aac_cfg aac两个字节的配置描述
|
|
|
|
|
* @param sample_rate 音频采样率
|
2018-10-23 14:32:06 +08:00
|
|
|
|
* @param playload_type rtp playload type 默认98
|
2018-09-19 12:34:29 +08:00
|
|
|
|
* @param bitrate 比特率
|
|
|
|
|
*/
|
2018-10-23 11:47:27 +08:00
|
|
|
|
AACSdp(const string &aac_cfg,
|
2018-09-18 23:49:48 +08:00
|
|
|
|
int sample_rate,
|
|
|
|
|
int playload_type = 98,
|
2018-10-23 11:38:56 +08:00
|
|
|
|
int bitrate = 128) : Sdp(sample_rate,playload_type){
|
2018-09-18 23:49:48 +08:00
|
|
|
|
_printer << "m=audio 0 RTP/AVP " << playload_type << "\r\n";
|
|
|
|
|
_printer << "b=AS:" << bitrate << "\r\n";
|
|
|
|
|
_printer << "a=rtpmap:" << playload_type << " MPEG4-GENERIC/" << sample_rate << "\r\n";
|
|
|
|
|
|
|
|
|
|
char configStr[32] = {0};
|
|
|
|
|
snprintf(configStr, sizeof(configStr), "%02X%02x", aac_cfg[0], aac_cfg[1]);
|
|
|
|
|
_printer << "a=fmtp:" << playload_type << " streamtype=5;profile-level-id=1;mode=AAC-hbr;"
|
|
|
|
|
<< "sizelength=13;indexlength=3;indexdeltalength=3;config="
|
|
|
|
|
<< configStr << "\r\n";
|
2018-10-23 11:38:56 +08:00
|
|
|
|
_printer << "a=control:trackID=" << getTrackType() << "\r\n";
|
2018-09-18 23:49:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
string getSdp() const override {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
return _printer;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 12:34:29 +08:00
|
|
|
|
TrackType getTrackType() const override {
|
2018-09-18 23:49:48 +08:00
|
|
|
|
return TrackAudio;
|
2018-10-25 11:53:45 +08:00
|
|
|
|
}
|
2018-10-23 11:09:21 +08:00
|
|
|
|
CodecId getCodecId() const override {
|
|
|
|
|
return CodecAAC;
|
|
|
|
|
}
|
2018-09-18 23:49:48 +08:00
|
|
|
|
private:
|
|
|
|
|
_StrPrinter _printer;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2018-09-18 23:49:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-24 09:45:57 +08:00
|
|
|
|
#endif //ZLMEDIAKIT_RTSPSDP_H
|