FFmpeg
hevc_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 "hevc_parse.h"
29 #include "hevc_ps.h"
30 #include "hevc_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 HEVCWindow *ow;
62  int i, num = 0, den = 0;
63 
64  unsigned int pps_id, first_slice_in_pic_flag, dependent_slice_segment_flag;
65  enum HEVCSliceType slice_type;
66 
67  first_slice_in_pic_flag = get_bits1(gb);
68  s->picture_structure = sei->picture_timing.picture_struct;
69  s->field_order = sei->picture_timing.picture_struct;
70 
71  if (IS_IRAP_NAL(nal)) {
72  s->key_frame = 1;
73  skip_bits1(gb); // no_output_of_prior_pics_flag
74  }
75 
76  pps_id = get_ue_golomb(gb);
77  if (pps_id >= HEVC_MAX_PPS_COUNT || !ps->pps_list[pps_id]) {
78  av_log(avctx, AV_LOG_ERROR, "PPS id out of range: %d\n", pps_id);
79  return AVERROR_INVALIDDATA;
80  }
81  ps->pps = ps->pps_list[pps_id];
82 
83  if (ps->pps->sps_id >= HEVC_MAX_SPS_COUNT || !ps->sps_list[ps->pps->sps_id]) {
84  av_log(avctx, AV_LOG_ERROR, "SPS id out of range: %d\n", ps->pps->sps_id);
85  return AVERROR_INVALIDDATA;
86  }
87  if (ps->sps != ps->sps_list[ps->pps->sps_id]) {
88  ps->sps = ps->sps_list[ps->pps->sps_id];
89  ps->vps = ps->vps_list[ps->sps->vps_id];
90  }
91  ow = &ps->sps->output_window;
92 
93  s->coded_width = ps->sps->width;
94  s->coded_height = ps->sps->height;
95  s->width = ps->sps->width - ow->left_offset - ow->right_offset;
96  s->height = ps->sps->height - ow->top_offset - ow->bottom_offset;
97  s->format = ps->sps->pix_fmt;
98  avctx->profile = ps->sps->ptl.general_ptl.profile_idc;
99  avctx->level = ps->sps->ptl.general_ptl.level_idc;
100 
102  num = ps->vps->vps_num_units_in_tick;
103  den = ps->vps->vps_time_scale;
104  } else if (ps->sps->vui.vui_timing_info_present_flag) {
105  num = ps->sps->vui.vui_num_units_in_tick;
106  den = ps->sps->vui.vui_time_scale;
107  }
108 
109  if (num != 0 && den != 0)
110  av_reduce(&avctx->framerate.den, &avctx->framerate.num,
111  num, den, 1 << 30);
112 
113  if (!first_slice_in_pic_flag) {
114  unsigned int slice_segment_addr;
115  int slice_address_length;
116 
118  dependent_slice_segment_flag = get_bits1(gb);
119  else
120  dependent_slice_segment_flag = 0;
121 
122  slice_address_length = av_ceil_log2_c(ps->sps->ctb_width *
123  ps->sps->ctb_height);
124  slice_segment_addr = get_bitsz(gb, slice_address_length);
125  if (slice_segment_addr >= ps->sps->ctb_width * ps->sps->ctb_height) {
126  av_log(avctx, AV_LOG_ERROR, "Invalid slice segment address: %u.\n",
127  slice_segment_addr);
128  return AVERROR_INVALIDDATA;
129  }
130  } else
131  dependent_slice_segment_flag = 0;
132 
133  if (dependent_slice_segment_flag)
134  return 0; /* break; */
135 
136  for (i = 0; i < ps->pps->num_extra_slice_header_bits; i++)
137  skip_bits(gb, 1); // slice_reserved_undetermined_flag[]
138 
139  slice_type = get_ue_golomb_31(gb);
140  if (!(slice_type == HEVC_SLICE_I || slice_type == HEVC_SLICE_P ||
141  slice_type == HEVC_SLICE_B)) {
142  av_log(avctx, AV_LOG_ERROR, "Unknown slice type: %d.\n",
143  slice_type);
144  return AVERROR_INVALIDDATA;
145  }
146  s->pict_type = slice_type == HEVC_SLICE_B ? AV_PICTURE_TYPE_B :
147  slice_type == HEVC_SLICE_P ? AV_PICTURE_TYPE_P :
149 
150  if (ps->pps->output_flag_present_flag)
151  skip_bits1(gb); // pic_output_flag
152 
154  skip_bits(gb, 2); // colour_plane_id
155 
156  if (!IS_IDR_NAL(nal)) {
157  int pic_order_cnt_lsb = get_bits(gb, ps->sps->log2_max_poc_lsb);
158  s->output_picture_number = ctx->poc =
159  ff_hevc_compute_poc(ps->sps, ctx->pocTid0, pic_order_cnt_lsb, nal->type);
160  } else
161  s->output_picture_number = ctx->poc = 0;
162 
163  if (nal->temporal_id == 0 &&
164  nal->type != HEVC_NAL_TRAIL_N &&
165  nal->type != HEVC_NAL_TSA_N &&
166  nal->type != HEVC_NAL_STSA_N &&
167  nal->type != HEVC_NAL_RADL_N &&
168  nal->type != HEVC_NAL_RASL_N &&
169  nal->type != HEVC_NAL_RADL_R &&
170  nal->type != HEVC_NAL_RASL_R)
171  ctx->pocTid0 = ctx->poc;
172 
173  return 1; /* no need to evaluate the rest */
174 }
175 
176 /**
177  * Parse NAL units of found picture and decode some basic information.
178  *
179  * @param s parser context.
180  * @param avctx codec context.
181  * @param buf buffer with field/frame data.
182  * @param buf_size size of the buffer.
183  */
184 static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
185  int buf_size, AVCodecContext *avctx)
186 {
187  HEVCParserContext *ctx = s->priv_data;
188  HEVCParamSets *ps = &ctx->ps;
189  HEVCSEI *sei = &ctx->sei;
190  int ret, i;
191 
192  /* set some sane default values */
193  s->pict_type = AV_PICTURE_TYPE_I;
194  s->key_frame = 0;
195  s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
196 
198 
199  ret = ff_h2645_packet_split(&ctx->pkt, buf, buf_size, avctx, ctx->is_avc,
200  ctx->nal_length_size, AV_CODEC_ID_HEVC, 1, 0);
201  if (ret < 0)
202  return ret;
203 
204  for (i = 0; i < ctx->pkt.nb_nals; i++) {
205  H2645NAL *nal = &ctx->pkt.nals[i];
206  GetBitContext *gb = &nal->gb;
207 
208  if (nal->nuh_layer_id > 0)
209  continue;
210 
211  switch (nal->type) {
212  case HEVC_NAL_VPS:
213  ff_hevc_decode_nal_vps(gb, avctx, ps);
214  break;
215  case HEVC_NAL_SPS:
216  ff_hevc_decode_nal_sps(gb, avctx, ps, 1);
217  break;
218  case HEVC_NAL_PPS:
219  ff_hevc_decode_nal_pps(gb, avctx, ps);
220  break;
221  case HEVC_NAL_SEI_PREFIX:
222  case HEVC_NAL_SEI_SUFFIX:
223  ff_hevc_decode_nal_sei(gb, avctx, sei, ps, nal->type);
224  break;
225  case HEVC_NAL_TRAIL_N:
226  case HEVC_NAL_TRAIL_R:
227  case HEVC_NAL_TSA_N:
228  case HEVC_NAL_TSA_R:
229  case HEVC_NAL_STSA_N:
230  case HEVC_NAL_STSA_R:
231  case HEVC_NAL_BLA_W_LP:
232  case HEVC_NAL_BLA_W_RADL:
233  case HEVC_NAL_BLA_N_LP:
234  case HEVC_NAL_IDR_W_RADL:
235  case HEVC_NAL_IDR_N_LP:
236  case HEVC_NAL_CRA_NUT:
237  case HEVC_NAL_RADL_N:
238  case HEVC_NAL_RADL_R:
239  case HEVC_NAL_RASL_N:
240  case HEVC_NAL_RASL_R:
241  if (ctx->sei.picture_timing.picture_struct == HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING) {
242  s->repeat_pict = 1;
243  } else if (ctx->sei.picture_timing.picture_struct == HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING) {
244  s->repeat_pict = 2;
245  }
246  ret = hevc_parse_slice_header(s, nal, avctx);
247  if (ret)
248  return ret;
249  break;
250  }
251  }
252  /* didn't find a picture! */
253  av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
254  return -1;
255 }
256 
257 /**
258  * Find the end of the current frame in the bitstream.
259  * @return the position of the first byte of the next frame, or END_NOT_FOUND
260  */
261 static int hevc_find_frame_end(AVCodecParserContext *s, const uint8_t *buf,
262  int buf_size)
263 {
264  HEVCParserContext *ctx = s->priv_data;
265  ParseContext *pc = &ctx->pc;
266  int i;
267 
268  for (i = 0; i < buf_size; i++) {
269  int nut;
270 
271  pc->state64 = (pc->state64 << 8) | buf[i];
272 
273  if (((pc->state64 >> 3 * 8) & 0xFFFFFF) != START_CODE)
274  continue;
275 
276  nut = (pc->state64 >> 2 * 8 + 1) & 0x3F;
277  // Beginning of access unit
278  if ((nut >= HEVC_NAL_VPS && nut <= HEVC_NAL_EOB_NUT) || nut == HEVC_NAL_SEI_PREFIX ||
279  (nut >= 41 && nut <= 44) || (nut >= 48 && nut <= 55)) {
280  if (pc->frame_start_found) {
281  pc->frame_start_found = 0;
282  if (!((pc->state64 >> 6 * 8) & 0xFF))
283  return i - 6;
284  return i - 5;
285  }
286  } else if (nut <= HEVC_NAL_RASL_R ||
287  (nut >= HEVC_NAL_BLA_W_LP && nut <= HEVC_NAL_CRA_NUT)) {
288  int first_slice_segment_in_pic_flag = buf[i] >> 7;
289  if (first_slice_segment_in_pic_flag) {
290  if (!pc->frame_start_found) {
291  pc->frame_start_found = 1;
292  } else { // First slice of next frame found
293  pc->frame_start_found = 0;
294  if (!((pc->state64 >> 6 * 8) & 0xFF))
295  return i - 6;
296  return i - 5;
297  }
298  }
299  }
300  }
301 
302  return END_NOT_FOUND;
303 }
304 
306  const uint8_t **poutbuf, int *poutbuf_size,
307  const uint8_t *buf, int buf_size)
308 {
309  int next;
310  HEVCParserContext *ctx = s->priv_data;
311  ParseContext *pc = &ctx->pc;
312  int is_dummy_buf = !buf_size;
313  const uint8_t *dummy_buf = buf;
314 
315  if (avctx->extradata && !ctx->parsed_extradata) {
316  ff_hevc_decode_extradata(avctx->extradata, avctx->extradata_size, &ctx->ps, &ctx->sei,
317  &ctx->is_avc, &ctx->nal_length_size, avctx->err_recognition,
318  1, avctx);
319  ctx->parsed_extradata = 1;
320  }
321 
322  if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
323  next = buf_size;
324  } else {
325  next = hevc_find_frame_end(s, buf, buf_size);
326  if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
327  *poutbuf = NULL;
328  *poutbuf_size = 0;
329  return buf_size;
330  }
331  }
332 
333  is_dummy_buf &= (dummy_buf == buf);
334 
335  if (!is_dummy_buf)
336  parse_nal_units(s, buf, buf_size, avctx);
337 
338  *poutbuf = buf;
339  *poutbuf_size = buf_size;
340  return next;
341 }
342 
344 {
345  HEVCParserContext *ctx = s->priv_data;
346 
347  ff_hevc_ps_uninit(&ctx->ps);
349  ff_hevc_reset_sei(&ctx->sei);
350 
351  av_freep(&ctx->pc.buffer);
352 }
353 
356  .priv_data_size = sizeof(HEVCParserContext),
357  .parser_parse = hevc_parse,
358  .parser_close = hevc_parser_close,
359 };
HEVCSPS::vui
VUI vui
Definition: hevc_ps.h:218
HEVC_NAL_RADL_N
@ HEVC_NAL_RADL_N
Definition: hevc.h:35
HEVCParserContext::sei
HEVCSEI sei
Definition: hevc_parser.c:44
h2645_parse.h
VUI::vui_time_scale
uint32_t vui_time_scale
Definition: hevc_ps.h:107
HEVCSliceType
HEVCSliceType
Definition: hevc.h:95
HEVCWindow::bottom_offset
unsigned int bottom_offset
Definition: hevc_ps.h:91
HEVCParamSets::pps_list
const HEVCPPS * pps_list[HEVC_MAX_PPS_COUNT]
RefStruct references.
Definition: hevc_ps.h:443
hevc_parser_close
static void hevc_parser_close(AVCodecParserContext *s)
Definition: hevc_parser.c:343
AV_PICTURE_STRUCTURE_UNKNOWN
@ AV_PICTURE_STRUCTURE_UNKNOWN
unknown
Definition: avcodec.h:2701
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1420
HEVC_NAL_STSA_N
@ HEVC_NAL_STSA_N
Definition: hevc.h:33
HEVCParserContext::pc
ParseContext pc
Definition: hevc_parser.c:40
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: hevc_parser.c:184
HEVCParserContext::pocTid0
int pocTid0
Definition: hevc_parser.c:51
H2645NAL::nuh_layer_id
int nuh_layer_id
Definition: h2645_parse.h:67
HEVCPPS::output_flag_present_flag
uint8_t output_flag_present_flag
Definition: hevc_ps.h:328
HEVCVPS::vps_num_units_in_tick
uint32_t vps_num_units_in_tick
Definition: hevc_ps.h:169
HEVC_NAL_TSA_N
@ HEVC_NAL_TSA_N
Definition: hevc.h:31
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
ff_h2645_packet_uninit
void ff_h2645_packet_uninit(H2645Packet *pkt)
Free all the allocated memory in the packet.
Definition: h2645_parse.c:598
HEVC_NAL_RASL_N
@ HEVC_NAL_RASL_N
Definition: hevc.h:37
HEVC_NAL_STSA_R
@ HEVC_NAL_STSA_R
Definition: hevc.h:34
HEVC_NAL_BLA_W_RADL
@ HEVC_NAL_BLA_W_RADL
Definition: hevc.h:46
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: hevc_parser.c:261
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: hevc_parser.c:305
HEVC_MAX_PPS_COUNT
@ HEVC_MAX_PPS_COUNT
Definition: hevc.h:114
H2645NAL::temporal_id
int temporal_id
HEVC only, nuh_temporal_id_plus_1 - 1.
Definition: h2645_parse.h:62
HEVCSPS::output_window
HEVCWindow output_window
Definition: hevc_ps.h:193
HEVCSPS::separate_colour_plane_flag
uint8_t separate_colour_plane_flag
Definition: hevc_ps.h:191
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
HEVCVPS::vps_time_scale
uint32_t vps_time_scale
Definition: hevc_ps.h:170
HEVCParserContext::parsed_extradata
int parsed_extradata
Definition: hevc_parser.c:48
HEVCWindow::left_offset
unsigned int left_offset
Definition: hevc_ps.h:88
GetBitContext
Definition: get_bits.h:108
HEVCParserContext::is_avc
int is_avc
Definition: hevc_parser.c:46
HEVCSPS::log2_max_poc_lsb
unsigned int log2_max_poc_lsb
Definition: hevc_ps.h:205
HEVCParamSets::sps_list
const HEVCSPS * sps_list[HEVC_MAX_SPS_COUNT]
RefStruct references.
Definition: hevc_ps.h:442
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
ff_hevc_decode_nal_sei
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s, const HEVCParamSets *ps, enum HEVCNALUnitType type)
Definition: hevc_sei.c:227
AVRational::num
int num
Numerator.
Definition: rational.h:59
hevc_parse.h
START_CODE
#define START_CODE
start_code_prefix_one_3bytes
Definition: hevc_parser.c:34
HEVCPPS::num_extra_slice_header_bits
int num_extra_slice_header_bits
Definition: hevc_ps.h:353
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
HEVC_NAL_BLA_N_LP
@ HEVC_NAL_BLA_N_LP
Definition: hevc.h:47
HEVCParserContext::pkt
H2645Packet pkt
Definition: hevc_parser.c:42
HEVC_NAL_RADL_R
@ HEVC_NAL_RADL_R
Definition: hevc.h:36
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:524
s
#define s(width, name)
Definition: cbs_vp9.c:198
HEVCSPS::height
int height
Definition: hevc_ps.h:284
HEVCSEI
Definition: hevc_sei.h:81
ctx
AVFormatContext * ctx
Definition: movenc.c:49
HEVCWindow::top_offset
unsigned int top_offset
Definition: hevc_ps.h:90
HEVC_SLICE_I
@ HEVC_SLICE_I
Definition: hevc.h:98
PTLCommon::profile_idc
uint8_t profile_idc
Definition: hevc_ps.h:126
hevc_parse_slice_header
static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal, AVCodecContext *avctx)
Definition: hevc_parser.c:54
H2645NAL::type
int type
NAL unit type.
Definition: h2645_parse.h:52
HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
@ HEVC_SEI_PIC_STRUCT_FRAME_TRIPLING
Definition: hevc_sei.h:36
PTL::general_ptl
PTLCommon general_ptl
Definition: hevc_ps.h:147
HEVC_MAX_SPS_COUNT
@ HEVC_MAX_SPS_COUNT
Definition: hevc.h:112
HEVC_NAL_IDR_N_LP
@ HEVC_NAL_IDR_N_LP
Definition: hevc.h:49
HEVC_SLICE_B
@ HEVC_SLICE_B
Definition: hevc.h:96
NULL
#define NULL
Definition: coverity.c:32
ff_hevc_ps_uninit
void ff_hevc_ps_uninit(HEVCParamSets *ps)
Definition: hevc_ps.c:2031
HEVC_NAL_PPS
@ HEVC_NAL_PPS
Definition: hevc.h:63
VUI::vui_timing_info_present_flag
int vui_timing_info_present_flag
Definition: hevc_ps.h:105
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
ParseContext::frame_start_found
int frame_start_found
Definition: parser.h:34
HEVCPPS::dependent_slice_segments_enabled_flag
uint8_t dependent_slice_segments_enabled_flag
Definition: hevc_ps.h:331
HEVC_NAL_SEI_SUFFIX
@ HEVC_NAL_SEI_SUFFIX
Definition: hevc.h:69
HEVCParamSets::vps
const HEVCVPS * vps
Definition: hevc_ps.h:446
HEVC_NAL_CRA_NUT
@ HEVC_NAL_CRA_NUT
Definition: hevc.h:50
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: hevc_parse.c:80
sei
static int FUNC() sei(CodedBitstreamContext *ctx, RWContext *rw, H264RawSEI *current)
Definition: cbs_h264_syntax_template.c:824
AVCodecContext::level
int level
Encoding level descriptor.
Definition: avcodec.h:1783
HEVC_NAL_RASL_R
@ HEVC_NAL_RASL_R
Definition: hevc.h:38
HEVCWindow
Definition: hevc_ps.h:87
AVCodecParser::codec_ids
int codec_ids[7]
Definition: avcodec.h:2867
ff_hevc_decode_nal_sps
int ff_hevc_decode_nal_sps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps, int apply_defdispwin)
Definition: hevc_ps.c:1302
HEVC_NAL_BLA_W_LP
@ HEVC_NAL_BLA_W_LP
Definition: hevc.h:45
HEVCParserContext::nal_length_size
int nal_length_size
Definition: hevc_parser.c:47
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: hevc_ps.c:2047
H2645NAL::gb
GetBitContext gb
Definition: h2645_parse.h:47
H2645NAL
Definition: h2645_parse.h:34
ff_hevc_decode_nal_vps
int ff_hevc_decode_nal_vps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
Definition: hevc_ps.c:454
VUI::vui_num_units_in_tick
uint32_t vui_num_units_in_tick
Definition: hevc_ps.h:106
HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
@ HEVC_SEI_PIC_STRUCT_FRAME_DOUBLING
Definition: hevc_sei.h:35
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:464
skip_bits1
static void skip_bits1(GetBitContext *s)
Definition: get_bits.h:413
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
HEVC_NAL_TRAIL_R
@ HEVC_NAL_TRAIL_R
Definition: hevc.h:30
hevc_ps.h
PARSER_FLAG_COMPLETE_FRAMES
#define PARSER_FLAG_COMPLETE_FRAMES
Definition: avcodec.h:2741
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:523
HEVCParamSets::sps
const HEVCSPS * sps
Definition: hevc_ps.h:447
HEVCParserContext::ps
HEVCParamSets ps
Definition: hevc_parser.c:43
common.h
AV_CODEC_ID_HEVC
@ AV_CODEC_ID_HEVC
Definition: codec_id.h:226
HEVC_SLICE_P
@ HEVC_SLICE_P
Definition: hevc.h:97
HEVCSPS::width
int width
Definition: hevc_ps.h:283
parser.h
HEVC_NAL_TSA_R
@ HEVC_NAL_TSA_R
Definition: hevc.h:32
HEVCParserContext::poc
int poc
Definition: hevc_parser.c:50
hevc.h
AVCodecParserContext
Definition: avcodec.h:2707
HEVC_NAL_VPS
@ HEVC_NAL_VPS
Definition: hevc.h:61
HEVC_NAL_IDR_W_RADL
@ HEVC_NAL_IDR_W_RADL
Definition: hevc.h:48
ret
ret
Definition: filter_design.txt:187
HEVCParserContext
Definition: hevc_parser.c:39
ff_hevc_parser
const AVCodecParser ff_hevc_parser
Definition: hevc_parser.c:354
HEVC_NAL_TRAIL_N
@ HEVC_NAL_TRAIL_N
Definition: hevc.h:29
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
AV_PICTURE_TYPE_B
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:281
IS_IDR_NAL
#define IS_IDR_NAL(nal)
Definition: hevc_parser.c:37
AVRational::den
int den
Denominator.
Definition: rational.h:60
AVCodecContext::profile
int profile
profile
Definition: avcodec.h:1639
ParseContext::state64
uint64_t state64
contains the last 8 bytes in MSB order
Definition: parser.h:37
HEVCSPS::ctb_height
int ctb_height
Definition: hevc_ps.h:286
PTLCommon::level_idc
uint8_t level_idc
Definition: hevc_ps.h:143
HEVCParamSets::pps
const HEVCPPS * pps
Definition: hevc_ps.h:448
HEVCWindow::right_offset
unsigned int right_offset
Definition: hevc_ps.h:89
HEVCVPS::vps_timing_info_present_flag
uint8_t vps_timing_info_present_flag
Definition: hevc_ps.h:168
IS_IRAP_NAL
#define IS_IRAP_NAL(nal)
Definition: hevc_parser.c:36
AV_PICTURE_TYPE_P
@ AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:280
HEVC_NAL_SPS
@ HEVC_NAL_SPS
Definition: hevc.h:62
HEVCSPS::ctb_width
int ctb_width
Definition: hevc_ps.h:285
mem.h
get_bitsz
static av_always_inline int get_bitsz(GetBitContext *s, int n)
Read 0-25 bits.
Definition: get_bits.h:351
HEVCPPS::sps_id
unsigned int sps_id
seq_parameter_set_id
Definition: hevc_ps.h:307
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
ff_hevc_reset_sei
static void ff_hevc_reset_sei(HEVCSEI *sei)
Reset SEI values that are stored on the Context.
Definition: hevc_sei.h:106
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
AVCodecParser
Definition: avcodec.h:2866
HEVCSPS::vps_id
unsigned vps_id
Definition: hevc_ps.h:189
HEVCParamSets::vps_list
const HEVCVPS * vps_list[HEVC_MAX_VPS_COUNT]
RefStruct references.
Definition: hevc_ps.h:441
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
ff_hevc_decode_nal_pps
int ff_hevc_decode_nal_pps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
Definition: hevc_ps.c:1761
HEVC_NAL_EOB_NUT
@ HEVC_NAL_EOB_NUT
Definition: hevc.h:66
HEVC_NAL_SEI_PREFIX
@ HEVC_NAL_SEI_PREFIX
Definition: hevc.h:68
H2645Packet
Definition: h2645_parse.h:82
hevc_sei.h
HEVCSPS::pix_fmt
enum AVPixelFormat pix_fmt
Definition: hevc_ps.h:203
av_ceil_log2_c
static av_always_inline av_const int av_ceil_log2_c(int x)
Compute ceil(log2(x)).
Definition: common.h:421
HEVCParamSets
Definition: hevc_ps.h:440
HEVCSPS::ptl
PTL ptl
Definition: hevc_ps.h:219