H265Rtp.cpp 7.35 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * 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.
9 10
 */

xiongziliang committed
11
#include "H265Rtp.h"
12 13 14

namespace mediakit{

15 16 17 18 19 20
//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             +-------------+-----------------+
21 22 23 24
//48                F       = 0, 1bit
//49                Type    = 49 (fragmentation unit (FU)), 6bit
//50                LayerId = 0, 6bit
//51                TID     = 1, 3bit
25 26 27 28 29 30 31 32 33 34 35
//56         /*
//57               create the FU header
//58
//59               0 1 2 3 4 5 6 7
//60              +-+-+-+-+-+-+-+-+
//61              |S|E|  FuType   |
//62              +---------------+
//64                 S       = variable
//65                 E       = variable
//66                 FuType  = NAL unit type
//67
36 37 38 39

typedef struct {
    unsigned S :1;
    unsigned E :1;
40
    unsigned type :6;
41 42
} FU;

43
static void MakeFU(uint8_t in, FU &fu) {
44 45
    fu.S = in >> 7;
    fu.E = (in >> 6) & 0x01;
46
    fu.type = in & 0x3f;
47 48 49 50 51 52 53 54 55
}

H265RtpDecoder::H265RtpDecoder() {
    _h265frame = obtainFrame();
}

H265Frame::Ptr  H265RtpDecoder::obtainFrame() {
    //从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
    auto frame = ResourcePoolHelper<H265Frame>::obtainObj();
56 57
    frame->_buffer.clear();
    frame->_prefix_size = 4;
58 59 60 61
    return frame;
}

bool H265RtpDecoder::inputRtp(const RtpPacket::Ptr &rtp, bool key_pos) {
xiongziliang committed
62
    return decodeRtp(rtp);
63 64 65
}

bool H265RtpDecoder::decodeRtp(const RtpPacket::Ptr &rtppack) {
xiongziliang committed
66 67
    const uint8_t *frame = (uint8_t *) rtppack->data() + rtppack->offset;
    int length = rtppack->size() - rtppack->offset;
68
    int nal = H265_TYPE(frame[0]);
69

70 71 72 73 74 75 76 77 78 79 80 81
    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;
82
            MakeFU(frame[2], fu);
xiongziliang committed
83 84
            if (fu.S) {
                //该帧的第一个rtp包
85 86 87 88 89
                _h265frame->_buffer.assign("\x0\x0\x0\x1", 4);
                _h265frame->_buffer.push_back(fu.type << 1);
                _h265frame->_buffer.push_back(0x01);
                _h265frame->_buffer.append((char *) frame + 3, length - 3);
                _h265frame->_pts = rtppack->timeStamp;
xiongziliang committed
90 91
                //该函数return时,保存下当前sequence,以便下次对比seq是否连续
                _lastSeq = rtppack->sequence;
92 93 94
                return (_h265frame->keyFrame()); //i frame
            }

xiongziliang committed
95 96
            if (rtppack->sequence != _lastSeq + 1 && rtppack->sequence != 0) {
                //中间的或末尾的rtp包,其seq必须连续(如果回环了则判定为连续),否则说明rtp丢包,那么该帧不完整,必须得丢弃
97
                _h265frame->_buffer.clear();
xiongziliang committed
98
                WarnL << "rtp丢包: " << rtppack->sequence << " != " << _lastSeq << " + 1,该帧被废弃";
99 100
                return false;
            }
xiongziliang committed
101 102 103

            if (!fu.E) {
                //该帧的中间rtp包
104
                _h265frame->_buffer.append((char *) frame + 3, length - 3);
xiongziliang committed
105 106 107
                //该函数return时,保存下当前sequence,以便下次对比seq是否连续
                _lastSeq = rtppack->sequence;
                return false;
108
            }
xiongziliang committed
109 110

            //该帧最后一个rtp包
111 112
            _h265frame->_buffer.append((char *) frame + 3, length - 3);
            _h265frame->_pts = rtppack->timeStamp;
xiongziliang committed
113
            onGetH265(_h265frame);
114
            return false;
115
        }
116

117 118
        default: // 4.4.1. Single NAL Unit Packets (p24)
            //a full frame
119 120 121
            _h265frame->_buffer.assign("\x0\x0\x0\x1", 4);
            _h265frame->_buffer.append((char *)frame, length);
            _h265frame->_pts = rtppack->timeStamp;
xiongziliang committed
122
            auto key = _h265frame->keyFrame();
123
            onGetH265(_h265frame);
xiongziliang committed
124
            return key;
125 126 127 128
    }
}

void H265RtpDecoder::onGetH265(const H265Frame::Ptr &frame) {
xiongziliang committed
129 130 131 132
    //rtsp没有dts,那么根据pts排序算法生成dts
    _dts_generator.getDts(frame->_pts,frame->_dts);
    //写入环形缓存
    RtpCodec::inputFrame(frame);
133 134 135 136 137 138 139 140 141
    _h265frame = obtainFrame();
}


////////////////////////////////////////////////////////////////////////

H265RtpEncoder::H265RtpEncoder(uint32_t ui32Ssrc,
                               uint32_t ui32MtuSize,
                               uint32_t ui32SampleRate,
xiongziliang committed
142
                               uint8_t ui8PayloadType,
143 144 145 146
                               uint8_t ui8Interleaved) :
        RtpInfo(ui32Ssrc,
                ui32MtuSize,
                ui32SampleRate,
xiongziliang committed
147
                ui8PayloadType,
148 149 150 151
                ui8Interleaved) {
}

void H265RtpEncoder::inputFrame(const Frame::Ptr &frame) {
152 153 154 155 156 157 158
    GET_CONFIG(uint32_t, cycleMS, Rtp::kCycleMS);
    auto ptr = (uint8_t *) frame->data() + frame->prefixSize();
    auto len = frame->size() - frame->prefixSize();
    auto pts = frame->pts() % cycleMS;
    auto nal_type = H265_TYPE(ptr[0]); //获取NALU的5bit 帧类型
    auto payload_size = _ui32MtuSize - 3;

xiongziliang committed
159
    //超过MTU,按照FU方式打包
160
    if (len > payload_size + 2) {
161
        //获取帧头数据,1byte
xiongziliang committed
162
        unsigned char s_e_flags;
163 164 165 166 167
        bool fu_start = true;
        bool mark_bit = false;
        int offset = 2;
        while (!mark_bit) {
            if (len <= offset + payload_size) {
xiongziliang committed
168
                //FU end
169 170 171 172
                mark_bit = true;
                payload_size = len - offset;
                s_e_flags = (1 << 6) | nal_type;
            } else if (fu_start) {
xiongziliang committed
173
                //FU start
174
                s_e_flags = (1 << 7) | nal_type;
175
            } else {
xiongziliang committed
176
                //FU mid
177
                s_e_flags = nal_type;
178
            }
179

180 181
            {
                //传入nullptr先不做payload的内存拷贝
182
                auto rtp = makeRtp(getTrackType(), nullptr, payload_size + 3, mark_bit, pts);
183
                //rtp payload 负载部分
184
                uint8_t *payload = (uint8_t *) rtp->data() + rtp->offset;
xiongziliang committed
185
                //FU 第1个字节,表明为FU
186
                payload[0] = 49 << 1;
xiongziliang committed
187
                //FU 第2个字节貌似固定为1
188
                payload[1] = 1;
xiongziliang committed
189
                //FU 第3个字节
xiongziliang committed
190
                payload[2] = s_e_flags;
191
                //H265 数据
192
                memcpy(payload + 3, ptr + offset, payload_size);
193
                //输入到rtp环形缓存
194
                RtpCodec::inputRtp(rtp, fu_start && H265Frame::isKeyFrame(nal_type));
195 196
            }

197 198
            offset += payload_size;
            fu_start = false;
199 200
        }
    } else {
201
        makeH265Rtp(nal_type, ptr, len, false, true, pts);
202 203 204
    }
}

205 206
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));
207 208
}

209
}//namespace mediakit