H264Rtmp.cpp 7.52 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51
}

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

bool H264RtmpDecoder::inputRtmp(const RtmpPacket::Ptr &rtmp, bool key_pos) {
    key_pos = decodeRtmp(rtmp);
    RtmpCodec::inputRtmp(rtmp, key_pos);
    return key_pos;
}

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

59
    if (pkt->strBuf.size() > 9) {
60 61
        uint32_t iTotalLen = pkt->strBuf.size();
        uint32_t iOffset = 5;
xiongziliang committed
62 63 64 65
        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;

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

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

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



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

102 103
H264RtmpEncoder::H264RtmpEncoder(const Track::Ptr &track) {
    _track = dynamic_pointer_cast<H264Track>(track);
xiongziliang committed
104

105 106 107 108 109 110 111
}

void H264RtmpEncoder::inputFrame(const Frame::Ptr &frame) {
    RtmpCodec::inputFrame(frame);

    auto pcData = frame->data() + frame->prefixSize();
    auto iLen = frame->size() - frame->prefixSize();
xiongziliang committed
112
    auto type = H264_TYPE(((uint8_t*)pcData)[0]);
113

xiongziliang committed
114 115 116
    if(!_gotSpsPps){
        //尝试从frame中获取sps pps
        switch (type){
xiongziliang committed
117
            case H264Frame::NAL_SPS:{
xiongziliang committed
118 119 120
                //sps
                if(_sps.empty()){
                    _sps = string(pcData,iLen);
121 122
                }
            }
xiongziliang committed
123
                break;
xiongziliang committed
124
            case H264Frame::NAL_PPS:{
xiongziliang committed
125 126 127
                //pps
                if(_pps.empty()){
                    _pps = string(pcData,iLen);
128 129
                }
            }
xiongziliang committed
130 131 132
                break;
            default:
                break;
133
        }
134

xiongziliang committed
135 136
        if(_track && _track->ready()){
            //尝试从track中获取sps pps信息
xiongziliang committed
137 138
            _sps = _track->getSps();
            _pps = _track->getPps();
xiongziliang committed
139 140 141 142
        }

        if(!_sps.empty() && !_pps.empty()){
            _gotSpsPps = true;
xiongziliang committed
143 144
            makeVideoConfigPkt();
        }
145 146 147
    }

    switch (type){
xiongziliang committed
148 149
        case H264Frame::NAL_IDR:
        case H264Frame::NAL_B_P:{
150 151 152 153 154 155 156 157 158 159
            if(_lastPacket && _lastPacket->timeStamp != frame->stamp()) {
                RtmpCodec::inputRtmp(_lastPacket, _lastPacket->isVideoKeyFrame());
                _lastPacket = nullptr;
            }

            if(!_lastPacket) {
                //I or P or B frame
                int8_t flags = 7; //h.264
                bool is_config = false;
                flags |= ((frame->keyFrame() ? FLV_KEY_FRAME : FLV_INTER_FRAME) << 4);
160

161 162 163 164
                _lastPacket = ResourcePoolHelper<RtmpPacket>::obtainObj();
                _lastPacket->strBuf.clear();
                _lastPacket->strBuf.push_back(flags);
                _lastPacket->strBuf.push_back(!is_config);
xiongziliang committed
165 166 167
                auto cts = frame->pts() - frame->dts();
                cts = htonl(cts);
                _lastPacket->strBuf.append((char *)&cts + 1, 3);
168

169 170 171 172 173 174
                _lastPacket->chunkId = CHUNK_VIDEO;
                _lastPacket->streamId = STREAM_MEDIA;
                _lastPacket->timeStamp = frame->stamp();
                _lastPacket->typeId = MSG_VIDEO;

            }
175
            auto size = htonl(iLen);
176 177 178
            _lastPacket->strBuf.append((char *) &size, 4);
            _lastPacket->strBuf.append(pcData, iLen);
            _lastPacket->bodySize = _lastPacket->strBuf.size();
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
        }
            break;

        default:
            break;
    }
}


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

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

196 197 198 199 200 201 202 203
    //////////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

204 205 206 207
    //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
208 209
    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)
210
    uint16_t size = _sps.size();
211 212
    size = htons(size);
    rtmpPkt->strBuf.append((char *) &size, 2);
213
    rtmpPkt->strBuf.append(_sps);
214 215 216

    /////////////pps
    rtmpPkt->strBuf.push_back(1); // version
217
    size = _pps.size();
218 219
    size = htons(size);
    rtmpPkt->strBuf.append((char *) &size, 2);
220
    rtmpPkt->strBuf.append(_pps);
221 222 223 224 225 226

    rtmpPkt->bodySize = rtmpPkt->strBuf.size();
    rtmpPkt->chunkId = CHUNK_VIDEO;
    rtmpPkt->streamId = STREAM_MEDIA;
    rtmpPkt->timeStamp = 0;
    rtmpPkt->typeId = MSG_VIDEO;
227
    RtmpCodec::inputRtmp(rtmpPkt, false);
228 229 230
}


xiongziliang committed
231
}//namespace mediakit
232 233 234 235 236