ZLMediaKit/src/Extension/H265.h

137 lines
3.6 KiB
C++
Raw Normal View History

2018-10-30 14:59:42 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2020-04-04 20:30:09 +08:00
*
* 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.
*/
2018-10-30 14:59:42 +08:00
#ifndef ZLMEDIAKIT_H265_H
#define ZLMEDIAKIT_H265_H
#include "Frame.h"
#include "Track.h"
2019-06-28 16:12:39 +08:00
#include "Util/base64.h"
#include "H264.h"
2019-06-28 16:12:39 +08:00
#define H265_TYPE(v) (((uint8_t)(v) >> 1) & 0x3f)
2021-02-05 11:51:16 +08:00
using namespace toolkit;
2018-10-30 14:59:42 +08:00
2018-10-30 15:56:00 +08:00
namespace mediakit {
2019-08-02 13:51:24 +08:00
bool getHEVCInfo(const string &strVps, const string &strSps, int &iVideoWidth, int &iVideoHeight, float &iVideoFps);
2019-07-30 21:29:31 +08:00
2018-10-30 14:59:42 +08:00
/**
2020-05-11 22:33:10 +08:00
* 265
*/
class H265Frame : public FrameImp {
2018-10-30 14:59:42 +08:00
public:
2021-02-05 11:51:16 +08:00
using Ptr = std::shared_ptr<H265Frame>;
enum {
2018-10-30 15:56:00 +08:00
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_RSV_IRAP_VCL22 = 22,
NAL_RSV_IRAP_VCL23 = 23,
2018-10-30 15:56:00 +08:00
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,
2021-02-05 11:51:16 +08:00
};
2018-10-30 14:59:42 +08:00
2021-02-05 11:51:16 +08:00
bool keyFrame() const override;
bool configFrame() const override;
static bool isKeyFrame(int type, const char* ptr);
2019-08-01 18:49:04 +08:00
2021-02-05 11:51:16 +08:00
protected:
friend class FrameImp;
friend class ResourcePool_l<H265Frame>;
H265Frame();
2018-10-30 14:59:42 +08:00
};
2020-05-11 22:33:10 +08:00
class H265FrameNoCacheAble : public FrameFromPtr {
2018-10-30 14:59:42 +08:00
public:
2021-02-05 11:51:16 +08:00
using Ptr = std::shared_ptr<H265FrameNoCacheAble>;
2019-08-01 18:49:04 +08:00
2021-02-05 11:51:16 +08:00
H265FrameNoCacheAble(char *ptr, size_t size, uint32_t dts,uint32_t pts, size_t prefix_size = 4);
bool keyFrame() const override;
bool configFrame() const override;
2018-10-30 15:56:00 +08:00
};
/**
* 265
*/
class H265Track : public VideoTrack {
public:
2021-02-05 11:51:16 +08:00
using Ptr = std::shared_ptr<H265Track>;
2018-10-30 15:56:00 +08:00
/**
* sps pps构造h265类型的媒体
* inputFrame中获取sps pps
*/
2021-02-05 11:51:16 +08:00
H265Track() = default;
2018-10-30 15:56:00 +08:00
/**
* h265类型的媒体
2018-10-30 16:12:32 +08:00
* @param vps vps帧数据
2018-10-30 15:56:00 +08:00
* @param sps sps帧数据
* @param pps pps帧数据
2018-10-30 16:12:32 +08:00
* @param vps_prefix_len 265340x00 00 00 01
2018-10-30 15:56:00 +08:00
* @param sps_prefix_len 265340x00 00 00 01
* @param pps_prefix_len 265340x00 00 00 01
*/
2021-02-05 11:51:16 +08:00
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);
2018-10-30 15:56:00 +08:00
/**
2021-02-05 11:51:16 +08:00
* 0x00 00 00 01vps/sps/pps
2018-10-30 15:56:00 +08:00
*/
2021-02-05 11:51:16 +08:00
const string &getVps() const;
const string &getSps() const;
const string &getPps() const;
2018-10-30 15:56:00 +08:00
2021-02-05 11:51:16 +08:00
bool ready() override;
CodecId getCodecId() const override;
int getVideoWidth() const override;
int getVideoHeight() const override;
float getVideoFps() const override;
void inputFrame(const Frame::Ptr &frame) override;
private:
2021-02-05 11:51:16 +08:00
void onReady();
Sdp::Ptr getSdp() override;
Track::Ptr clone() override;
void inputFrame_l(const Frame::Ptr &frame);
void insertConfigFrame(const Frame::Ptr &frame);
2018-10-30 15:56:00 +08:00
private:
2021-02-05 11:51:16 +08:00
bool _is_idr = false;
int _width = 0;
int _height = 0;
float _fps = 0;
2018-10-30 15:56:00 +08:00
string _vps;
string _sps;
string _pps;
2018-10-30 21:05:48 +08:00
};
2018-10-30 14:59:42 +08:00
}//namespace mediakit
2020-05-11 22:33:10 +08:00
#endif //ZLMEDIAKIT_H265_H