ZLMediaKit/src/Extension/H265RtpCodec.cpp

215 lines
7.5 KiB
C++
Raw Normal View History

2018-10-30 14:59:42 +08:00
/*
* MIT License
*
2019-05-08 15:40:07 +08:00
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
2018-10-30 14:59:42 +08:00
*
* 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.
*/
#include "H265RtpCodec.h"
namespace mediakit{
2018-10-30 17:11:36 +08:00
//41
//42 0 1
//43 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
//44 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//45 |F| Type | LayerId | TID |
//46 +-------------+-----------------+
//48 F = 0
//49 Type = 49 (fragmentation unit (FU))
//50 LayerId = 0
//51 TID = 1
//56 /*
//57 create the FU header
//58
//59 0 1 2 3 4 5 6 7
//60 +-+-+-+-+-+-+-+-+
//61 |S|E| FuType |
//62 +---------------+
//63
//64 S = variable
//65 E = variable
//66 FuType = NAL unit type
//67
2018-10-30 14:59:42 +08:00
typedef struct {
unsigned S :1;
unsigned E :1;
2018-10-30 17:11:36 +08:00
unsigned type :6;
2018-10-30 14:59:42 +08:00
} FU;
2018-10-30 17:11:36 +08:00
static void MakeFU(uint8_t in, FU &fu) {
2018-10-30 14:59:42 +08:00
fu.S = in >> 7;
fu.E = (in >> 6) & 0x01;
2018-10-30 17:11:36 +08:00
fu.type = in & 0x3f;
2018-10-30 14:59:42 +08:00
}
H265RtpDecoder::H265RtpDecoder() {
_h265frame = obtainFrame();
}
H265Frame::Ptr H265RtpDecoder::obtainFrame() {
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
auto frame = ResourcePoolHelper<H265Frame>::obtainObj();
frame->buffer.clear();
frame->iPrefixSize = 4;
return frame;
}
bool H265RtpDecoder::inputRtp(const RtpPacket::Ptr &rtp, bool key_pos) {
key_pos = decodeRtp(rtp);
RtpCodec::inputRtp(rtp, key_pos);
return key_pos;
}
bool H265RtpDecoder::decodeRtp(const RtpPacket::Ptr &rtppack) {
2019-06-24 16:07:44 +08:00
const uint8_t *frame = (uint8_t *) rtppack->data() + rtppack->offset;
int length = rtppack->size() - rtppack->offset;
2018-10-30 17:11:36 +08:00
int nal = H265_TYPE(frame[0]);
2018-10-30 14:59:42 +08:00
2018-10-30 17:11:36 +08:00
if (nal > 50){
WarnL << "不支持该类型的265 RTP包" << nal;
return false; // packet discard, Unsupported (HEVC) NAL type
}
switch (nal) {
case 50:
case 48: // aggregated packet (AP) - with two or more NAL units
WarnL << "不支持该类型的265 RTP包" << nal;
return false;
case 49: {
// fragmentation unit (FU)
FU fu;
2018-10-30 17:35:06 +08:00
MakeFU(frame[2], fu);
2018-10-30 17:11:36 +08:00
if (fu.S == 1) {
//FU-A start
_h265frame->buffer.assign("\x0\x0\x0\x1", 4);
_h265frame->buffer.push_back(fu.type << 1);
_h265frame->buffer.push_back(0x01);
2018-10-30 17:35:06 +08:00
_h265frame->buffer.append((char *) frame + 3, length - 3);
2018-10-30 17:11:36 +08:00
_h265frame->type = fu.type;
_h265frame->timeStamp = rtppack->timeStamp;
_h265frame->sequence = rtppack->sequence;
return (_h265frame->keyFrame()); //i frame
}
if (rtppack->sequence != (uint16_t) (_h265frame->sequence + 1)) {
_h265frame->buffer.clear();
WarnL << "丢包,帧废弃:" << rtppack->sequence << "," << _h265frame->sequence;
return false;
}
_h265frame->sequence = rtppack->sequence;
if (fu.E == 1) {
//FU-A end
2018-10-30 17:35:06 +08:00
_h265frame->buffer.append((char *) frame + 3, length - 3);
2018-10-30 17:11:36 +08:00
_h265frame->timeStamp = rtppack->timeStamp;
auto isIDR = _h265frame->keyFrame();
onGetH265(_h265frame);
return isIDR;
}
//FU-A mid
2018-10-30 17:35:06 +08:00
_h265frame->buffer.append((char *) frame + 3, length - 3);
2018-10-30 14:59:42 +08:00
return false;
}
2018-10-30 21:05:48 +08:00
2018-10-30 17:11:36 +08:00
default: // 4.4.1. Single NAL Unit Packets (p24)
//a full frame
_h265frame->buffer.assign("\x0\x0\x0\x1", 4);
_h265frame->buffer.append((char *)frame, length);
_h265frame->type = nal;
2018-10-30 14:59:42 +08:00
_h265frame->timeStamp = rtppack->timeStamp;
2018-10-30 17:11:36 +08:00
_h265frame->sequence = rtppack->sequence;
auto isIDR = _h265frame->keyFrame();
2018-10-30 14:59:42 +08:00
onGetH265(_h265frame);
2018-10-30 17:11:36 +08:00
return (isIDR); //i frame
2018-10-30 14:59:42 +08:00
}
}
void H265RtpDecoder::onGetH265(const H265Frame::Ptr &frame) {
//写入环形缓存
2018-10-30 17:11:36 +08:00
auto lastSeq = _h265frame->sequence;
2018-10-30 14:59:42 +08:00
RtpCodec::inputFrame(frame);
_h265frame = obtainFrame();
2018-10-30 17:11:36 +08:00
_h265frame->sequence = lastSeq;
2018-10-30 14:59:42 +08:00
}
////////////////////////////////////////////////////////////////////////
H265RtpEncoder::H265RtpEncoder(uint32_t ui32Ssrc,
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
uint8_t ui8PlayloadType,
uint8_t ui8Interleaved) :
RtpInfo(ui32Ssrc,
ui32MtuSize,
ui32SampleRate,
ui8PlayloadType,
ui8Interleaved) {
}
void H265RtpEncoder::inputFrame(const Frame::Ptr &frame) {
RtpCodec::inputFrame(frame);
2019-05-28 17:14:36 +08:00
GET_CONFIG(uint32_t,cycleMS,Rtp::kCycleMS);
2018-10-30 21:05:48 +08:00
uint8_t *pcData = (uint8_t*)frame->data() + frame->prefixSize();
2018-10-30 14:59:42 +08:00
auto uiStamp = frame->stamp();
auto iLen = frame->size() - frame->prefixSize();
2018-10-30 21:05:48 +08:00
unsigned char naluType = H265_TYPE(pcData[0]); //获取NALU的5bit 帧类型
2018-10-30 14:59:42 +08:00
uiStamp %= cycleMS;
2018-10-30 21:05:48 +08:00
int maxSize = _ui32MtuSize - 3;
if (iLen > maxSize) { //超过MTU
2018-10-30 14:59:42 +08:00
//获取帧头数据1byte
2018-10-30 21:05:48 +08:00
unsigned char s_e_type;
2018-10-30 14:59:42 +08:00
bool bFirst = true;
bool mark = false;
2018-10-30 17:58:10 +08:00
int nOffset = 2;
2018-10-30 14:59:42 +08:00
while (!mark) {
2018-10-30 21:05:48 +08:00
if (iLen < nOffset + maxSize) { //是否拆分结束
maxSize = iLen - nOffset;
2018-10-30 14:59:42 +08:00
mark = true;
2018-10-30 21:34:44 +08:00
s_e_type = 1 << 6 | naluType;
2018-11-19 16:15:47 +08:00
} else if (bFirst) {
2018-10-30 21:34:44 +08:00
s_e_type = 1 << 7 | naluType;
2018-11-19 16:15:47 +08:00
} else {
s_e_type = naluType;
2018-10-30 14:59:42 +08:00
}
2018-11-19 16:15:47 +08:00
2018-10-30 17:58:10 +08:00
//FU type
_aucSectionBuf[0] = 49 << 1;
_aucSectionBuf[1] = 1;
_aucSectionBuf[2] = s_e_type;
2018-10-30 21:05:48 +08:00
memcpy(_aucSectionBuf + 3, pcData + nOffset, maxSize);
nOffset += maxSize;
2018-11-19 16:15:47 +08:00
makeH265Rtp(naluType,_aucSectionBuf, maxSize + 3, mark,bFirst, uiStamp);
bFirst = false;
2018-10-30 14:59:42 +08:00
}
} else {
2018-11-19 16:15:47 +08:00
makeH265Rtp(naluType,pcData, iLen, true, true, uiStamp);
2018-10-30 14:59:42 +08:00
}
}
2018-11-19 16:15:47 +08:00
void H265RtpEncoder::makeH265Rtp(int nal_type,const void* data, unsigned int len, bool mark, bool first_packet, uint32_t uiStamp) {
RtpCodec::inputRtp(makeRtp(getTrackType(),data,len,mark,uiStamp),first_packet && H265Frame::isKeyFrame(nal_type));
2018-10-30 14:59:42 +08:00
}
}//namespace mediakit