FFmpeg
parser.c
Go to the documentation of this file.
1 /*
2  * HEVC Annex B format parser
3  *
4  * Copyright (C) 2012 - 2013 Guillaume Martres
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "libavutil/common.h"
24 #include "libavutil/mem.h"
25 
26 #include "golomb.h"
27 #include "hevc.h"
28 #include "parse.h"
29 #include "ps.h"
30 #include "sei.h"
31 #include "h2645_parse.h"
32 #include "parser.h"
33 
34 #define START_CODE 0x000001 ///< start_code_prefix_one_3bytes
35 
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)
38 
39 typedef struct HEVCParserContext {
41 
45 
46  int is_avc;
49 
50  int poc;
51  int pocTid0;
53 
55  AVCodecContext *avctx)
56 {
57  HEVCParserContext *ctx = s->priv_data;
58  HEVCParamSets *ps = &ctx->ps;
59  HEVCSEI *sei = &ctx->sei;
60  GetBitContext *gb = &nal->gb;
61  const HEVCPPS *pps;
62  const HEVCSPS *sps;
63  const HEVCWindow *ow;
64  int i, num = 0, den = 0;
65 
66  unsigned int pps_id, first_slice_in_pic_flag, dependent_slice_segment_flag;
67  enum HEVCSliceType slice_type;
68 
69  first_slice_in_pic_flag = get_bits1(gb);
70  s->picture_structure = sei->picture_timing.picture_struct;
71  s->field_order = sei->picture_timing.picture_struct;
72 
73  if (IS_IRAP_NAL(nal)) {
74  s->key_frame = 1;
75  skip_bits1(gb); // no_output_of_prior_pics_flag
76  }
77 
78  pps_id = get_ue_golomb(gb);
79  if (pps_id >= HEVC_MAX_PPS_COUNT || !ps->pps_list[pps_id]) {
80  av_log(avctx, AV_LOG_ERROR, "PPS id out of range: %d\n", pps_id);
81  return AVERROR_INVALIDDATA;
82  }
83  pps = ps->pps_list[pps_id];
84  sps = pps->sps;
85 
86  ow = &sps->output_window;
87 
88  s->coded_width = sps->width;
89  s->coded_height = sps->height;
90  s->width = sps->width - ow->left_offset - ow->right_offset;
91  s->height = sps->height - ow->top_offset - ow->bottom_offset;
92  s->format = sps->pix_fmt;
93  avctx->profile = sps->ptl.general_ptl.profile_idc;
94  avctx->level = sps->ptl.general_ptl.level_idc;
95 
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;
102  }
103 
104  if (num != 0 && den != 0)
105  av_reduce(&avctx->framerate.den, &avctx->framerate.num,
106  num, den, 1 << 30);
107 
108  if (!first_slice_in_pic_flag) {
109  unsigned int slice_segment_addr;
110  int slice_address_length;
111 
112  if (pps->dependent_slice_segments_enabled_flag)
113  dependent_slice_segment_flag = get_bits1(gb);
114  else
115  dependent_slice_segment_flag = 0;
116 
117  slice_address_length = av_ceil_log2_c(sps->ctb_width *
118  sps->ctb_height);
119  slice_segment_addr = get_bitsz(gb, slice_address_length);
120  if (slice_segment_addr >= sps->ctb_width * sps->ctb_height) {
121  av_log(avctx, AV_LOG_ERROR, "Invalid slice segment address: %u.\n",
122  slice_segment_addr);
123  return AVERROR_INVALIDDATA;
124  }
125  } else
126  dependent_slice_segment_flag = 0;
127 
128  if (dependent_slice_segment_flag)
129  return 0; /* break; */
130 
131  for (i = 0; i < pps->num_extra_slice_header_bits; i++)
132  skip_bits(gb, 1); // slice_reserved_undetermined_flag[]
133 
134  slice_type = get_ue_golomb_31(gb);
135  if (!(slice_type == HEVC_SLICE_I || slice_type == HEVC_SLICE_P ||
136  slice_type == HEVC_SLICE_B)) {
137  av_log(avctx, AV_LOG_ERROR, "Unknown slice type: %d.\n",
138  slice_type);
139  return AVERROR_INVALIDDATA;
140  }
141  s->pict_type = slice_type == HEVC_SLICE_B ? AV_PICTURE_TYPE_B :
142  slice_type == HEVC_SLICE_P ? AV_PICTURE_TYPE_P :
144 
145  if (pps->output_flag_present_flag)
146  skip_bits1(gb); // pic_output_flag
147 
148  if (sps->separate_colour_plane)
149  skip_bits(gb, 2); // colour_plane_id
150 
151  if (!IS_IDR_NAL(nal)) {
152  int pic_order_cnt_lsb = get_bits(gb, sps->log2_max_poc_lsb);
153  s->output_picture_number = ctx->poc =
154  ff_hevc_compute_poc(sps, ctx->pocTid0, pic_order_cnt_lsb, nal->type);
155  } else
156  s->output_picture_number = ctx->poc = 0;
157 
158  if (nal->temporal_id == 0 &&
159  nal->type != HEVC_NAL_TRAIL_N &&
160  nal->type != HEVC_NAL_TSA_N &&
161  nal->type != HEVC_NAL_STSA_N &&
162  nal->type != HEVC_NAL_RADL_N &&
163  nal->type != HEVC_NAL_RASL_N &&
164  nal->type != HEVC_NAL_RADL_R &&
165  nal->type != HEVC_NAL_RASL_R)
166  ctx->pocTid0 = ctx->poc;
167 
168  return 1; /* no need to evaluate the rest */
169 }
170 
171 /**
172  * Parse NAL units of found picture and decode some basic information.
173  *
174  * @param s parser context.
175  * @param avctx codec context.
176  * @param buf buffer with field/frame data.
177  * @param buf_size size of the buffer.
178  */
179 static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
180  int buf_size, AVCodecContext *avctx)
181 {
182  HEVCParserContext *ctx = s->priv_data;
183  HEVCParamSets *ps = &ctx->ps;
184  HEVCSEI *sei = &ctx->sei;
185  int ret, i;
186 
187  /* set some sane default values */
188  s->pict_type = AV_PICTURE_TYPE_I;
189  s->key_frame = 0;
190  s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
191 
193 
194  ret = ff_h2645_packet_split(&ctx->pkt, buf, buf_size, avctx, ctx->is_avc,
195  ctx->nal_length_size, AV_CODEC_ID_HEVC, 1, 0);
196  if (ret < 0)
197  return ret;
198 
199  for (i = 0; i < ctx->pkt.nb_nals; i++) {
200  H2645NAL *nal = &ctx->pkt.nals[i];
201  GetBitContext *gb = &nal->gb;
202 
203  if (nal->nuh_layer_id > 0)
204  continue;
205 
206  switch (nal->type) {
207  case HEVC_NAL_VPS:
208  ff_hevc_decode_nal_vps(gb, avctx, ps);
209  break;
210  case HEVC_NAL_SPS:
211  ff_hevc_decode_nal_sps(gb, avctx, ps, 1);
212  break;
213  case HEVC_NAL_PPS:
214  ff_hevc_decode_nal_pps(gb, avctx, ps);
215  break;
216  case HEVC_NAL_SEI_PREFIX:
217  case HEVC_NAL_SEI_SUFFIX:
218  ff_hevc_decode_nal_sei(gb, avctx, sei, ps, nal->type);
219  break;
220  case HEVC_NAL_TRAIL_N:
221  case HEVC_NAL_TRAIL_R:
222  case HEVC_NAL_TSA_N:
223  case HEVC_NAL_TSA_R:
224  case HEVC_NAL_STSA_N:
225  case HEVC_NAL_STSA_R:
226  case HEVC_NAL_BLA_W_LP:
227  case HEVC_NAL_BLA_W_RADL:
228  case HEVC_NAL_BLA_N_LP:
229  case HEVC_NAL_IDR_W_RADL:
230  case HEVC_NAL_IDR_N_LP:
231  case HEVC_NAL_CRA_NUT:
232  case HEVC_NAL_RADL_N:
233  case HEVC_NAL_RADL_R:
234  case HEVC_NAL_RASL_N:
235  case HEVC_NAL_RASL_R:
236  if (ctx->sei.picture_timing.picture_struct == HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING) {
237  s->repeat_pict = 1;
238  } else if (ctx->sei.picture_timing.picture_struct == HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING) {
239  s->repeat_pict = 2;
240  }
241  ret = hevc_parse_slice_header(s, nal, avctx);
242  if (ret)
243  return ret;
244  break;
245  }
246  }
247  /* didn't find a picture! */
248  av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
249  return -1;
250 }
251 
252 /**
253  * Find the end of the current frame in the bitstream.
254  * @return the position of the first byte of the next frame, or END_NOT_FOUND
255  */
256 static int hevc_find_frame_end(AVCodecParserContext *s, const uint8_t *buf,
257  int buf_size)
258 {
259  HEVCParserContext *ctx = s->priv_data;
260  ParseContext *pc = &ctx->pc;
261  int i;
262 
263  for (i = 0; i < buf_size; i++) {
264  int nut;
265 
266  pc->state64 = (pc->state64 << 8) | buf[i];
267 
268  if (((pc->state64 >> 3 * 8) & 0xFFFFFF) != START_CODE)
269  continue;
270 
271  nut = (pc->state64 >> 2 * 8 + 1) & 0x3F;
272  // Beginning of access unit
273  if ((nut >= HEVC_NAL_VPS && nut <= HEVC_NAL_EOB_NUT) || nut == HEVC_NAL_SEI_PREFIX ||
274  (nut >= 41 && nut <= 44) || (nut >= 48 && nut <= 55)) {
275  if (pc->frame_start_found) {
276  pc->frame_start_found = 0;
277  if (!((pc->state64 >> 6 * 8) & 0xFF))
278  return i - 6;
279  return i - 5;
280  }
281  } else if (nut <= HEVC_NAL_RASL_R ||
282  (nut >= HEVC_NAL_BLA_W_LP && nut <= HEVC_NAL_CRA_NUT)) {
283  int first_slice_segment_in_pic_flag = buf[i] >> 7;
284  if (first_slice_segment_in_pic_flag) {
285  if (!pc->frame_start_found) {
286  pc->frame_start_found = 1;
287  } else { // First slice of next frame found
288  pc->frame_start_found = 0;
289  if (!((pc->state64 >> 6 * 8) & 0xFF))
290  return i - 6;
291  return i - 5;
292  }
293  }
294  }
295  }
296 
297  return END_NOT_FOUND;
298 }
299 
301  const uint8_t **poutbuf, int *poutbuf_size,
302  const uint8_t *buf, int buf_size)
303 {
304  int next;
305  HEVCParserContext *ctx = s->priv_data;
306  ParseContext *pc = &ctx->pc;
307  int is_dummy_buf = !buf_size;
308  const uint8_t *dummy_buf = buf;
309 
310  if (avctx->extradata && !ctx->parsed_extradata) {
311  ff_hevc_decode_extradata(avctx->extradata, avctx->extradata_size, &ctx->ps, &ctx->sei,
312  &ctx->is_avc, &ctx->nal_length_size, avctx->err_recognition,
313  1, avctx);
314  ctx->parsed_extradata = 1;
315  }
316 
317  if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
318  next = buf_size;
319  } else {
320  next = hevc_find_frame_end(s, buf, buf_size);
321  if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
322  *poutbuf = NULL;
323  *poutbuf_size = 0;
324  return buf_size;
325  }
326  }
327 
328  is_dummy_buf &= (dummy_buf == buf);
329 
330  if (!is_dummy_buf)
331  parse_nal_units(s, buf, buf_size, avctx);
332 
333  *poutbuf = buf;
334  *poutbuf_size = buf_size;
335  return next;
336 }
337 
339 {
340  HEVCParserContext *ctx = s->priv_data;
341 
342  ff_hevc_ps_uninit(&ctx->ps);
344  ff_hevc_reset_sei(&ctx->sei);
345 
346  av_freep(&ctx->pc.buffer);
347 }
348 
351  .priv_data_size = sizeof(HEVCParserContext),
352  .parser_parse = hevc_parse,
353  .parser_close = hevc_parser_close,
354 };
hevc_parse
static int hevc_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: parser.c:300
HEVCParserContext::sei
HEVCSEI sei
Definition: parser.c:44
h2645_parse.h
hevc_parser_close
static void hevc_parser_close(AVCodecParserContext *s)
Definition: parser.c:338
HEVCWindow::bottom_offset
unsigned int bottom_offset
Definition: ps.h:93
HEVCParamSets::pps_list
const HEVCPPS * pps_list[HEVC_MAX_PPS_COUNT]
RefStruct references.
Definition: ps.h:449
AV_PICTURE_STRUCTURE_UNKNOWN
@ AV_PICTURE_STRUCTURE_UNKNOWN
unknown
Definition: avcodec.h:2702
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1420
HEVCParserContext::pc
ParseContext pc
Definition: parser.c:40
HEVCParserContext::pocTid0
int pocTid0
Definition: parser.c:51
H2645NAL::nuh_layer_id
int nuh_layer_id
Definition: h2645_parse.h:67
get_ue_golomb
static int get_ue_golomb(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to 8190.
Definition: golomb.h:53
HEVC_NAL_BLA_N_LP
@ HEVC_NAL_BLA_N_LP
Definition: hevc.h:47
ff_h2645_packet_uninit
void ff_h2645_packet_uninit(H2645Packet *pkt)
Free all the allocated memory in the packet.
Definition: h2645_parse.c:599
hevc_parse_slice_header
static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal, AVCodecContext *avctx)
Definition: parser.c:54
HEVC_NAL_TSA_N
@ HEVC_NAL_TSA_N
Definition: hevc.h:31
HEVC_NAL_IDR_N_LP
@ HEVC_NAL_IDR_N_LP
Definition: hevc.h:49
HEVC_NAL_IDR_W_RADL
@ HEVC_NAL_IDR_W_RADL
Definition: hevc.h:48
H2645NAL::temporal_id
int temporal_id
HEVC only, nuh_temporal_id_plus_1 - 1.
Definition: h2645_parse.h:62
ff_hevc_decode_nal_sps
int ff_hevc_decode_nal_sps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps, int apply_defdispwin)
Definition: ps.c:1308
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:381
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:560
golomb.h
exp golomb vlc stuff
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:335
ParseContext
Definition: parser.h:28
ff_hevc_compute_poc
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.
Definition: ps.c:2056
HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
@ HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
Definition: sei.h:37
HEVCParserContext::parsed_extradata
int parsed_extradata
Definition: parser.c:48
HEVCWindow::left_offset
unsigned int left_offset
Definition: ps.h:90
GetBitContext
Definition: get_bits.h:108
sei.h
HEVC_NAL_SEI_SUFFIX
@ HEVC_NAL_SEI_SUFFIX
Definition: hevc.h:69
HEVCParserContext::is_avc
int is_avc
Definition: parser.c:46
HEVC_NAL_SEI_PREFIX
@ HEVC_NAL_SEI_PREFIX
Definition: hevc.h:68
av_reduce
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
AVRational::num
int num
Numerator.
Definition: rational.h:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
HEVC_SLICE_B
@ HEVC_SLICE_B
Definition: hevc.h:96
HEVCParserContext::pkt
H2645Packet pkt
Definition: parser.c:42
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:524
s
#define s(width, name)
Definition: cbs_vp9.c:198
parse.h
HEVCSEI
Definition: sei.h:82
HEVC_NAL_VPS
@ HEVC_NAL_VPS
Definition: hevc.h:61
parse_nal_units
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.
Definition: parser.c:179
ctx
AVFormatContext * ctx
Definition: movenc.c:49
hevc.h
HEVCWindow::top_offset
unsigned int top_offset
Definition: ps.h:92
H2645NAL::type
int type
NAL unit type.
Definition: h2645_parse.h:52
ff_hevc_decode_nal_vps
int ff_hevc_decode_nal_vps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
Definition: ps.c:454
NULL
#define NULL
Definition: coverity.c:32
HEVC_SLICE_I
@ HEVC_SLICE_I
Definition: hevc.h:98
ff_hevc_decode_nal_pps
int ff_hevc_decode_nal_pps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
Definition: ps.c:1769
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:279
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:388
HEVC_NAL_STSA_N
@ HEVC_NAL_STSA_N
Definition: hevc.h:33
ff_hevc_reset_sei
static void ff_hevc_reset_sei(HEVCSEI *sei)
Reset SEI values that are stored on the Context.
Definition: sei.h:107
ParseContext::frame_start_found
int frame_start_found
Definition: parser.h:34
HEVCSliceType
HEVCSliceType
Definition: hevc.h:95
sei
static int FUNC() sei(CodedBitstreamContext *ctx, RWContext *rw, H264RawSEI *current)
Definition: cbs_h264_syntax_template.c:858
AVCodecContext::level
int level
Encoding level descriptor.
Definition: avcodec.h:1784
ff_hevc_parser
const AVCodecParser ff_hevc_parser
Definition: parser.c:349
HEVCWindow
Definition: ps.h:89
hevc_find_frame_end
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.
Definition: parser.c:256
HEVC_NAL_RASL_R
@ HEVC_NAL_RASL_R
Definition: hevc.h:38
AVCodecParser::codec_ids
int codec_ids[7]
Definition: avcodec.h:2868
HEVC_NAL_RASL_N
@ HEVC_NAL_RASL_N
Definition: hevc.h:37
HEVC_NAL_SPS
@ HEVC_NAL_SPS
Definition: hevc.h:62
HEVCParserContext::nal_length_size
int nal_length_size
Definition: parser.c:47
H2645NAL::gb
GetBitContext gb
Definition: h2645_parse.h:47
H2645NAL
Definition: h2645_parse.h:34
ps.h
HEVC_NAL_PPS
@ HEVC_NAL_PPS
Definition: hevc.h:63
HEVC_NAL_STSA_R
@ HEVC_NAL_STSA_R
Definition: hevc.h:34
ff_h2645_packet_split
int ff_h2645_packet_split(H2645Packet *pkt, const uint8_t *buf, int length, void *logctx, int is_nalff, int nal_length_size, enum AVCodecID codec_id, int small_padding, int use_ref)
Split an input packet into NAL units.
Definition: h2645_parse.c:465
HEVC_MAX_PPS_COUNT
@ HEVC_MAX_PPS_COUNT
Definition: hevc.h:114
skip_bits1
static void skip_bits1(GetBitContext *s)
Definition: get_bits.h:413
IS_IDR_NAL
#define IS_IDR_NAL(nal)
Definition: parser.c:37
ff_combine_frame
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
Definition: parser.c:203
ff_hevc_ps_uninit
void ff_hevc_ps_uninit(HEVCParamSets *ps)
Definition: ps.c:2041
HEVC_NAL_TSA_R
@ HEVC_NAL_TSA_R
Definition: hevc.h:32
PARSER_FLAG_COMPLETE_FRAMES
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:2742
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
IS_IRAP_NAL
#define IS_IRAP_NAL(nal)
Definition: parser.c:36
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:523
HEVCParserContext::ps
HEVCParamSets ps
Definition: parser.c:43
common.h
AV_CODEC_ID_HEVC
@ AV_CODEC_ID_HEVC
Definition: codec_id.h:226
ff_hevc_decode_extradata
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)
Definition: parse.c:80
parser.h
HEVCParserContext::poc
int poc
Definition: parser.c:50
START_CODE
#define START_CODE
start_code_prefix_one_3bytes
Definition: parser.c:34
AVCodecParserContext
Definition: avcodec.h:2708
ret
ret
Definition: filter_design.txt:187
HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
@ HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
Definition: sei.h:36
HEVC_NAL_EOB_NUT
@ HEVC_NAL_EOB_NUT
Definition: hevc.h:66
sps
static int FUNC() sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
Definition: cbs_h264_syntax_template.c:260
HEVCParserContext
Definition: parser.c:39
AVCodecContext
main external API structure.
Definition: avcodec.h:445
get_ue_golomb_31
static int get_ue_golomb_31(GetBitContext *gb)
read unsigned exp golomb code, constraint to a max of 31.
Definition: golomb.h:120
HEVC_NAL_CRA_NUT
@ HEVC_NAL_CRA_NUT
Definition: hevc.h:50
AV_PICTURE_TYPE_B
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:281
AVRational::den
int den
Denominator.
Definition: rational.h:60
AVCodecContext::profile
int profile
profile
Definition: avcodec.h:1640
ParseContext::state64
uint64_t state64
contains the last 8 bytes in MSB order
Definition: parser.h:37
pps
uint64_t pps
Definition: dovi_rpuenc.c:35
HEVCWindow::right_offset
unsigned int right_offset
Definition: ps.h:91
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:280
mem.h
get_bitsz
static av_always_inline int get_bitsz(GetBitContext *s, int n)
Read 0-25 bits.
Definition: get_bits.h:351
HEVCSPS
Definition: ps.h:190
HEVCPPS
Definition: ps.h:309
HEVC_NAL_TRAIL_R
@ HEVC_NAL_TRAIL_R
Definition: hevc.h:30
HEVC_NAL_RADL_R
@ HEVC_NAL_RADL_R
Definition: hevc.h:36
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
AVCodecParser
Definition: avcodec.h:2867
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
HEVC_NAL_RADL_N
@ HEVC_NAL_RADL_N
Definition: hevc.h:35
H2645Packet
Definition: h2645_parse.h:82
HEVC_NAL_BLA_W_RADL
@ HEVC_NAL_BLA_W_RADL
Definition: hevc.h:46
av_ceil_log2_c
static av_always_inline av_const int av_ceil_log2_c(int x)
Compute ceil(log2(x)).
Definition: common.h:436
HEVC_NAL_TRAIL_N
@ HEVC_NAL_TRAIL_N
Definition: hevc.h:29
HEVC_SLICE_P
@ HEVC_SLICE_P
Definition: hevc.h:97
ff_hevc_decode_nal_sei
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s, const HEVCParamSets *ps, enum HEVCNALUnitType type)
Definition: sei.c:227
HEVC_NAL_BLA_W_LP
@ HEVC_NAL_BLA_W_LP
Definition: hevc.h:45
HEVCParamSets
Definition: ps.h:446