H265.h 11 KB
Newer Older
1
/*
xiongziliang committed
2 3
* MIT License
*
xiongziliang committed
4
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
xiongziliang committed
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 27 28 29 30 31

#ifndef ZLMEDIAKIT_H265_H
#define ZLMEDIAKIT_H265_H

#include "Frame.h"
#include "Track.h"
xiongziliang committed
32
#include "Util/base64.h"
33
#include "H264.h"
xiongziliang committed
34 35
using namespace toolkit;
#define H265_TYPE(v) (((uint8_t)(v) >> 1) & 0x3f)
36

xiongziliang committed
37 38
namespace mediakit {

39 40 41 42 43 44 45
/**
* 265帧类
*/
class H265Frame : public Frame {
public:
    typedef std::shared_ptr<H265Frame> Ptr;

xiongziliang committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    typedef enum {
        NAL_TRAIL_N = 0,
        NAL_TRAIL_R = 1,
        NAL_TSA_N = 2,
        NAL_TSA_R = 3,
        NAL_STSA_N = 4,
        NAL_STSA_R = 5,
        NAL_RADL_N = 6,
        NAL_RADL_R = 7,
        NAL_RASL_N = 8,
        NAL_RASL_R = 9,
        NAL_BLA_W_LP = 16,
        NAL_BLA_W_RADL = 17,
        NAL_BLA_N_LP = 18,
        NAL_IDR_W_RADL = 19,
        NAL_IDR_N_LP = 20,
        NAL_CRA_NUT = 21,
        NAL_VPS = 32,
        NAL_SPS = 33,
        NAL_PPS = 34,
        NAL_AUD = 35,
        NAL_EOS_NUT = 36,
        NAL_EOB_NUT = 37,
        NAL_FD_NUT = 38,
        NAL_SEI_PREFIX = 39,
        NAL_SEI_SUFFIX = 40,
    } NaleType;

    char *data() const override {
        return (char *) buffer.data();
76
    }
xiongziliang committed
77

78 79 80
    uint32_t size() const override {
        return buffer.size();
    }
xiongziliang committed
81

xiongziliang committed
82
    uint32_t dts() const override {
83 84
        return timeStamp;
    }
xiongziliang committed
85 86

    uint32_t prefixSize() const override {
87 88 89
        return iPrefixSize;
    }

xiongziliang committed
90
    TrackType getTrackType() const override {
91 92 93
        return TrackVideo;
    }

xiongziliang committed
94
    CodecId getCodecId() const override {
95 96 97 98
        return CodecH265;
    }

    bool keyFrame() const override {
xiongziliang committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
        return isKeyFrame(type);
    }

    static bool isKeyFrame(int type) {
        switch (type) {
            case NAL_BLA_N_LP:
            case NAL_BLA_W_LP:
            case NAL_BLA_W_RADL:
            case NAL_CRA_NUT:
            case NAL_IDR_N_LP:
            case NAL_IDR_W_RADL:
                return true;
            default:
                return false;
        }
114
    }
xiongziliang committed
115

116 117 118 119 120 121 122 123 124
public:
    uint16_t sequence;
    uint32_t timeStamp;
    unsigned char type;
    string buffer;
    uint32_t iPrefixSize = 4;
};


125
class H265FrameNoCacheAble : public FrameNoCacheAble {
126
public:
127
    typedef std::shared_ptr<H265FrameNoCacheAble> Ptr;
128

129
    H265FrameNoCacheAble(char *ptr, uint32_t size, uint32_t dts,uint32_t pts, int prefixeSize = 4) {
xiongziliang committed
130 131 132 133 134
        _ptr = ptr;
        _size = size;
        _dts = dts;
        _pts = pts;
        _prefixSize = prefixeSize;
135 136
    }

xiongziliang committed
137
    TrackType getTrackType() const override {
138 139 140
        return TrackVideo;
    }

xiongziliang committed
141
    CodecId getCodecId() const override {
142 143 144 145
        return CodecH265;
    }

    bool keyFrame() const override {
xiongziliang committed
146
        int type = H265_TYPE(((uint8_t *) _ptr)[_prefixSize]);
xiongziliang committed
147 148 149 150
        return H265Frame::isKeyFrame(type);
    }
};

151
typedef FrameInternal<H265FrameNoCacheAble> H265FrameInternal;
xiongziliang committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167

/**
* 265视频通道
*/
class H265Track : public VideoTrack {
public:
    typedef std::shared_ptr<H265Track> Ptr;

    /**
     * 不指定sps pps构造h265类型的媒体
     * 在随后的inputFrame中获取sps pps
     */
    H265Track() {}

    /**
     * 构造h265类型的媒体
xiongziliang committed
168
     * @param vps vps帧数据
xiongziliang committed
169 170
     * @param sps sps帧数据
     * @param pps pps帧数据
xiongziliang committed
171
     * @param vps_prefix_len 265头长度,可以为3个或4个字节,一般为0x00 00 00 01
xiongziliang committed
172 173 174
     * @param sps_prefix_len 265头长度,可以为3个或4个字节,一般为0x00 00 00 01
     * @param pps_prefix_len 265头长度,可以为3个或4个字节,一般为0x00 00 00 01
     */
xiongziliang committed
175 176
    H265Track(const string &vps,const string &sps, const string &pps,int vps_prefix_len = 4, int sps_prefix_len = 4, int pps_prefix_len = 4) {
        _vps = vps.substr(vps_prefix_len);
xiongziliang committed
177 178 179 180 181
        _sps = sps.substr(sps_prefix_len);
        _pps = pps.substr(pps_prefix_len);
    }

    /**
xiongziliang committed
182 183
     * 返回不带0x00 00 00 01头的vps
     * @return
xiongziliang committed
184
     */
xiongziliang committed
185 186
    const string &getVps() const {
        return _vps;
xiongziliang committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
    }

    /**
     * 返回不带0x00 00 00 01头的sps
     * @return
     */
    const string &getSps() const {
        return _sps;
    }

    /**
     * 返回不带0x00 00 00 01头的pps
     * @return
     */
    const string &getPps() const {
        return _pps;
    }

    CodecId getCodecId() const override {
        return CodecH265;
    }

    bool ready() override {
xiongziliang committed
210
        return !_vps.empty() && !_sps.empty() && !_pps.empty();
211
    }
xiongziliang committed
212 213 214


    /**
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
    * 输入数据帧,并获取sps pps
    * @param frame 数据帧
    */
    void inputFrame(const Frame::Ptr &frame) override{
        bool  first_frame = true;
        splitH264(frame->data() + frame->prefixSize(),
                  frame->size() - frame->prefixSize(),
                  [&](const char *ptr, int len){
                      if(first_frame){
                          H265FrameInternal::Ptr sub_frame = std::make_shared<H265FrameInternal>(frame,
                                                                                                 frame->data(),
                                                                                                 len + frame->prefixSize(),
                                                                                                 frame->prefixSize());
                          inputFrame_l(sub_frame);
                          first_frame = false;
                      }else{
                          H265FrameInternal::Ptr sub_frame = std::make_shared<H265FrameInternal>(frame,
                                                                                                 (char *)ptr,
                                                                                                 len ,
                                                                                                 3);
                          inputFrame_l(sub_frame);
                      }
                  });
    }

private:
    /**
xiongziliang committed
242 243 244
     * 输入数据帧,并获取sps pps
     * @param frame 数据帧
     */
245
    void inputFrame_l(const Frame::Ptr &frame) {
xiongziliang committed
246 247
        int type = H265_TYPE(((uint8_t *) frame->data() + frame->prefixSize())[0]);
        if (H265Frame::isKeyFrame(type)) {
xiongziliang committed
248
            insertConfigFrame(frame);
xiongziliang committed
249
            VideoTrack::inputFrame(frame);
xiongziliang committed
250
            _last_frame_is_idr = true;
xiongziliang committed
251 252 253
            return;
        }

xiongziliang committed
254 255
        _last_frame_is_idr = false;

xiongziliang committed
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
        //非idr帧
        switch (type) {
            case H265Frame::NAL_VPS: {
                //vps
                _vps = string(frame->data() + frame->prefixSize(), frame->size() - frame->prefixSize());
            }
                break;

            case H265Frame::NAL_SPS: {
                //sps
                _sps = string(frame->data() + frame->prefixSize(), frame->size() - frame->prefixSize());
            }
                break;
            case H265Frame::NAL_PPS: {
                //pps
                _pps = string(frame->data() + frame->prefixSize(), frame->size() - frame->prefixSize());
            }
                break;

            default: {
                //other frames
                VideoTrack::inputFrame(frame);
            }
                break;
        }
    }
282

xiongziliang committed
283 284 285 286
    Track::Ptr clone() override {
        return std::make_shared<std::remove_reference<decltype(*this)>::type>(*this);
    }

xiongziliang committed
287 288 289
    //生成sdp
    Sdp::Ptr getSdp() override ;

xiongziliang committed
290 291 292 293 294 295
    //在idr帧前插入vps sps pps帧
    void insertConfigFrame(const Frame::Ptr &frame){
        if(_last_frame_is_idr){
            return;
        }
        if(!_vps.empty()){
xiongziliang committed
296 297 298 299 300 301 302
            auto vpsFrame = std::make_shared<H265Frame>();
            vpsFrame->type = H265Frame::NAL_VPS;
            vpsFrame->iPrefixSize = 4;
            vpsFrame->buffer.assign("\x0\x0\x0\x1", 4);
            vpsFrame->buffer.append(_vps);
            vpsFrame->timeStamp = frame->stamp();
            VideoTrack::inputFrame(vpsFrame);
xiongziliang committed
303 304
        }
        if (!_sps.empty()) {
xiongziliang committed
305 306 307 308 309 310 311
            auto spsFrame = std::make_shared<H265Frame>();
            spsFrame->type = H265Frame::NAL_SPS;
            spsFrame->iPrefixSize = 4;
            spsFrame->buffer.assign("\x0\x0\x0\x1", 4);
            spsFrame->buffer.append(_sps);
            spsFrame->timeStamp = frame->stamp();
            VideoTrack::inputFrame(spsFrame);
xiongziliang committed
312 313 314
        }

        if (!_pps.empty()) {
xiongziliang committed
315 316 317 318 319 320 321
            auto ppsFrame = std::make_shared<H265Frame>();
            ppsFrame->type = H265Frame::NAL_PPS;
            ppsFrame->iPrefixSize = 4;
            ppsFrame->buffer.assign("\x0\x0\x0\x1", 4);
            ppsFrame->buffer.append(_pps);
            ppsFrame->timeStamp = frame->stamp();
            VideoTrack::inputFrame(ppsFrame);
xiongziliang committed
322 323
        }
    }
xiongziliang committed
324 325 326 327
private:
    string _vps;
    string _sps;
    string _pps;
xiongziliang committed
328
    bool _last_frame_is_idr = false;
329 330 331
};


332 333 334 335 336 337 338 339 340 341 342 343 344
/**
* h265类型sdp
*/
class H265Sdp : public Sdp {
public:

    /**
     *
     * @param sps 265 sps,不带0x00000001头
     * @param pps 265 pps,不带0x00000001头
     * @param playload_type  rtp playload type 默认96
     * @param bitrate 比特率
     */
xiongziliang committed
345 346
    H265Sdp(const string &strVPS,
            const string &strSPS,
347 348 349 350 351 352 353
            const string &strPPS,
            int playload_type = 96,
            int bitrate = 4000) : Sdp(90000,playload_type) {
        //视频通道
        _printer << "m=video 0 RTP/AVP " << playload_type << "\r\n";
        _printer << "b=AS:" << bitrate << "\r\n";
        _printer << "a=rtpmap:" << playload_type << " H265/" << 90000 << "\r\n";
xiongziliang committed
354 355 356 357
        _printer << "a=fmtp:" << playload_type << " ";
        _printer << "sprop-vps=";
        _printer << encodeBase64(strVPS) << "; ";
        _printer << "sprop-sps=";
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
        _printer << encodeBase64(strSPS) << "; ";
        _printer << "sprop-pps=";
        _printer << encodeBase64(strPPS) << "\r\n";
        _printer << "a=control:trackID=" << getTrackType() << "\r\n";
    }

    string getSdp() const override {
        return _printer;
    }

    TrackType getTrackType() const override {
        return TrackVideo;
    }

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


    
381 382 383 384
}//namespace mediakit


#endif //ZLMEDIAKIT_H265_H