FFmpeg
Data Structures | Macros | Functions | Variables
hevc_parser.c File Reference
#include "libavutil/common.h"
#include "golomb.h"
#include "hevc.h"
#include "hevc_parse.h"
#include "hevc_ps.h"
#include "hevc_sei.h"
#include "h2645_parse.h"
#include "parser.h"

Go to the source code of this file.

Data Structures

struct  HEVCParserContext
 

Macros

#define START_CODE   0x000001
 start_code_prefix_one_3bytes More...
 
#define IS_IRAP_NAL(nal)   (nal->type >= 16 && nal->type <= 23)
 
#define IS_IDR_NAL(nal)   (nal->type == HEVC_NAL_IDR_W_RADL || nal->type == HEVC_NAL_IDR_N_LP)
 

Functions

static int hevc_parse_slice_header (AVCodecParserContext *s, H2645NAL *nal, AVCodecContext *avctx)
 
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. More...
 
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. More...
 
static int hevc_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
 
static void hevc_parser_close (AVCodecParserContext *s)
 

Variables

const AVCodecParser ff_hevc_parser
 

Macro Definition Documentation

◆ START_CODE

#define START_CODE   0x000001

start_code_prefix_one_3bytes

Definition at line 33 of file hevc_parser.c.

◆ IS_IRAP_NAL

#define IS_IRAP_NAL (   nal)    (nal->type >= 16 && nal->type <= 23)

Definition at line 35 of file hevc_parser.c.

◆ IS_IDR_NAL

#define IS_IDR_NAL (   nal)    (nal->type == HEVC_NAL_IDR_W_RADL || nal->type == HEVC_NAL_IDR_N_LP)

Definition at line 36 of file hevc_parser.c.

Function Documentation

◆ hevc_parse_slice_header()

static int hevc_parse_slice_header ( AVCodecParserContext s,
H2645NAL nal,
AVCodecContext avctx 
)
static

Definition at line 53 of file hevc_parser.c.

Referenced by parse_nal_units().

◆ parse_nal_units()

static int parse_nal_units ( AVCodecParserContext s,
const uint8_t *  buf,
int  buf_size,
AVCodecContext avctx 
)
static

Parse NAL units of found picture and decode some basic information.

Parameters
sparser context.
avctxcodec context.
bufbuffer with field/frame data.
buf_sizesize of the buffer.

Definition at line 183 of file hevc_parser.c.

Referenced by hevc_parse().

◆ hevc_find_frame_end()

static int hevc_find_frame_end ( AVCodecParserContext s,
const uint8_t *  buf,
int  buf_size 
)
static

Find the end of the current frame in the bitstream.

Returns
the position of the first byte of the next frame, or END_NOT_FOUND

Definition at line 260 of file hevc_parser.c.

Referenced by hevc_parse().

◆ hevc_parse()

static int hevc_parse ( AVCodecParserContext s,
AVCodecContext avctx,
const uint8_t **  poutbuf,
int poutbuf_size,
const uint8_t *  buf,
int  buf_size 
)
static

Definition at line 304 of file hevc_parser.c.

◆ hevc_parser_close()

static void hevc_parser_close ( AVCodecParserContext s)
static

Definition at line 342 of file hevc_parser.c.

Variable Documentation

◆ ff_hevc_parser

const AVCodecParser ff_hevc_parser
Initial value:
= {
.codec_ids = { AV_CODEC_ID_HEVC },
.priv_data_size = sizeof(HEVCParserContext),
.parser_parse = hevc_parse,
.parser_close = hevc_parser_close,
}

Definition at line 353 of file hevc_parser.c.

hevc_parser_close
static void hevc_parser_close(AVCodecParserContext *s)
Definition: hevc_parser.c:342
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:304
AV_CODEC_ID_HEVC
@ AV_CODEC_ID_HEVC
Definition: codec_id.h:226
HEVCParserContext
Definition: hevc_parser.c:38