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 
25 #include "golomb.h"
26 #include "hevc.h"
27 #include "hevc_parse.h"
28 #include "hevc_ps.h"
29 #include "hevc_sei.h"
30 #include "h2645_parse.h"
31 #include "internal.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 
46 
47  int is_avc;
50 
51  int poc;
52  int pocTid0;
54 
56  AVCodecContext *avctx)
57 {
58  HEVCParserContext *ctx = s->priv_data;
59  HEVCParamSets *ps = &ctx->ps;
60  HEVCSEI *sei = &ctx->sei;
61  SliceHeader *sh = &ctx->sh;
62  GetBitContext *gb = &nal->gb;
63  const HEVCWindow *ow;
64  int i, num = 0, den = 0;
65 
67  s->picture_structure = sei->picture_timing.picture_struct;
68  s->field_order = sei->picture_timing.picture_struct;
69 
70  if (IS_IRAP_NAL(nal)) {
71  s->key_frame = 1;
73  }
74 
75  sh->pps_id = get_ue_golomb(gb);
76  if (sh->pps_id >= HEVC_MAX_PPS_COUNT || !ps->pps_list[sh->pps_id]) {
77  av_log(avctx, AV_LOG_ERROR, "PPS id out of range: %d\n", sh->pps_id);
78  return AVERROR_INVALIDDATA;
79  }
80  ps->pps = (HEVCPPS*)ps->pps_list[sh->pps_id]->data;
81 
82  if (ps->pps->sps_id >= HEVC_MAX_SPS_COUNT || !ps->sps_list[ps->pps->sps_id]) {
83  av_log(avctx, AV_LOG_ERROR, "SPS id out of range: %d\n", ps->pps->sps_id);
84  return AVERROR_INVALIDDATA;
85  }
86  if (ps->sps != (HEVCSPS*)ps->sps_list[ps->pps->sps_id]->data) {
87  ps->sps = (HEVCSPS*)ps->sps_list[ps->pps->sps_id]->data;
88  ps->vps = (HEVCVPS*)ps->vps_list[ps->sps->vps_id]->data;
89  }
90  ow = &ps->sps->output_window;
91 
92  s->coded_width = ps->sps->width;
93  s->coded_height = ps->sps->height;
94  s->width = ps->sps->width - ow->left_offset - ow->right_offset;
95  s->height = ps->sps->height - ow->top_offset - ow->bottom_offset;
96  s->format = ps->sps->pix_fmt;
97  avctx->profile = ps->sps->ptl.general_ptl.profile_idc;
98  avctx->level = ps->sps->ptl.general_ptl.level_idc;
99 
101  num = ps->vps->vps_num_units_in_tick;
102  den = ps->vps->vps_time_scale;
103  } else if (ps->sps->vui.vui_timing_info_present_flag) {
104  num = ps->sps->vui.vui_num_units_in_tick;
105  den = ps->sps->vui.vui_time_scale;
106  }
107 
108  if (num != 0 && den != 0)
109  av_reduce(&avctx->framerate.den, &avctx->framerate.num,
110  num, den, 1 << 30);
111 
112  if (!sh->first_slice_in_pic_flag) {
113  int slice_address_length;
114 
117  else
119 
120  slice_address_length = av_ceil_log2_c(ps->sps->ctb_width *
121  ps->sps->ctb_height);
122  sh->slice_segment_addr = get_bitsz(gb, slice_address_length);
123  if (sh->slice_segment_addr >= ps->sps->ctb_width * ps->sps->ctb_height) {
124  av_log(avctx, AV_LOG_ERROR, "Invalid slice segment address: %u.\n",
125  sh->slice_segment_addr);
126  return AVERROR_INVALIDDATA;
127  }
128  } else
130 
132  return 0; /* break; */
133 
134  for (i = 0; i < ps->pps->num_extra_slice_header_bits; i++)
135  skip_bits(gb, 1); // slice_reserved_undetermined_flag[]
136 
137  sh->slice_type = get_ue_golomb(gb);
138  if (!(sh->slice_type == HEVC_SLICE_I || sh->slice_type == HEVC_SLICE_P ||
139  sh->slice_type == HEVC_SLICE_B)) {
140  av_log(avctx, AV_LOG_ERROR, "Unknown slice type: %d.\n",
141  sh->slice_type);
142  return AVERROR_INVALIDDATA;
143  }
144  s->pict_type = sh->slice_type == HEVC_SLICE_B ? AV_PICTURE_TYPE_B :
147 
148  if (ps->pps->output_flag_present_flag)
149  sh->pic_output_flag = get_bits1(gb);
150 
152  sh->colour_plane_id = get_bits(gb, 2);
153 
154  if (!IS_IDR_NAL(nal)) {
156  s->output_picture_number = ctx->poc = ff_hevc_compute_poc(ps->sps, ctx->pocTid0, sh->pic_order_cnt_lsb, nal->type);
157  } else
158  s->output_picture_number = ctx->poc = 0;
159 
160  if (nal->temporal_id == 0 &&
161  nal->type != HEVC_NAL_TRAIL_N &&
162  nal->type != HEVC_NAL_TSA_N &&
163  nal->type != HEVC_NAL_STSA_N &&
164  nal->type != HEVC_NAL_RADL_N &&
165  nal->type != HEVC_NAL_RASL_N &&
166  nal->type != HEVC_NAL_RADL_R &&
167  nal->type != HEVC_NAL_RASL_R)
168  ctx->pocTid0 = ctx->poc;
169 
170  return 1; /* no need to evaluate the rest */
171 }
172 
173 /**
174  * Parse NAL units of found picture and decode some basic information.
175  *
176  * @param s parser context.
177  * @param avctx codec context.
178  * @param buf buffer with field/frame data.
179  * @param buf_size size of the buffer.
180  */
182  int buf_size, AVCodecContext *avctx)
183 {
184  HEVCParserContext *ctx = s->priv_data;
185  HEVCParamSets *ps = &ctx->ps;
186  HEVCSEI *sei = &ctx->sei;
187  int ret, i;
188 
189  /* set some sane default values */
190  s->pict_type = AV_PICTURE_TYPE_I;
191  s->key_frame = 0;
192  s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
193 
195 
196  ret = ff_h2645_packet_split(&ctx->pkt, buf, buf_size, avctx, ctx->is_avc,
197  ctx->nal_length_size, AV_CODEC_ID_HEVC, 1, 0);
198  if (ret < 0)
199  return ret;
200 
201  for (i = 0; i < ctx->pkt.nb_nals; i++) {
202  H2645NAL *nal = &ctx->pkt.nals[i];
203  GetBitContext *gb = &nal->gb;
204 
205  switch (nal->type) {
206  case HEVC_NAL_VPS:
207  ff_hevc_decode_nal_vps(gb, avctx, ps);
208  break;
209  case HEVC_NAL_SPS:
210  ff_hevc_decode_nal_sps(gb, avctx, ps, 1);
211  break;
212  case HEVC_NAL_PPS:
213  ff_hevc_decode_nal_pps(gb, avctx, ps);
214  break;
215  case HEVC_NAL_SEI_PREFIX:
216  case HEVC_NAL_SEI_SUFFIX:
217  ff_hevc_decode_nal_sei(gb, avctx, sei, ps, nal->type);
218  break;
219  case HEVC_NAL_TRAIL_N:
220  case HEVC_NAL_TRAIL_R:
221  case HEVC_NAL_TSA_N:
222  case HEVC_NAL_TSA_R:
223  case HEVC_NAL_STSA_N:
224  case HEVC_NAL_STSA_R:
225  case HEVC_NAL_BLA_W_LP:
226  case HEVC_NAL_BLA_W_RADL:
227  case HEVC_NAL_BLA_N_LP:
228  case HEVC_NAL_IDR_W_RADL:
229  case HEVC_NAL_IDR_N_LP:
230  case HEVC_NAL_CRA_NUT:
231  case HEVC_NAL_RADL_N:
232  case HEVC_NAL_RADL_R:
233  case HEVC_NAL_RASL_N:
234  case HEVC_NAL_RASL_R:
235  ret = hevc_parse_slice_header(s, nal, avctx);
236  if (ret)
237  return ret;
238  break;
239  }
240  }
241  /* didn't find a picture! */
242  av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
243  return -1;
244 }
245 
246 /**
247  * Find the end of the current frame in the bitstream.
248  * @return the position of the first byte of the next frame, or END_NOT_FOUND
249  */
251  int buf_size)
252 {
253  HEVCParserContext *ctx = s->priv_data;
254  ParseContext *pc = &ctx->pc;
255  int i;
256 
257  for (i = 0; i < buf_size; i++) {
258  int nut;
259 
260  pc->state64 = (pc->state64 << 8) | buf[i];
261 
262  if (((pc->state64 >> 3 * 8) & 0xFFFFFF) != START_CODE)
263  continue;
264 
265  nut = (pc->state64 >> 2 * 8 + 1) & 0x3F;
266  // Beginning of access unit
267  if ((nut >= HEVC_NAL_VPS && nut <= HEVC_NAL_EOB_NUT) || nut == HEVC_NAL_SEI_PREFIX ||
268  (nut >= 41 && nut <= 44) || (nut >= 48 && nut <= 55)) {
269  if (pc->frame_start_found) {
270  pc->frame_start_found = 0;
271  return i - 5;
272  }
273  } else if (nut <= HEVC_NAL_RASL_R ||
274  (nut >= HEVC_NAL_BLA_W_LP && nut <= HEVC_NAL_CRA_NUT)) {
275  int first_slice_segment_in_pic_flag = buf[i] >> 7;
276  if (first_slice_segment_in_pic_flag) {
277  if (!pc->frame_start_found) {
278  pc->frame_start_found = 1;
279  } else { // First slice of next frame found
280  pc->frame_start_found = 0;
281  return i - 5;
282  }
283  }
284  }
285  }
286 
287  return END_NOT_FOUND;
288 }
289 
291  const uint8_t **poutbuf, int *poutbuf_size,
292  const uint8_t *buf, int buf_size)
293 {
294  int next;
295  HEVCParserContext *ctx = s->priv_data;
296  ParseContext *pc = &ctx->pc;
297  int is_dummy_buf = !buf_size;
298  const uint8_t *dummy_buf = buf;
299 
300  if (avctx->extradata && !ctx->parsed_extradata) {
301  ff_hevc_decode_extradata(avctx->extradata, avctx->extradata_size, &ctx->ps, &ctx->sei,
302  &ctx->is_avc, &ctx->nal_length_size, avctx->err_recognition,
303  1, avctx);
304  ctx->parsed_extradata = 1;
305  }
306 
307  if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
308  next = buf_size;
309  } else {
310  next = hevc_find_frame_end(s, buf, buf_size);
311  if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
312  *poutbuf = NULL;
313  *poutbuf_size = 0;
314  return buf_size;
315  }
316  }
317 
318  is_dummy_buf &= (dummy_buf == buf);
319 
320  if (!is_dummy_buf)
321  parse_nal_units(s, buf, buf_size, avctx);
322 
323  *poutbuf = buf;
324  *poutbuf_size = buf_size;
325  return next;
326 }
327 
328 // Split after the parameter sets at the beginning of the stream if they exist.
329 static int hevc_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
330 {
331  const uint8_t *ptr = buf, *end = buf + buf_size;
332  uint32_t state = -1;
333  int has_vps = 0;
334  int has_sps = 0;
335  int has_pps = 0;
336  int nut;
337 
338  while (ptr < end) {
339  ptr = avpriv_find_start_code(ptr, end, &state);
340  if ((state >> 8) != START_CODE)
341  break;
342  nut = (state >> 1) & 0x3F;
343  if (nut == HEVC_NAL_VPS)
344  has_vps = 1;
345  else if (nut == HEVC_NAL_SPS)
346  has_sps = 1;
347  else if (nut == HEVC_NAL_PPS)
348  has_pps = 1;
349  else if ((nut != HEVC_NAL_SEI_PREFIX || has_pps) &&
350  nut != HEVC_NAL_AUD) {
351  if (has_vps && has_sps) {
352  while (ptr - 4 > buf && ptr[-5] == 0)
353  ptr--;
354  return ptr - 4 - buf;
355  }
356  }
357  }
358  return 0;
359 }
360 
362 {
363  HEVCParserContext *ctx = s->priv_data;
364 
365  ff_hevc_ps_uninit(&ctx->ps);
367  ff_hevc_reset_sei(&ctx->sei);
368 
369  av_freep(&ctx->pc.buffer);
370 }
371 
374  .priv_data_size = sizeof(HEVCParserContext),
375  .parser_parse = hevc_parse,
376  .parser_close = hevc_parser_close,
377  .split = hevc_split,
378 };
HEVCSPS::vui
VUI vui
Definition: hevc_ps.h:250
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:159
HEVCWindow::bottom_offset
unsigned int bottom_offset
Definition: hevc_ps.h:129
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:89
hevc_parser_close
static void hevc_parser_close(AVCodecParserContext *s)
Definition: hevc_parser.c:361
AV_PICTURE_STRUCTURE_UNKNOWN
@ AV_PICTURE_STRUCTURE_UNKNOWN
Definition: avcodec.h:5102
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:2694
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:181
HEVCParserContext::pocTid0
int pocTid0
Definition: hevc_parser.c:52
end
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
HEVCPPS::output_flag_present_flag
uint8_t output_flag_present_flag
Definition: hevc_ps.h:343
HEVCVPS::vps_num_units_in_tick
uint32_t vps_num_units_in_tick
Definition: hevc_ps.h:208
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:55
internal.h
ff_h2645_packet_uninit
void ff_h2645_packet_uninit(H2645Packet *pkt)
Free all the allocated memory in the packet.
Definition: h2645_parse.c:517
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
avpriv_find_start_code
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
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:250
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:290
H2645NAL::temporal_id
int temporal_id
HEVC only, nuh_temporal_id_plus_1 - 1.
Definition: h2645_parse.h:57
HEVCSPS::output_window
HEVCWindow output_window
Definition: hevc_ps.h:230
HEVCSPS::separate_colour_plane_flag
uint8_t separate_colour_plane_flag
Definition: hevc_ps.h:228
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:467
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:3105
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:379
ParseContext
Definition: parser.h:28
HEVCVPS::vps_time_scale
uint32_t vps_time_scale
Definition: hevc_ps.h:209
HEVCParserContext::parsed_extradata
int parsed_extradata
Definition: hevc_parser.c:49
HEVCWindow::left_offset
unsigned int left_offset
Definition: hevc_ps.h:126
GetBitContext
Definition: get_bits.h:61
HEVCParserContext::is_avc
int is_avc
Definition: hevc_parser.c:47
HEVCSPS::log2_max_poc_lsb
unsigned int log2_max_poc_lsb
Definition: hevc_ps.h:239
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
SliceHeader::slice_segment_addr
unsigned int slice_segment_addr
address (in raster order) of the first block in the current slice
Definition: hevc_ps.h:52
hevc_parse.h
START_CODE
#define START_CODE
start_code_prefix_one_3bytes
Definition: hevc_parser.c:34
ff_hevc_decode_nal_sei
int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s, const HEVCParamSets *ps, int type)
Definition: hevc_sei.c:353
HEVCPPS::num_extra_slice_header_bits
int num_extra_slice_header_bits
Definition: hevc_ps.h:368
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
state
static struct @313 state
HEVC_NAL_BLA_N_LP
@ HEVC_NAL_BLA_N_LP
Definition: hevc.h:47
buf
void * buf
Definition: avisynth_c.h:766
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:1667
s
#define s(width, name)
Definition: cbs_vp9.c:257
HEVCSPS::height
int height
Definition: hevc_ps.h:300
HEVCSEI
Definition: hevc_sei.h:109
ctx
AVFormatContext * ctx
Definition: movenc.c:48
HEVCWindow::top_offset
unsigned int top_offset
Definition: hevc_ps.h:128
HEVC_SLICE_I
@ HEVC_SLICE_I
Definition: hevc.h:98
PTLCommon::profile_idc
uint8_t profile_idc
Definition: hevc_ps.h:178
hevc_parse_slice_header
static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal, AVCodecContext *avctx)
Definition: hevc_parser.c:55
H2645NAL::type
int type
NAL unit type.
Definition: h2645_parse.h:52
PTL::general_ptl
PTLCommon general_ptl
Definition: hevc_ps.h:188
if
if(ret)
Definition: filter_design.txt:179
HEVC_NAL_IDR_N_LP
@ HEVC_NAL_IDR_N_LP
Definition: hevc.h:49
SliceHeader::pic_output_flag
uint8_t pic_output_flag
Definition: hevc_ps.h:62
HEVC_SLICE_B
@ HEVC_SLICE_B
Definition: hevc.h:96
NULL
#define NULL
Definition: coverity.c:32
AVCodecParser::codec_ids
int codec_ids[5]
Definition: avcodec.h:5276
ff_hevc_ps_uninit
void ff_hevc_ps_uninit(HEVCParamSets *ps)
Definition: hevc_ps.c:1721
HEVC_NAL_PPS
@ HEVC_NAL_PPS
Definition: hevc.h:63
HEVC_MAX_SPS_COUNT
@ HEVC_MAX_SPS_COUNT
Definition: hevc.h:112
VUI::vui_timing_info_present_flag
int vui_timing_info_present_flag
Definition: hevc_ps.h:157
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:498
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:346
HEVC_NAL_SEI_SUFFIX
@ HEVC_NAL_SEI_SUFFIX
Definition: hevc.h:69
HEVCParamSets::vps
const HEVCVPS * vps
Definition: hevc_ps.h:405
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:78
sei
static int FUNC() sei(CodedBitstreamContext *ctx, RWContext *rw, H264RawSEI *current)
Definition: cbs_h264_syntax_template.c:924
AVCodecContext::level
int level
level
Definition: avcodec.h:3018
HEVC_NAL_RASL_R
@ HEVC_NAL_RASL_R
Definition: hevc.h:38
HEVCWindow
Definition: hevc_ps.h:125
SliceHeader::colour_plane_id
uint8_t colour_plane_id
RPS coded in the slice header itself is stored here.
Definition: hevc_ps.h:63
SliceHeader::dependent_slice_segment_flag
uint8_t dependent_slice_segment_flag
Definition: hevc_ps.h:61
SliceHeader::first_slice_in_pic_flag
uint8_t first_slice_in_pic_flag
Definition: hevc_ps.h:60
ff_hevc_decode_nal_sps
int ff_hevc_decode_nal_sps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps, int apply_defdispwin)
Definition: hevc_ps.c:1224
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:48
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:1737
H2645NAL::gb
GetBitContext gb
Definition: h2645_parse.h:47
H2645NAL
Definition: h2645_parse.h:32
ff_hevc_decode_nal_vps
int ff_hevc_decode_nal_vps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
Definition: hevc_ps.c:424
VUI::vui_num_units_in_tick
uint32_t vui_num_units_in_tick
Definition: hevc_ps.h:158
SliceHeader::no_output_of_prior_pics_flag
uint8_t no_output_of_prior_pics_flag
Definition: hevc_ps.h:75
split
static char * split(char *message, char delim)
Definition: af_channelmap.c:81
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:393
HEVCParamSets::pps_list
AVBufferRef * pps_list[HEVC_MAX_PPS_COUNT]
Definition: hevc_ps.h:402
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:234
SliceHeader
Definition: hevc_ps.h:48
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:5142
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1666
HEVCParamSets::sps
const HEVCSPS * sps
Definition: hevc_ps.h:406
HEVCParserContext::ps
HEVCParamSets ps
Definition: hevc_parser.c:43
common.h
AV_CODEC_ID_HEVC
@ AV_CODEC_ID_HEVC
Definition: avcodec.h:392
HEVC_SLICE_P
@ HEVC_SLICE_P
Definition: hevc.h:97
uint8_t
uint8_t
Definition: audio_convert.c:194
HEVCSPS::width
int width
Definition: hevc_ps.h:299
parser.h
HEVC_NAL_TSA_R
@ HEVC_NAL_TSA_R
Definition: hevc.h:32
HEVCParserContext::poc
int poc
Definition: hevc_parser.c:51
hevc.h
AVCodecParserContext
Definition: avcodec.h:5108
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
ff_hevc_reset_sei
void ff_hevc_reset_sei(HEVCSEI *s)
Reset SEI values that are stored on the Context.
Definition: hevc_sei.c:366
HEVCParserContext
Definition: hevc_parser.c:39
HEVC_NAL_TRAIL_N
@ HEVC_NAL_TRAIL_N
Definition: hevc.h:29
ff_hevc_parser
AVCodecParser ff_hevc_parser
Definition: hevc_parser.c:372
SliceHeader::slice_type
enum HEVCSliceType slice_type
Definition: hevc_ps.h:56
HEVC_NAL_AUD
@ HEVC_NAL_AUD
Definition: hevc.h:64
AVCodecContext
main external API structure.
Definition: avcodec.h:1565
AV_PICTURE_TYPE_B
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:276
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:2898
SliceHeader::pic_order_cnt_lsb
int pic_order_cnt_lsb
Definition: hevc_ps.h:58
hevc_split
static int hevc_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
Definition: hevc_parser.c:329
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:302
PTLCommon::level_idc
uint8_t level_idc
Definition: hevc_ps.h:180
HEVCParserContext::sh
SliceHeader sh
Definition: hevc_parser.c:45
HEVCParamSets::sps_list
AVBufferRef * sps_list[HEVC_MAX_SPS_COUNT]
Definition: hevc_ps.h:401
HEVCParamSets::pps
const HEVCPPS * pps
Definition: hevc_ps.h:407
HEVCWindow::right_offset
unsigned int right_offset
Definition: hevc_ps.h:127
HEVCVPS::vps_timing_info_present_flag
uint8_t vps_timing_info_present_flag
Definition: hevc_ps.h:207
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:275
HEVC_NAL_SPS
@ HEVC_NAL_SPS
Definition: hevc.h:62
HEVCSPS::ctb_width
int ctb_width
Definition: hevc_ps.h:301
get_bitsz
static av_always_inline int get_bitsz(GetBitContext *s, int n)
Read 0-25 bits.
Definition: get_bits.h:415
HEVCVPS
Definition: hevc_ps.h:195
HEVCSPS
Definition: hevc_ps.h:225
HEVCPPS
Definition: hevc_ps.h:321
HEVCPPS::sps_id
unsigned int sps_id
seq_parameter_set_id
Definition: hevc_ps.h:322
END_NOT_FOUND
#define END_NOT_FOUND
Definition: parser.h:40
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
AVCodecParser
Definition: avcodec.h:5275
SliceHeader::pps_id
unsigned int pps_id
address (in raster order) of the first block in the current slice segment
Definition: hevc_ps.h:49
HEVCSPS::vps_id
unsigned vps_id
Definition: hevc_ps.h:226
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
ff_hevc_decode_nal_pps
int ff_hevc_decode_nal_pps(GetBitContext *gb, AVCodecContext *avctx, HEVCParamSets *ps)
Definition: hevc_ps.c:1473
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:76
hevc_sei.h
HEVCSPS::pix_fmt
enum AVPixelFormat pix_fmt
Definition: hevc_ps.h:237
HEVCParamSets::vps_list
AVBufferRef * vps_list[HEVC_MAX_VPS_COUNT]
Definition: hevc_ps.h:400
HEVC_MAX_PPS_COUNT
@ HEVC_MAX_PPS_COUNT
Definition: hevc.h:114
av_ceil_log2_c
static av_always_inline av_const int av_ceil_log2_c(int x)
Compute ceil(log2(x)).
Definition: common.h:332
HEVCParamSets
Definition: hevc_ps.h:399
HEVCSPS::ptl
PTL ptl
Definition: hevc_ps.h:251