H264.h 9.38 KB
Newer Older
xiongziliang committed
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
 */
xiongziliang committed
10

11 12
#ifndef ZLMEDIAKIT_H264_H
#define ZLMEDIAKIT_H264_H
xiongziliang committed
13 14

#include "Frame.h"
15
#include "Track.h"
xiongziliang committed
16 17
#include "Util/base64.h"
using namespace toolkit;
xiongziliang committed
18 19
#define H264_TYPE(v) ((uint8_t)(v) & 0x1F)

xiongziliang committed
20
namespace mediakit{
xiongziliang committed
21

22
bool getAVCInfo(const string &strSps,int &iVideoWidth, int &iVideoHeight, float  &iVideoFps);
23
void splitH264(const char *ptr, int len, int prefix, const std::function<void(const char *, int, int)> &cb);
24
int prefixSize(const char *ptr, int len);
xiongziliang committed
25
/**
26
 * 264帧类
xiongziliang committed
27
 */
xiongziliang committed
28
class H264Frame : public FrameImp {
xiongziliang committed
29
public:
30
    typedef std::shared_ptr<H264Frame> Ptr;
xiongziliang committed
31

xiongziliang committed
32 33
    typedef enum {
        NAL_IDR = 5,
34
        NAL_SEI = 6,
Zhou Weimin committed
35 36 37
        NAL_SPS = 7,
        NAL_PPS = 8,
        NAL_AUD = 9,
38
        NAL_B_P = 1,
xiongziliang committed
39 40
    } NalType;

xiongziliang committed
41
    H264Frame(){
42
        _codec_id = CodecH264;
43
    }
44

45
    bool keyFrame() const override {
46
        return H264_TYPE(_buffer[_prefix_size]) == H264Frame::NAL_IDR;
47
    }
xiongziliang committed
48 49

    bool configFrame() const override{
50
        switch(H264_TYPE(_buffer[_prefix_size]) ){
xiongziliang committed
51
            case H264Frame::NAL_SPS:
xiongziliang committed
52 53
            case H264Frame::NAL_PPS:return true;
            default:return false;
xiongziliang committed
54 55
        }
    }
xiongziliang committed
56 57
};

58 59 60 61 62
/**
 * 防止内存拷贝的H264类
 * 用户可以通过该类型快速把一个指针无拷贝的包装成Frame类
 * 该类型在DevChannel中有使用
 */
xiongziliang committed
63
class H264FrameNoCacheAble : public FrameFromPtr {
xiongziliang committed
64
public:
65
    typedef std::shared_ptr<H264FrameNoCacheAble> Ptr;
xiongziliang committed
66

xiongziliang committed
67
    H264FrameNoCacheAble(char *ptr,uint32_t size,uint32_t dts , uint32_t pts ,int prefix_size = 4){
xiongziliang committed
68 69 70 71
        _ptr = ptr;
        _size = size;
        _dts = dts;
        _pts = pts;
xiongziliang committed
72
        _prefix_size = prefix_size;
xiongziliang committed
73
        _codec_id = CodecH264;
74
    }
75

76
    bool keyFrame() const override {
xiongziliang committed
77
        return H264_TYPE(_ptr[_prefix_size]) == H264Frame::NAL_IDR;
78
    }
xiongziliang committed
79 80

    bool configFrame() const override{
xiongziliang committed
81
        switch(H264_TYPE(_ptr[_prefix_size])){
xiongziliang committed
82
            case H264Frame::NAL_SPS:
xiongziliang committed
83 84
            case H264Frame::NAL_PPS:return true;
            default:return false;
xiongziliang committed
85 86
        }
    }
xiongziliang committed
87 88
};

89 90
typedef FrameInternal<H264FrameNoCacheAble> H264FrameInternal;

xiongziliang committed
91 92 93
/**
 * 264视频通道
 */
xiongziliang committed
94
class H264Track : public VideoTrack{
xiongziliang committed
95
public:
xiongziliang committed
96
    typedef std::shared_ptr<H264Track> Ptr;
97 98

    /**
xiongziliang committed
99 100 101 102 103
     * 不指定sps pps构造h264类型的媒体
     * 在随后的inputFrame中获取sps pps
     */
    H264Track(){}
    /**
104 105 106 107 108 109 110 111 112
     * 构造h264类型的媒体
     * @param sps sps帧数据
     * @param pps pps帧数据
     * @param sps_prefix_len 264头长度,可以为3个或4个字节,一般为0x00 00 00 01
     * @param pps_prefix_len 264头长度,可以为3个或4个字节,一般为0x00 00 00 01
     */
    H264Track(const string &sps,const string &pps,int sps_prefix_len = 4,int pps_prefix_len = 4){
        _sps = sps.substr(sps_prefix_len);
        _pps = pps.substr(pps_prefix_len);
xiongziliang committed
113
        onReady();
114 115 116 117 118 119 120 121 122 123 124 125 126
    }

    /**
     * 构造h264类型的媒体
     * @param sps sps帧
     * @param pps pps帧
     */
    H264Track(const Frame::Ptr &sps,const Frame::Ptr &pps){
        if(sps->getCodecId() != CodecH264 || pps->getCodecId() != CodecH264 ){
            throw std::invalid_argument("必须输入H264类型的帧");
        }
        _sps = string(sps->data() + sps->prefixSize(),sps->size() - sps->prefixSize());
        _pps = string(pps->data() + pps->prefixSize(),pps->size() - pps->prefixSize());
xiongziliang committed
127
        onReady();
xiongziliang committed
128
    }
129 130 131 132 133

    /**
     * 返回不带0x00 00 00 01头的sps
     * @return
     */
xiongziliang committed
134 135 136
    const string &getSps() const{
        return _sps;
    }
137 138 139 140 141

    /**
     * 返回不带0x00 00 00 01头的pps
     * @return
     */
xiongziliang committed
142 143 144
    const string &getPps() const{
        return _pps;
    }
145 146

    CodecId getCodecId() const override {
147
        return CodecH264;
xiongziliang committed
148
    }
149 150 151 152 153 154

    /**
     * 返回视频高度
     * @return
     */
    int getVideoHeight() const override{
155
        return _height ;
156 157 158 159 160 161 162
    }

    /**
     * 返回视频宽度
     * @return
     */
    int getVideoWidth() const override{
163
        return _width;
164 165 166 167 168 169 170 171 172
    }

    /**
     * 返回视频fps
     * @return
     */
    float getVideoFps() const override{
        return _fps;
    }
xiongziliang committed
173

174 175
    bool ready() override {
        return !_sps.empty() && !_pps.empty();
xiongziliang committed
176 177
    }

178 179 180 181 182 183
    /**
    * 输入数据帧,并获取sps pps
    * @param frame 数据帧
    */
    void inputFrame(const Frame::Ptr &frame) override{
        int type = H264_TYPE(*((uint8_t *)frame->data() + frame->prefixSize()));
184 185
        if(type != H264Frame::NAL_B_P && type != H264Frame::NAL_IDR){
            //非I/B/P帧情况下,split一下,防止多个帧粘合在一起
186 187 188 189
            splitH264(frame->data(), frame->size(), frame->prefixSize(), [&](const char *ptr, int len, int prefix) {
                H264FrameInternal::Ptr sub_frame = std::make_shared<H264FrameInternal>(frame, (char *)ptr, len, prefix);
                inputFrame_l(sub_frame);
            });
190 191 192 193 194 195 196 197 198 199 200 201 202 203
        } else{
            inputFrame_l(frame);
        }
    }
private:
    /**
     * 解析sps获取宽高fps
     */
    void onReady(){
        getAVCInfo(_sps,_width,_height,_fps);
    }
    Track::Ptr clone() override {
        return std::make_shared<std::remove_reference<decltype(*this)>::type >(*this);
    }
xiongziliang committed
204 205 206 207 208

    /**
     * 输入数据帧,并获取sps pps
     * @param frame 数据帧
     */
209
    void inputFrame_l(const Frame::Ptr &frame){
xiongziliang committed
210
        int type = H264_TYPE(*((uint8_t *)frame->data() + frame->prefixSize()));
xiongziliang committed
211
        switch (type){
xiongziliang committed
212
            case H264Frame::NAL_SPS:{
xiongziliang committed
213 214 215 216
                //sps
                _sps = string(frame->data() + frame->prefixSize(),frame->size() - frame->prefixSize());
            }
                break;
xiongziliang committed
217
            case H264Frame::NAL_PPS:{
xiongziliang committed
218 219 220 221 222
                //pps
                _pps = string(frame->data() + frame->prefixSize(),frame->size() - frame->prefixSize());
            }
                break;

xiongziliang committed
223
            case H264Frame::NAL_IDR:{
xiongziliang committed
224
                //I
xiongziliang committed
225
                insertConfigFrame(frame);
226
                VideoTrack::inputFrame(frame);
xiongziliang committed
227 228
            }
                break;
Zhou Weimin committed
229 230 231 232
            case H264Frame::NAL_AUD:{
                //忽略AUD帧;
            }
                break;
xiongziliang committed
233

234
            default:
235
                VideoTrack::inputFrame(frame);
xiongziliang committed
236 237
                break;
        }
xiongziliang committed
238

239
        _last_frame_is_idr = type == H264Frame::NAL_IDR;
xiongziliang committed
240 241 242
        if(_width == 0 && ready()){
            onReady();
        }
xiongziliang committed
243
    }
xiongziliang committed
244

xiongziliang committed
245 246
    //生成sdp
    Sdp::Ptr getSdp() override ;
xiongziliang committed
247 248 249 250 251 252 253 254
private:
    //在idr帧前插入sps pps帧
    void insertConfigFrame(const Frame::Ptr &frame){
        if(_last_frame_is_idr){
            return;
        }

        if(!_sps.empty()){
xiongziliang committed
255
            auto spsFrame = std::make_shared<H264Frame>();
256 257 258 259
            spsFrame->_prefix_size = 4;
            spsFrame->_buffer.assign("\x0\x0\x0\x1",4);
            spsFrame->_buffer.append(_sps);
            spsFrame->_dts = frame->dts();
xiongziliang committed
260
            VideoTrack::inputFrame(spsFrame);
xiongziliang committed
261 262 263
        }

        if(!_pps.empty()){
xiongziliang committed
264
            auto ppsFrame = std::make_shared<H264Frame>();
265 266 267 268
            ppsFrame->_prefix_size = 4;
            ppsFrame->_buffer.assign("\x0\x0\x0\x1",4);
            ppsFrame->_buffer.append(_pps);
            ppsFrame->_dts = frame->dts();
xiongziliang committed
269
            VideoTrack::inputFrame(ppsFrame);
xiongziliang committed
270 271
        }
    }
272
private:
xiongziliang committed
273 274
    string _sps;
    string _pps;
275 276 277
    int _width = 0;
    int _height = 0;
    float _fps = 0;
xiongziliang committed
278
    bool _last_frame_is_idr = false;
xiongziliang committed
279 280
};

281 282 283 284 285 286 287 288 289
/**
* h264类型sdp
*/
class H264Sdp : public Sdp {
public:
    /**
     *
     * @param sps 264 sps,不带0x00000001头
     * @param pps 264 pps,不带0x00000001头
xiongziliang committed
290
     * @param payload_type  rtp payload type 默认96
291 292 293 294
     * @param bitrate 比特率
     */
    H264Sdp(const string &strSPS,
            const string &strPPS,
xiongziliang committed
295 296
            int bitrate = 4000,
            int payload_type = 96) : Sdp(90000,payload_type) {
297
        //视频通道
xiongziliang committed
298
        _printer << "m=video 0 RTP/AVP " << payload_type << "\r\n";
xiongziliang committed
299 300 301
        if (bitrate) {
            _printer << "b=AS:" << bitrate << "\r\n";
        }
xiongziliang committed
302 303
        _printer << "a=rtpmap:" << payload_type << " H264/" << 90000 << "\r\n";
        _printer << "a=fmtp:" << payload_type << " packetization-mode=1; profile-level-id=";
304 305 306 307 308 309 310 311 312 313 314

        char strTemp[100];
        uint32_t profile_level_id = 0;
        if (strSPS.length() >= 4) { // sanity check
            profile_level_id = (uint8_t(strSPS[1]) << 16) |
                               (uint8_t(strSPS[2]) << 8)  |
                               (uint8_t(strSPS[3])); // profile_idc|constraint_setN_flag|level_idc
        }
        memset(strTemp, 0, 100);
        sprintf(strTemp, "%06X", profile_level_id);
        _printer << strTemp;
xiongziliang committed
315
        _printer << "; sprop-parameter-sets=";
316 317 318 319 320 321
        memset(strTemp, 0, 100);
        av_base64_encode(strTemp, 100, (uint8_t *) strSPS.data(), strSPS.size());
        _printer << strTemp << ",";
        memset(strTemp, 0, 100);
        av_base64_encode(strTemp, 100, (uint8_t *) strPPS.data(), strPPS.size());
        _printer << strTemp << "\r\n";
xiongziliang committed
322
        _printer << "a=control:trackID=" << (int)TrackVideo << "\r\n";
323 324 325 326 327 328 329 330 331 332 333 334 335
    }

    string getSdp() const override {
        return _printer;
    }

    CodecId getCodecId() const override {
        return CodecH264;
    }
private:
    _StrPrinter _printer;
};

xiongziliang committed
336
}//namespace mediakit
337
#endif //ZLMEDIAKIT_H264_H