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

#include "H264RtmpCodec.h"

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 56
        return false;
    }

57
    if (_sps.size()) {
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        uint32_t iTotalLen = pkt->strBuf.size();
        uint32_t iOffset = 5;
        while(iOffset + 4 < iTotalLen){
            uint32_t iFrameLen;
            memcpy(&iFrameLen, pkt->strBuf.data() + iOffset, 4);
            iFrameLen = ntohl(iFrameLen);
            iOffset += 4;
            if(iFrameLen + iOffset > iTotalLen){
                break;
            }
            onGetH264_l(pkt->strBuf.data() + iOffset, iFrameLen, pkt->timeStamp);
            iOffset += iFrameLen;
        }
    }
    return  pkt->isVideoKeyFrame();
}


inline void H264RtmpDecoder::onGetH264_l(const char* pcData, int iLen, uint32_t ui32TimeStamp) {
xiongziliang committed
77 78
    switch (H264_TYPE(pcData[0])) {
        case H264Frame::NAL_IDR: {
79
            //I frame
80 81
            onGetH264(_sps.data(), _sps.length(), ui32TimeStamp);
            onGetH264(_pps.data(), _pps.length(), ui32TimeStamp);
82
        }
xiongziliang committed
83
        case H264Frame::NAL_B_P: {
84 85 86 87 88 89 90 91 92
            //I or P or B frame
            onGetH264(pcData, iLen, ui32TimeStamp);
        }
            break;
        default:
            break;
    }
}
inline void H264RtmpDecoder::onGetH264(const char* pcData, int iLen, uint32_t ui32TimeStamp) {
xiongziliang committed
93
    _h264frame->type = H264_TYPE(pcData[0]);
94 95 96
    _h264frame->timeStamp = ui32TimeStamp;
    _h264frame->buffer.assign("\x0\x0\x0\x1", 4);  //添加264头
    _h264frame->buffer.append(pcData, iLen);
97 98

    //写入环形缓存
99 100
    RtmpCodec::inputFrame(_h264frame);
    _h264frame = obtainFrame();
101 102 103 104 105 106
}



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

107 108
H264RtmpEncoder::H264RtmpEncoder(const Track::Ptr &track) {
    _track = dynamic_pointer_cast<H264Track>(track);
109 110 111 112 113 114 115
}

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

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

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

xiongziliang committed
145 146 147 148 149 150
        //尝试从track中获取sps pps信息
        if((!_sps.empty() || !_pps.empty()) && _track && _track->ready()){
            _sps = _track->getSps();
            _pps = _track->getPps();
            makeVideoConfigPkt();
        }
151 152 153
    }

    switch (type){
xiongziliang committed
154 155
        case H264Frame::NAL_IDR:
        case H264Frame::NAL_B_P:{
156 157 158 159 160 161 162
            //I or P or B frame
            int8_t flags = 7; //h.264
            bool is_config = false;
            bool keyFrame = frame->keyFrame();
            flags |= ((keyFrame ? FLV_KEY_FRAME : FLV_INTER_FRAME) << 4);

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

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
            rtmpPkt->strBuf.push_back(flags);
            rtmpPkt->strBuf.push_back(!is_config);
            rtmpPkt->strBuf.append("\x0\x0\x0", 3);
            auto size = htonl(iLen);
            rtmpPkt->strBuf.append((char *) &size, 4);
            rtmpPkt->strBuf.append(pcData, iLen);

            rtmpPkt->bodySize = rtmpPkt->strBuf.size();
            rtmpPkt->chunkId = CHUNK_VIDEO;
            rtmpPkt->streamId = STREAM_MEDIA;
            rtmpPkt->timeStamp = frame->stamp();
            rtmpPkt->typeId = MSG_VIDEO;
            RtmpCodec::inputRtmp(rtmpPkt,keyFrame);
        }
            break;

        default:
            break;
    }
}


void H264RtmpEncoder::makeVideoConfigPkt() {
xiongziliang committed
188 189
    _gotSpsPps = true;

190 191 192 193 194
    int8_t flags = 7; //h.264
    flags |= (FLV_KEY_FRAME << 4);
    bool is_config = true;

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

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

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

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

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


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