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 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://www.xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#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 */
|