H264RtmpCodec.cpp 7.24 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 77 78 79
        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) {
    switch (pcData[0] & 0x1F) {
        case 5: {
            //I frame
80 81
            onGetH264(_sps.data(), _sps.length(), ui32TimeStamp);
            onGetH264(_pps.data(), _pps.length(), ui32TimeStamp);
82 83 84 85 86 87 88 89 90 91 92 93
        }
        case 1: {
            //I or P or B frame
            onGetH264(pcData, iLen, ui32TimeStamp);
        }
            break;
        default:
            //WarnL <<(int)(pcData[0] & 0x1F);
            break;
    }
}
inline void H264RtmpDecoder::onGetH264(const char* pcData, int iLen, uint32_t ui32TimeStamp) {
94 95 96 97
    _h264frame->type = pcData[0] & 0x1F;
    _h264frame->timeStamp = ui32TimeStamp;
    _h264frame->buffer.assign("\x0\x0\x0\x1", 4);  //添加264头
    _h264frame->buffer.append(pcData, iLen);
98 99

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



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

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

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

    auto pcData = frame->data() + frame->prefixSize();
    auto iLen = frame->size() - frame->prefixSize();
    auto type = ((uint8_t*)pcData)[0] & 0x1F;

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

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

    switch (type){
xiongziliang committed
155 156
        case 5:
        case 1:{
157 158 159 160 161 162 163
            //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();
164 165
            rtmpPkt->strBuf.clear();

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
            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
189 190
    _gotSpsPps = true;

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

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

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

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

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

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


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