H264Rtmp.cpp 7.69 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 "H264Rtmp.h"
xiongziliang committed
12
namespace mediakit{
13 14

H264RtmpDecoder::H264RtmpDecoder() {
15
    _h264frame = obtainFrame();
16 17 18 19 20
}

H264Frame::Ptr  H264RtmpDecoder::obtainFrame() {
    //从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
    auto frame = obtainObj();
21 22
    frame->_buffer.clear();
    frame->_prefix_size = 4;
23 24 25
    return frame;
}

xiongziliang committed
26 27 28 29 30 31 32 33 34 35 36 37
/**
 * 返回不带0x00 00 00 01头的sps
 * @return
 */
static string getH264SPS(const RtmpPacket &thiz) {
    string ret;
    if (thiz.getMediaType() != FLV_CODEC_H264) {
        return ret;
    }
    if (!thiz.isCfgFrame()) {
        return ret;
    }
xiongziliang committed
38
    if (thiz.buffer.size() < 13) {
xiongziliang committed
39 40 41 42
        WarnL << "bad H264 cfg!";
        return ret;
    }
    uint16_t sps_size ;
xiongziliang committed
43
    memcpy(&sps_size, thiz.buffer.data() + 11, 2);
xiongziliang committed
44
    sps_size = ntohs(sps_size);
xiongziliang committed
45
    if ((int) thiz.buffer.size() < 13 + sps_size) {
xiongziliang committed
46 47 48
        WarnL << "bad H264 cfg!";
        return ret;
    }
xiongziliang committed
49
    ret.assign(thiz.buffer.data() + 13, sps_size);
xiongziliang committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    return ret;
}

/**
 * 返回不带0x00 00 00 01头的pps
 * @return
 */
static string getH264PPS(const RtmpPacket &thiz) {
    string ret;
    if (thiz.getMediaType() != FLV_CODEC_H264) {
        return ret;
    }
    if (!thiz.isCfgFrame()) {
        return ret;
    }
xiongziliang committed
65
    if (thiz.buffer.size() < 13) {
xiongziliang committed
66 67 68 69
        WarnL << "bad H264 cfg!";
        return ret;
    }
    uint16_t sps_size ;
xiongziliang committed
70
    memcpy(&sps_size, thiz.buffer.data() + 11, 2);
xiongziliang committed
71 72
    sps_size = ntohs(sps_size);

xiongziliang committed
73
    if ((int) thiz.buffer.size() < 13 + sps_size + 1 + 2) {
xiongziliang committed
74 75 76 77
        WarnL << "bad H264 cfg!";
        return ret;
    }
    uint16_t pps_size ;
xiongziliang committed
78
    memcpy(&pps_size, thiz.buffer.data() + 13 + sps_size + 1, 2);
xiongziliang committed
79 80
    pps_size = ntohs(pps_size);

xiongziliang committed
81
    if ((int) thiz.buffer.size() < 13 + sps_size + 1 + 2 + pps_size) {
xiongziliang committed
82 83 84
        WarnL << "bad H264 cfg!";
        return ret;
    }
xiongziliang committed
85
    ret.assign(thiz.buffer.data() + 13 + sps_size + 1 + 2, pps_size);
xiongziliang committed
86 87 88
    return ret;
}

89
void H264RtmpDecoder::inputRtmp(const RtmpPacket::Ptr &pkt) {
90 91
    if (pkt->isCfgFrame()) {
        //缓存sps pps,后续插入到I帧之前
xiongziliang committed
92 93
        _sps = getH264SPS(*pkt);
        _pps  = getH264PPS(*pkt);
xiongziliang committed
94 95
        onGetH264(_sps.data(), _sps.size(), pkt->time_stamp , pkt->time_stamp);
        onGetH264(_pps.data(), _pps.size(), pkt->time_stamp , pkt->time_stamp);
96
        return;
97 98
    }

xiongziliang committed
99 100
    if (pkt->buffer.size() > 9) {
        uint32_t iTotalLen = pkt->buffer.size();
101
        uint32_t iOffset = 5;
xiongziliang committed
102
        uint8_t *cts_ptr = (uint8_t *) (pkt->buffer.data() + 2);
xiongziliang committed
103
        int32_t cts = (((cts_ptr[0] << 16) | (cts_ptr[1] << 8) | (cts_ptr[2])) + 0xff800000) ^ 0xff800000;
xiongziliang committed
104
        auto pts = pkt->time_stamp + cts;
xiongziliang committed
105

106 107
        while(iOffset + 4 < iTotalLen){
            uint32_t iFrameLen;
xiongziliang committed
108
            memcpy(&iFrameLen, pkt->buffer.data() + iOffset, 4);
109 110 111 112 113
            iFrameLen = ntohl(iFrameLen);
            iOffset += 4;
            if(iFrameLen + iOffset > iTotalLen){
                break;
            }
xiongziliang committed
114
            onGetH264(pkt->buffer.data() + iOffset, iFrameLen, pkt->time_stamp , pts);
115 116 117 118 119
            iOffset += iFrameLen;
        }
    }
}

xiongziliang committed
120
inline void H264RtmpDecoder::onGetH264(const char* pcData, int iLen, uint32_t dts,uint32_t pts) {
xiongziliang committed
121 122 123
    if(iLen == 0){
        return;
    }
124
#if 1
125 126 127 128
    _h264frame->_dts = dts;
    _h264frame->_pts = pts;
    _h264frame->_buffer.assign("\x0\x0\x0\x1", 4);  //添加264头
    _h264frame->_buffer.append(pcData, iLen);
129 130

    //写入环形缓存
131 132
    RtmpCodec::inputFrame(_h264frame);
    _h264frame = obtainFrame();
133 134 135 136 137
#else
    //防止内存拷贝,这样产生的264帧不会有0x00 00 01头
    auto frame = std::make_shared<H264FrameNoCacheAble>((char *)pcData,iLen,dts,pts,0);
    RtmpCodec::inputFrame(frame);
#endif
138 139 140 141
}

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

142 143
H264RtmpEncoder::H264RtmpEncoder(const Track::Ptr &track) {
    _track = dynamic_pointer_cast<H264Track>(track);
144 145 146 147 148 149 150 151
}

void H264RtmpEncoder::makeConfigPacket(){
    if (_track && _track->ready()) {
        //尝试从track中获取sps pps信息
        _sps = _track->getSps();
        _pps = _track->getPps();
    }
xiongziliang committed
152

153 154 155 156 157
    if (!_sps.empty() && !_pps.empty()) {
        //获取到sps/pps
        makeVideoConfigPkt();
        _gotSpsPps = true;
    }
158 159 160 161 162
}

void H264RtmpEncoder::inputFrame(const Frame::Ptr &frame) {
    auto pcData = frame->data() + frame->prefixSize();
    auto iLen = frame->size() - frame->prefixSize();
xiongziliang committed
163
    auto type = H264_TYPE(((uint8_t*)pcData)[0]);
164 165 166
    if(type == H264Frame::NAL_SEI){
        return;
    }
167

168
    if (!_gotSpsPps) {
xiongziliang committed
169
        //尝试从frame中获取sps pps
170 171
        switch (type) {
            case H264Frame::NAL_SPS: {
xiongziliang committed
172
                //sps
173 174
                _sps = string(pcData, iLen);
                makeConfigPacket();
xiongziliang committed
175
                break;
176
            }
177 178 179 180
            case H264Frame::NAL_PPS: {
                //pps
                _pps = string(pcData, iLen);
                makeConfigPacket();
xiongziliang committed
181
                break;
182
            }
xiongziliang committed
183 184
            default:
                break;
185
        }
186 187
    }

xiongziliang committed
188
    if(_lastPacket && _lastPacket->time_stamp != frame->dts()) {
189
        RtmpCodec::inputRtmp(_lastPacket);
190 191
        _lastPacket = nullptr;
    }
192

193 194
    if(!_lastPacket) {
        //I or P or B frame
xiongziliang committed
195
        int8_t flags = FLV_CODEC_H264;
196
        bool is_config = false;
197
        flags |= (((frame->configFrame() || frame->keyFrame()) ? FLV_KEY_FRAME : FLV_INTER_FRAME) << 4);
198 199

        _lastPacket = ResourcePoolHelper<RtmpPacket>::obtainObj();
xiongziliang committed
200 201 202
        _lastPacket->buffer.clear();
        _lastPacket->buffer.push_back(flags);
        _lastPacket->buffer.push_back(!is_config);
203 204
        auto cts = frame->pts() - frame->dts();
        cts = htonl(cts);
xiongziliang committed
205
        _lastPacket->buffer.append((char *)&cts + 1, 3);
206

xiongziliang committed
207 208 209 210
        _lastPacket->chunk_id = CHUNK_VIDEO;
        _lastPacket->stream_index = STREAM_MEDIA;
        _lastPacket->time_stamp = frame->dts();
        _lastPacket->type_id = MSG_VIDEO;
211 212

    }
213
    auto size = htonl(iLen);
xiongziliang committed
214 215 216
    _lastPacket->buffer.append((char *) &size, 4);
    _lastPacket->buffer.append(pcData, iLen);
    _lastPacket->body_size = _lastPacket->buffer.size();
217 218 219
}

void H264RtmpEncoder::makeVideoConfigPkt() {
xiongziliang committed
220
    int8_t flags = FLV_CODEC_H264;
221 222 223 224
    flags |= (FLV_KEY_FRAME << 4);
    bool is_config = true;

    RtmpPacket::Ptr rtmpPkt = ResourcePoolHelper<RtmpPacket>::obtainObj();
xiongziliang committed
225
    rtmpPkt->buffer.clear();
226

xiongziliang committed
227
    //header
xiongziliang committed
228 229
    rtmpPkt->buffer.push_back(flags);
    rtmpPkt->buffer.push_back(!is_config);
xiongziliang committed
230
    //cts
xiongziliang committed
231
    rtmpPkt->buffer.append("\x0\x0\x0", 3);
232

xiongziliang committed
233
    //AVCDecoderConfigurationRecord start
xiongziliang committed
234 235 236 237 238 239
    rtmpPkt->buffer.push_back(1); // version
    rtmpPkt->buffer.push_back(_sps[1]); // profile
    rtmpPkt->buffer.push_back(_sps[2]); // compat
    rtmpPkt->buffer.push_back(_sps[3]); // level
    rtmpPkt->buffer.push_back(0xff); // 6 bits reserved + 2 bits nal size length - 1 (11)
    rtmpPkt->buffer.push_back(0xe1); // 3 bits reserved + 5 bits number of sps (00001)
xiongziliang committed
240
    //sps
241
    uint16_t size = _sps.size();
242
    size = htons(size);
xiongziliang committed
243 244
    rtmpPkt->buffer.append((char *) &size, 2);
    rtmpPkt->buffer.append(_sps);
xiongziliang committed
245
    //pps
xiongziliang committed
246
    rtmpPkt->buffer.push_back(1); // version
247
    size = _pps.size();
248
    size = htons(size);
xiongziliang committed
249 250
    rtmpPkt->buffer.append((char *) &size, 2);
    rtmpPkt->buffer.append(_pps);
251

xiongziliang committed
252 253 254 255 256
    rtmpPkt->body_size = rtmpPkt->buffer.size();
    rtmpPkt->chunk_id = CHUNK_VIDEO;
    rtmpPkt->stream_index = STREAM_MEDIA;
    rtmpPkt->time_stamp = 0;
    rtmpPkt->type_id = MSG_VIDEO;
257
    RtmpCodec::inputRtmp(rtmpPkt);
258 259
}

xiongziliang committed
260
}//namespace mediakit