H264Rtmp.cpp 7.15 KB
Newer Older
1 2 3
/*
 * MIT License
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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.
 */
26

xiongziliang committed
27
#include "H264Rtmp.h"
28

xiongziliang committed
29
namespace mediakit{
30 31

H264RtmpDecoder::H264RtmpDecoder() {
32
    _h264frame = obtainFrame();
33 34 35 36 37
}

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

bool H264RtmpDecoder::inputRtmp(const RtmpPacket::Ptr &rtmp, bool key_pos) {
xiongziliang committed
44
    return decodeRtmp(rtmp);
45 46 47 48 49
}

bool H264RtmpDecoder::decodeRtmp(const RtmpPacket::Ptr &pkt) {
    if (pkt->isCfgFrame()) {
        //缓存sps pps,后续插入到I帧之前
50 51
        _sps = pkt->getH264SPS();
        _pps  = pkt->getH264PPS();
52 53
        onGetH264(_sps.data(), _sps.size(), pkt->timeStamp , pkt->timeStamp);
        onGetH264(_pps.data(), _pps.size(), pkt->timeStamp , pkt->timeStamp);
54 55 56
        return false;
    }

57
    if (pkt->strBuf.size() > 9) {
58 59
        uint32_t iTotalLen = pkt->strBuf.size();
        uint32_t iOffset = 5;
xiongziliang committed
60 61 62 63
        uint8_t *cts_ptr = (uint8_t *) (pkt->strBuf.data() + 2);
        int32_t cts = (((cts_ptr[0] << 16) | (cts_ptr[1] << 8) | (cts_ptr[2])) + 0xff800000) ^ 0xff800000;
        auto pts = pkt->timeStamp + cts;

64 65 66 67 68 69 70 71
        while(iOffset + 4 < iTotalLen){
            uint32_t iFrameLen;
            memcpy(&iFrameLen, pkt->strBuf.data() + iOffset, 4);
            iFrameLen = ntohl(iFrameLen);
            iOffset += 4;
            if(iFrameLen + iOffset > iTotalLen){
                break;
            }
72
            onGetH264(pkt->strBuf.data() + iOffset, iFrameLen, pkt->timeStamp , pts);
73 74 75 76 77 78
            iOffset += iFrameLen;
        }
    }
    return  pkt->isVideoKeyFrame();
}

xiongziliang committed
79
inline void H264RtmpDecoder::onGetH264(const char* pcData, int iLen, uint32_t dts,uint32_t pts) {
80
#if 1
81 82 83 84
    _h264frame->_dts = dts;
    _h264frame->_pts = pts;
    _h264frame->_buffer.assign("\x0\x0\x0\x1", 4);  //添加264头
    _h264frame->_buffer.append(pcData, iLen);
85 86

    //写入环形缓存
87 88
    RtmpCodec::inputFrame(_h264frame);
    _h264frame = obtainFrame();
89 90 91 92 93
#else
    //防止内存拷贝,这样产生的264帧不会有0x00 00 01头
    auto frame = std::make_shared<H264FrameNoCacheAble>((char *)pcData,iLen,dts,pts,0);
    RtmpCodec::inputFrame(frame);
#endif
94 95 96 97 98 99
}



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

100 101
H264RtmpEncoder::H264RtmpEncoder(const Track::Ptr &track) {
    _track = dynamic_pointer_cast<H264Track>(track);
102 103 104 105 106 107 108 109
}

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

111 112 113 114 115
    if (!_sps.empty() && !_pps.empty()) {
        //获取到sps/pps
        makeVideoConfigPkt();
        _gotSpsPps = true;
    }
116 117 118 119 120
}

void H264RtmpEncoder::inputFrame(const Frame::Ptr &frame) {
    auto pcData = frame->data() + frame->prefixSize();
    auto iLen = frame->size() - frame->prefixSize();
xiongziliang committed
121
    auto type = H264_TYPE(((uint8_t*)pcData)[0]);
122

123
    if (!_gotSpsPps) {
xiongziliang committed
124
        //尝试从frame中获取sps pps
125 126
        switch (type) {
            case H264Frame::NAL_SPS: {
xiongziliang committed
127
                //sps
128 129
                _sps = string(pcData, iLen);
                makeConfigPacket();
xiongziliang committed
130
                break;
131
            }
132 133 134 135
            case H264Frame::NAL_PPS: {
                //pps
                _pps = string(pcData, iLen);
                makeConfigPacket();
xiongziliang committed
136
                break;
137
            }
xiongziliang committed
138 139
            default:
                break;
140
        }
141 142
    }

143 144 145 146
    if(type == H264Frame::NAL_SEI){
        return;
    }

147
    if(_lastPacket && _lastPacket->timeStamp != frame->dts()) {
148 149 150
        RtmpCodec::inputRtmp(_lastPacket, _lastPacket->isVideoKeyFrame());
        _lastPacket = nullptr;
    }
151

152 153 154 155
    if(!_lastPacket) {
        //I or P or B frame
        int8_t flags = 7; //h.264
        bool is_config = false;
156
        flags |= (((frame->configFrame() || frame->keyFrame()) ? FLV_KEY_FRAME : FLV_INTER_FRAME) << 4);
157 158 159 160 161 162 163 164 165 166 167

        _lastPacket = ResourcePoolHelper<RtmpPacket>::obtainObj();
        _lastPacket->strBuf.clear();
        _lastPacket->strBuf.push_back(flags);
        _lastPacket->strBuf.push_back(!is_config);
        auto cts = frame->pts() - frame->dts();
        cts = htonl(cts);
        _lastPacket->strBuf.append((char *)&cts + 1, 3);

        _lastPacket->chunkId = CHUNK_VIDEO;
        _lastPacket->streamId = STREAM_MEDIA;
168
        _lastPacket->timeStamp = frame->dts();
169
        _lastPacket->typeId = MSG_VIDEO;
170 171

    }
172 173 174 175
    auto size = htonl(iLen);
    _lastPacket->strBuf.append((char *) &size, 4);
    _lastPacket->strBuf.append(pcData, iLen);
    _lastPacket->bodySize = _lastPacket->strBuf.size();
176 177 178 179 180 181 182 183 184
}


void H264RtmpEncoder::makeVideoConfigPkt() {
    int8_t flags = 7; //h.264
    flags |= (FLV_KEY_FRAME << 4);
    bool is_config = true;

    RtmpPacket::Ptr rtmpPkt = ResourcePoolHelper<RtmpPacket>::obtainObj();
185 186
    rtmpPkt->strBuf.clear();

187 188 189 190 191 192 193 194
    //////////header
    rtmpPkt->strBuf.push_back(flags);
    rtmpPkt->strBuf.push_back(!is_config);
    rtmpPkt->strBuf.append("\x0\x0\x0", 3);

    ////////////sps
    rtmpPkt->strBuf.push_back(1); // version

195 196 197 198
    //DebugL<<hexdump(_sps.data(), _sps.size());
    rtmpPkt->strBuf.push_back(_sps[1]); // profile
    rtmpPkt->strBuf.push_back(_sps[2]); // compat
    rtmpPkt->strBuf.push_back(_sps[3]); // level
199 200
    rtmpPkt->strBuf.push_back(0xff); // 6 bits reserved + 2 bits nal size length - 1 (11)
    rtmpPkt->strBuf.push_back(0xe1); // 3 bits reserved + 5 bits number of sps (00001)
201
    uint16_t size = _sps.size();
202 203
    size = htons(size);
    rtmpPkt->strBuf.append((char *) &size, 2);
204
    rtmpPkt->strBuf.append(_sps);
205 206 207

    /////////////pps
    rtmpPkt->strBuf.push_back(1); // version
208
    size = _pps.size();
209 210
    size = htons(size);
    rtmpPkt->strBuf.append((char *) &size, 2);
211
    rtmpPkt->strBuf.append(_pps);
212 213 214 215 216 217

    rtmpPkt->bodySize = rtmpPkt->strBuf.size();
    rtmpPkt->chunkId = CHUNK_VIDEO;
    rtmpPkt->streamId = STREAM_MEDIA;
    rtmpPkt->timeStamp = 0;
    rtmpPkt->typeId = MSG_VIDEO;
218
    RtmpCodec::inputRtmp(rtmpPkt, false);
219 220 221
}


xiongziliang committed
222
}//namespace mediakit
223 224 225 226 227