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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/*
* Copyright (C) 2005-2013 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#ifndef ES_H264_H
#define ES_H264_H
#include "elementaryStream.h"
namespace TSDemux
{
class ES_h264 : public ElementaryStream
{
private:
typedef struct h264_private
{
struct SPS
{
int frame_duration;
int cbpsize;
int pic_order_cnt_type;
int frame_mbs_only_flag;
int log2_max_frame_num;
int log2_max_pic_order_cnt_lsb;
int delta_pic_order_always_zero_flag;
int raw_data_size;
uint8_t raw_data[64];
} sps[256];
struct PPS
{
uint8_t sps;
uint8_t pic_order_present_flag;
uint16_t raw_data_size;
uint8_t raw_data[64];
} pps[256];
struct VCL_NAL
{
int frame_num; // slice
int pic_parameter_set_id; // slice
int field_pic_flag; // slice
int bottom_field_flag; // slice
int delta_pic_order_cnt_bottom; // slice
int delta_pic_order_cnt_0; // slice
int delta_pic_order_cnt_1; // slice
int pic_order_cnt_lsb; // slice
int idr_pic_id; // slice
int nal_unit_type;
int nal_ref_idc; // start code
int pic_order_cnt_type; // sps
} vcl_nal;
} h264_private_t;
typedef struct mpeg_rational_s {
int num;
int den;
} mpeg_rational_t;
enum
{
NAL_SLH = 0x01, // Slice Header
NAL_SEI = 0x06, // Supplemental Enhancement Information
NAL_SPS = 0x07, // Sequence Parameter Set
NAL_PPS = 0x08, // Picture Parameter Set
NAL_AUD = 0x09, // Access Unit Delimiter
NAL_END_SEQ = 0x0A // End of Sequence
};
uint32_t m_StartCode;
bool m_NeedIFrame;
bool m_NeedSPS;
bool m_NeedPPS;
int m_Width;
int m_Height;
mpeg_rational_t m_PixelAspect;
h264_private m_streamData;
int m_vbvDelay; /* -1 if CBR */
int m_vbvSize; /* Video buffer size (in bytes) */
int64_t m_DTS;
int64_t m_PTS;
bool m_Interlaced;
bool m_recoveryPoint;
uint32_t m_fpsRate, m_fpsScale;
int m_SPSRawId;
int m_PPSRawId;
int Parse_H264(uint32_t startcode, int buf_ptr, bool &complete);
bool Parse_PPS(uint8_t *buf, int len);
bool Parse_SLH(uint8_t *buf, int len, h264_private::VCL_NAL &vcl);
bool Parse_SPS(uint8_t *buf, int len, bool idOnly);
bool IsFirstVclNal(h264_private::VCL_NAL &vcl);
public:
ES_h264(uint16_t pes_pid);
virtual ~ES_h264();
virtual void Parse(STREAM_PKT* pkt);
virtual void Reset();
};
}
#endif /* ES_H264_H */
|