Go to the documentation of this file.
34 #define START_CODE 0x000001
36 #define IS_IRAP_NAL(nal) (nal->type >= 16 && nal->type <= 23)
37 #define IS_IDR_NAL(nal) (nal->type == HEVC_NAL_IDR_W_RADL || nal->type == HEVC_NAL_IDR_N_LP)
64 int i, num = 0, den = 0;
66 unsigned int pps_id, first_slice_in_pic_flag, dependent_slice_segment_flag;
70 s->picture_structure =
sei->picture_timing.picture_struct;
71 s->field_order =
sei->picture_timing.picture_struct;
86 ow = &
sps->output_window;
88 s->coded_width =
sps->width;
89 s->coded_height =
sps->height;
92 s->format =
sps->pix_fmt;
93 avctx->
profile =
sps->ptl.general_ptl.profile_idc;
94 avctx->
level =
sps->ptl.general_ptl.level_idc;
96 if (
sps->vps->vps_timing_info_present_flag) {
97 num =
sps->vps->vps_num_units_in_tick;
98 den =
sps->vps->vps_time_scale;
99 }
else if (
sps->vui.vui_timing_info_present_flag) {
100 num =
sps->vui.vui_num_units_in_tick;
101 den =
sps->vui.vui_time_scale;
104 if (num > 0 && den > 0)
108 if (!first_slice_in_pic_flag) {
109 unsigned int slice_segment_addr;
110 int slice_address_length;
112 if (
pps->dependent_slice_segments_enabled_flag)
113 dependent_slice_segment_flag =
get_bits1(gb);
115 dependent_slice_segment_flag = 0;
119 slice_segment_addr =
get_bitsz(gb, slice_address_length);
120 if (slice_segment_addr >=
sps->ctb_width *
sps->ctb_height) {
126 dependent_slice_segment_flag = 0;
128 if (dependent_slice_segment_flag)
131 for (
i = 0;
i <
pps->num_extra_slice_header_bits;
i++)
145 if (
pps->output_flag_present_flag)
148 if (
sps->separate_colour_plane)
152 int pic_order_cnt_lsb =
get_bits(gb,
sps->log2_max_poc_lsb);
153 s->output_picture_number =
ctx->poc =
156 s->output_picture_number =
ctx->poc = 0;
200 for (
i = 0;
i <
ctx->pkt.nb_nals;
i++) {
249 av_log(avctx,
AV_LOG_ERROR,
"missing picture in access unit with size %d\n", buf_size);
264 for (
i = 0;
i < buf_size;
i++) {
272 nut = (pc->
state64 >> 2 * 8 + 1) & 0x3F;
274 layer_id = (pc->
state64 >> 11) & 0x3F;
280 (nut >= 41 && nut <= 44) || (nut >= 48 && nut <= 55)) {
283 if (!((pc->
state64 >> 6 * 8) & 0xFF))
289 int first_slice_segment_in_pic_flag = buf[
i] >> 7;
290 if (first_slice_segment_in_pic_flag) {
295 if (!((pc->
state64 >> 6 * 8) & 0xFF))
307 const uint8_t **poutbuf,
int *poutbuf_size,
308 const uint8_t *buf,
int buf_size)
313 int is_dummy_buf = !buf_size;
314 const uint8_t *dummy_buf = buf;
320 ctx->parsed_extradata = 1;
334 is_dummy_buf &= (dummy_buf == buf);
340 *poutbuf_size = buf_size;
int ff_hevc_decode_extradata(const uint8_t *data, int size, HEVCParamSets *ps, HEVCSEI *sei, int *is_nalff, int *nal_length_size, int err_recognition, int apply_defdispwin, void *logctx)
static int hevc_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
@ H2645_FLAG_SMALL_PADDING
static void hevc_parser_close(AVCodecParserContext *s)
unsigned int bottom_offset
const HEVCPPS * pps_list[HEVC_MAX_PPS_COUNT]
RefStruct references.
@ AV_PICTURE_STRUCTURE_UNKNOWN
unknown
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
static int get_ue_golomb(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to 8190.
void ff_h2645_packet_uninit(H2645Packet *pkt)
Free all the allocated memory in the packet.
static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal, AVCodecContext *avctx)
int temporal_id
HEVC only, nuh_temporal_id_plus_1 - 1.
static void skip_bits(GetBitContext *s, int n)
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
int ff_hevc_compute_poc(const HEVCSPS *sps, int pocTid0, int poc_lsb, int nal_unit_type)
Compute POC of the current frame and return it.
@ HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf, int buf_size, AVCodecContext *avctx)
Parse NAL units of found picture and decode some basic information.
int ff_hevc_decode_nal_vps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
int ff_hevc_decode_nal_pps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
@ AV_PICTURE_TYPE_I
Intra.
static unsigned int get_bits1(GetBitContext *s)
static void ff_hevc_reset_sei(HEVCSEI *sei)
Reset SEI values that are stored on the Context.
static int FUNC() sei(CodedBitstreamContext *ctx, RWContext *rw, H264RawSEI *current)
int level
Encoding level descriptor.
const AVCodecParser ff_hevc_parser
static int hevc_find_frame_end(AVCodecParserContext *s, const uint8_t *buf, int buf_size)
Find the end of the current frame in the bitstream.
static void skip_bits1(GetBitContext *s)
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
void ff_hevc_ps_uninit(HEVCParamSets *ps)
#define PARSER_FLAG_COMPLETE_FRAMES
#define i(width, name, range_min, range_max)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
#define START_CODE
start_code_prefix_one_3bytes
@ HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
static int FUNC() sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
main external API structure.
static int get_ue_golomb_31(GetBitContext *gb)
read unsigned exp golomb code, constraint to a max of 31.
int ff_hevc_decode_nal_sps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps, unsigned nuh_layer_id, int apply_defdispwin)
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
uint64_t state64
contains the last 8 bytes in MSB order
unsigned int right_offset
@ AV_PICTURE_TYPE_P
Predicted.
static av_always_inline int get_bitsz(GetBitContext *s, int n)
Read 0-25 bits.
#define flags(name, subs,...)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length, void *logctx, int nal_length_size, enum AVCodecID codec_id, int flags)
Split an input packet into NAL units.
static av_always_inline av_const int av_ceil_log2_c(int x)
Compute ceil(log2(x)).
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s, const HEVCParamSets *ps, enum HEVCNALUnitType type)