ZLMediaKit/src/Extension/H265Rtp.cpp

312 lines
10 KiB
C++
Raw Normal View History

2018-10-30 14:59:42 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2018-10-30 14:59:42 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2018-10-30 14:59:42 +08:00
*
2020-04-04 20:30:09 +08:00
* Use of this source code is governed by MIT license that can be found in the
* 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.
2018-10-30 14:59:42 +08:00
*/
2019-06-28 17:37:11 +08:00
#include "H265Rtp.h"
2018-10-30 14:59:42 +08:00
namespace mediakit{
//https://datatracker.ietf.org/doc/rfc7798/
2021-01-23 09:43:16 +08:00
//H265 nalu 头两个字节的定义
/*
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|F| Type | LayerId | TID |
+-------------+-----------------+
Forbidden zero(F) : 1 bit
NAL unit type(Type) : 6 bits
NUH layer ID(LayerId) : 6 bits
NUH temporal ID plus 1 (TID) : 3 bits
*/
2018-10-30 14:59:42 +08:00
H265RtpDecoder::H265RtpDecoder() {
2021-01-23 09:43:16 +08:00
_frame = obtainFrame();
2018-10-30 14:59:42 +08:00
}
2021-02-05 11:51:16 +08:00
H265Frame::Ptr H265RtpDecoder::obtainFrame() {
auto frame = FrameImp::create<H265Frame>();
frame->_prefix_size = 4;
2018-10-30 14:59:42 +08:00
return frame;
}
2021-01-23 09:43:16 +08:00
#define AV_RB16(x) \
((((const uint8_t*)(x))[0] << 8) | \
((const uint8_t*)(x))[1])
#define CHECK_SIZE(total, size, ret) \
if (total < size) { \
WarnL << "invalid rtp data size:" << total << " < " << size << ",rtp:\r\n" << rtp->dumpString(); _gop_dropped = true; return ret; \
2021-01-23 09:43:16 +08:00
}
// 4.4.2. Aggregation Packets (APs) (p25)
/*
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| RTP Header |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| PayloadHdr (Type=48) | NALU 1 DONL |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| NALU 1 Size | NALU 1 HDR |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| NALU 1 Data . . . |
| |
+ . . . +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | NALU 2 DOND | NALU 2 Size |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| NALU 2 HDR | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ NALU 2 Data |
| |
| . . . +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| : ...OPTIONAL RTP padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/
bool H265RtpDecoder::unpackAp(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp){
2021-01-23 09:43:16 +08:00
bool have_key_frame = false;
//忽略PayloadHdr
CHECK_SIZE(size, 2, have_key_frame);
ptr += 2;
size -= 2;
while (size) {
if (_using_donl_field) {
CHECK_SIZE(size, 2, have_key_frame);
uint16_t donl = AV_RB16(ptr);
size -= 2;
ptr += 2;
}
CHECK_SIZE(size, 2, have_key_frame);
uint16_t nalu_size = AV_RB16(ptr);
size -= 2;
ptr += 2;
CHECK_SIZE(size, nalu_size, have_key_frame)
if (singleFrame(rtp, ptr, nalu_size, stamp)) {
2021-01-23 09:43:16 +08:00
have_key_frame = true;
}
size -= nalu_size;
ptr += nalu_size;
}
return have_key_frame;
}
// 4.4.3. Fragmentation Units (p29)
/*
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| PayloadHdr (Type=49) | FU header | DONL (cond) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-|
| DONL (cond) | |
|-+-+-+-+-+-+-+-+ |
| FU payload |
| |
| +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| : ...OPTIONAL RTP padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
+---------------+
|0|1|2|3|4|5|6|7|
+-+-+-+-+-+-+-+-+
|S|E| FuType |
+---------------+
*/
bool H265RtpDecoder::mergeFu(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp, uint16_t seq){
2021-01-23 09:43:16 +08:00
CHECK_SIZE(size, 4, false);
auto s_bit = ptr[2] >> 7;
auto e_bit = (ptr[2] >> 6) & 0x01;
auto type = ptr[2] & 0x3f;
if (s_bit) {
//该帧的第一个rtp包
_frame->_buffer.assign("\x00\x00\x00\x01", 4);
_frame->_buffer.push_back((type << 1) | (ptr[0] & 0x81));
_frame->_buffer.push_back(ptr[1]);
_frame->_pts = stamp;
_fu_dropped = false;
}
if (_fu_dropped) {
//该帧不完整
return false;
2021-01-23 09:43:16 +08:00
}
if (!s_bit && seq != (uint16_t) (_last_seq + 1)) {
2021-01-23 09:43:16 +08:00
//中间的或末尾的rtp包其seq必须连续否则说明rtp丢包那么该帧不完整必须得丢弃
_fu_dropped = true;
2021-01-23 09:43:16 +08:00
_frame->_buffer.clear();
return false;
}
//跳过PayloadHdr + FU header
ptr += 3;
size -= 3;
if (_using_donl_field) {
//DONL确保不少于2个字节
CHECK_SIZE(size, 2, false);
uint16_t donl = AV_RB16(ptr);
size -= 2;
ptr += 2;
}
CHECK_SIZE(size, 1, false);
//后面追加数据
_frame->_buffer.append((char *) ptr, size);
2021-01-23 09:43:16 +08:00
if (!e_bit) {
//非末尾包
return s_bit ? _frame->keyFrame() : false;
}
//确保下一次fu必须收到第一个包
_fu_dropped = true;
2021-01-23 09:43:16 +08:00
//该帧最后一个rtp包
outputFrame(rtp, _frame);
2021-01-23 09:43:16 +08:00
return false;
2018-10-30 14:59:42 +08:00
}
bool H265RtpDecoder::inputRtp(const RtpPacket::Ptr &rtp, bool) {
auto seq = rtp->getSeq();
auto ret = decodeRtp(rtp);
if (!_gop_dropped && seq != (uint16_t) (_last_seq + 1) && _last_seq) {
_gop_dropped = true;
WarnL << "start drop h265 gop, last seq:" << _last_seq << ", rtp:\r\n" << rtp->dumpString();
}
_last_seq = seq;
return ret;
}
bool H265RtpDecoder::decodeRtp(const RtpPacket::Ptr &rtp) {
2021-01-31 19:19:24 +08:00
auto frame = rtp->getPayload();
auto length = rtp->getPayloadSize();
auto stamp = rtp->getStampMS();
auto seq = rtp->getSeq();
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
switch (nal) {
2021-01-23 09:43:16 +08:00
case 48:
// aggregated packet (AP) - with two or more NAL units
return unpackAp(rtp, frame, length, stamp);
case 49:
2018-10-30 17:11:36 +08:00
// fragmentation unit (FU)
return mergeFu(rtp, frame, length, stamp, seq);
default: {
if (nal < 48) {
// Single NAL Unit Packets (p24)
return singleFrame(rtp, frame, length, stamp);
}
_gop_dropped = true;
WarnL << "不支持该类型的265 RTP包, nal type" << nal << ", rtp:\r\n" << rtp->dumpString();
return false;
}
2018-10-30 14:59:42 +08:00
}
}
bool H265RtpDecoder::singleFrame(const RtpPacket::Ptr &rtp, const uint8_t *ptr, ssize_t size, uint32_t stamp){
2021-01-23 09:43:16 +08:00
_frame->_buffer.assign("\x00\x00\x00\x01", 4);
_frame->_buffer.append((char *) ptr, size);
_frame->_pts = stamp;
auto key = _frame->keyFrame();
outputFrame(rtp, _frame);
2021-01-23 09:43:16 +08:00
return key;
}
void H265RtpDecoder::outputFrame(const RtpPacket::Ptr &rtp, const H265Frame::Ptr &frame) {
if (frame->dropAble()) {
//不参与dts生成
frame->_dts = frame->_pts;
} else {
//rtsp没有dts那么根据pts排序算法生成dts
_dts_generator.getDts(frame->_pts, frame->_dts);
}
if (frame->keyFrame() && _gop_dropped) {
_gop_dropped = false;
InfoL << "new gop received, rtp:\r\n" << rtp->dumpString();
}
if (!_gop_dropped) {
RtpCodec::inputFrame(frame);
}
2021-01-23 09:43:16 +08:00
_frame = obtainFrame();
2018-10-30 14:59:42 +08:00
}
////////////////////////////////////////////////////////////////////////
H265RtpEncoder::H265RtpEncoder(uint32_t ui32Ssrc,
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
2020-05-25 13:51:00 +08:00
uint8_t ui8PayloadType,
2018-10-30 14:59:42 +08:00
uint8_t ui8Interleaved) :
RtpInfo(ui32Ssrc,
ui32MtuSize,
ui32SampleRate,
2020-05-25 13:51:00 +08:00
ui8PayloadType,
2018-10-30 14:59:42 +08:00
ui8Interleaved) {
}
bool H265RtpEncoder::inputFrame(const Frame::Ptr &frame) {
2020-10-24 23:29:21 +08:00
auto ptr = (uint8_t *) frame->data() + frame->prefixSize();
auto len = frame->size() - frame->prefixSize();
2021-01-31 19:19:24 +08:00
auto pts = frame->pts();
2020-10-24 23:29:21 +08:00
auto nal_type = H265_TYPE(ptr[0]); //获取NALU的5bit 帧类型
2021-01-31 19:19:24 +08:00
auto max_size = getMaxSize() - 3;
2020-10-24 23:29:21 +08:00
2019-09-06 23:22:04 +08:00
//超过MTU,按照FU方式打包
2021-01-31 19:19:24 +08:00
if (len > max_size + 2) {
2018-10-30 14:59:42 +08:00
//获取帧头数据1byte
2019-09-06 23:23:43 +08:00
unsigned char s_e_flags;
2020-10-24 23:29:21 +08:00
bool fu_start = true;
bool mark_bit = false;
size_t offset = 2;
2020-10-24 23:29:21 +08:00
while (!mark_bit) {
2021-01-31 19:19:24 +08:00
if (len <= offset + max_size) {
2019-09-06 23:22:04 +08:00
//FU end
2020-10-24 23:29:21 +08:00
mark_bit = true;
2021-01-31 19:19:24 +08:00
max_size = len - offset;
2020-10-24 23:29:21 +08:00
s_e_flags = (1 << 6) | nal_type;
} else if (fu_start) {
2019-09-06 23:22:04 +08:00
//FU start
2020-10-24 23:29:21 +08:00
s_e_flags = (1 << 7) | nal_type;
2018-11-19 16:15:47 +08:00
} else {
2019-09-06 23:22:04 +08:00
//FU mid
2020-10-24 23:29:21 +08:00
s_e_flags = nal_type;
2018-10-30 14:59:42 +08:00
}
2018-11-19 16:15:47 +08:00
2019-09-06 15:16:22 +08:00
{
//传入nullptr先不做payload的内存拷贝
2021-01-31 19:19:24 +08:00
auto rtp = makeRtp(getTrackType(), nullptr, max_size + 3, mark_bit, pts);
2019-09-06 15:16:22 +08:00
//rtp payload 负载部分
2021-01-31 19:19:24 +08:00
uint8_t *payload = rtp->getPayload();
2019-09-06 23:22:04 +08:00
//FU 第1个字节表明为FU
2019-09-06 15:16:22 +08:00
payload[0] = 49 << 1;
2019-09-06 23:22:04 +08:00
//FU 第2个字节貌似固定为1
payload[1] = ptr[1];// 1;
2019-09-06 23:22:04 +08:00
//FU 第3个字节
2019-09-06 23:23:43 +08:00
payload[2] = s_e_flags;
2019-09-06 15:16:22 +08:00
//H265 数据
2021-01-31 19:19:24 +08:00
memcpy(payload + 3, ptr + offset, max_size);
2019-09-06 15:16:22 +08:00
//输入到rtp环形缓存
RtpCodec::inputRtp(rtp, fu_start && frame->keyFrame());
2019-09-06 15:16:22 +08:00
}
2021-01-31 19:19:24 +08:00
offset += max_size;
2020-10-24 23:29:21 +08:00
fu_start = false;
2018-10-30 14:59:42 +08:00
}
} else {
RtpCodec::inputRtp(makeRtp(getTrackType(), ptr, len, false, pts), frame->keyFrame());
2018-10-30 14:59:42 +08:00
}
return len > 0;
2018-10-30 14:59:42 +08:00
}
}//namespace mediakit