FFmpeg
Data Fields
AVCodecParserContext Struct Reference

#include <avcodec.h>

Data Fields

void * priv_data
 
const struct AVCodecParserparser
 
int64_t frame_offset
 
int64_t cur_offset
 
int64_t next_frame_offset
 
int pict_type
 
int repeat_pict
 This field is used for proper frame duration computation in lavf. More...
 
int64_t pts
 
int64_t dts
 
int64_t last_pts
 
int64_t last_dts
 
int fetch_timestamp
 
int cur_frame_start_index
 
int64_t cur_frame_offset [AV_PARSER_PTS_NB]
 
int64_t cur_frame_pts [AV_PARSER_PTS_NB]
 
int64_t cur_frame_dts [AV_PARSER_PTS_NB]
 
int flags
 
int64_t offset
 byte offset from starting packet start More...
 
int64_t cur_frame_end [AV_PARSER_PTS_NB]
 
int key_frame
 Set by parser to 1 for key frames and 0 for non-key frames. More...
 
int dts_sync_point
 Synchronization point for start of timestamp generation. More...
 
int dts_ref_dts_delta
 Offset of the current timestamp against last timestamp sync point in units of AVCodecContext.time_base. More...
 
int pts_dts_delta
 Presentation delay of current frame in units of AVCodecContext.time_base. More...
 
int64_t cur_frame_pos [AV_PARSER_PTS_NB]
 Position of the packet in file. More...
 
int64_t pos
 Byte position of currently parsed frame in stream. More...
 
int64_t last_pos
 Previous frame byte position. More...
 
int duration
 Duration of the current frame. More...
 
enum AVFieldOrder field_order
 
enum AVPictureStructure picture_structure
 Indicate whether a picture is coded as a frame, top field or bottom field. More...
 
int output_picture_number
 Picture number incremented in presentation or output order. More...
 
int width
 Dimensions of the decoded video intended for presentation. More...
 
int height
 
int coded_width
 Dimensions of the coded video. More...
 
int coded_height
 
int format
 The format of the coded data, corresponds to enum AVPixelFormat for video and for enum AVSampleFormat for audio. More...
 

Detailed Description

Examples
decode_audio.c, and decode_video.c.

Definition at line 2694 of file avcodec.h.

Field Documentation

◆ priv_data

void* AVCodecParserContext::priv_data

Definition at line 2695 of file avcodec.h.

◆ parser

const struct AVCodecParser* AVCodecParserContext::parser

Definition at line 2696 of file avcodec.h.

◆ frame_offset

int64_t AVCodecParserContext::frame_offset

Definition at line 2697 of file avcodec.h.

Referenced by parse_packet().

◆ cur_offset

int64_t AVCodecParserContext::cur_offset

Definition at line 2698 of file avcodec.h.

◆ next_frame_offset

int64_t AVCodecParserContext::next_frame_offset

Definition at line 2700 of file avcodec.h.

Referenced by flac_read_timestamp().

◆ pict_type

int AVCodecParserContext::pict_type

◆ repeat_pict

int AVCodecParserContext::repeat_pict

This field is used for proper frame duration computation in lavf.

It signals, how much longer the frame duration of the current frame is compared to normal frame duration.

frame_duration = (1 + repeat_pict) * time_base

It is used by codecs like H.264 to display telecined material.

Definition at line 2712 of file avcodec.h.

Referenced by avformat_find_stream_info(), compute_frame_duration(), and ist_dts_update().

◆ pts

int64_t AVCodecParserContext::pts

◆ dts

int64_t AVCodecParserContext::dts

Definition at line 2714 of file avcodec.h.

Referenced by LLVMFuzzerTestOneInput(), and parse_packet().

◆ last_pts

int64_t AVCodecParserContext::last_pts

Definition at line 2717 of file avcodec.h.

◆ last_dts

int64_t AVCodecParserContext::last_dts

Definition at line 2718 of file avcodec.h.

◆ fetch_timestamp

int AVCodecParserContext::fetch_timestamp

Definition at line 2719 of file avcodec.h.

◆ cur_frame_start_index

int AVCodecParserContext::cur_frame_start_index

Definition at line 2722 of file avcodec.h.

◆ cur_frame_offset

int64_t AVCodecParserContext::cur_frame_offset[AV_PARSER_PTS_NB]

Definition at line 2723 of file avcodec.h.

◆ cur_frame_pts

int64_t AVCodecParserContext::cur_frame_pts[AV_PARSER_PTS_NB]

Definition at line 2724 of file avcodec.h.

◆ cur_frame_dts

int64_t AVCodecParserContext::cur_frame_dts[AV_PARSER_PTS_NB]

Definition at line 2725 of file avcodec.h.

◆ flags

int AVCodecParserContext::flags

◆ offset

int64_t AVCodecParserContext::offset

byte offset from starting packet start

Definition at line 2734 of file avcodec.h.

Referenced by compute_pkt_fields().

◆ cur_frame_end

int64_t AVCodecParserContext::cur_frame_end[AV_PARSER_PTS_NB]

Definition at line 2735 of file avcodec.h.

◆ key_frame

int AVCodecParserContext::key_frame

Set by parser to 1 for key frames and 0 for non-key frames.

It is initialized to -1, so if the parser doesn't set this flag, old-style fallback using AV_PICTURE_TYPE_I picture type as key frames will be used.

Definition at line 2743 of file avcodec.h.

Referenced by LLVMFuzzerTestOneInput(), and parse_packet().

◆ dts_sync_point

int AVCodecParserContext::dts_sync_point

Synchronization point for start of timestamp generation.

Set to >0 for sync point, 0 for no sync point and <0 for undefined (default).

For example, this corresponds to presence of H.264 buffering period SEI message.

Definition at line 2755 of file avcodec.h.

◆ dts_ref_dts_delta

int AVCodecParserContext::dts_ref_dts_delta

Offset of the current timestamp against last timestamp sync point in units of AVCodecContext.time_base.

Set to INT_MIN when dts_sync_point unused. Otherwise, it must contain a valid timestamp offset.

Note that the timestamp of sync point has usually a nonzero dts_ref_dts_delta, which refers to the previous sync point. Offset of the next frame after timestamp sync point will be usually 1.

For example, this corresponds to H.264 cpb_removal_delay.

Definition at line 2770 of file avcodec.h.

◆ pts_dts_delta

int AVCodecParserContext::pts_dts_delta

Presentation delay of current frame in units of AVCodecContext.time_base.

Set to INT_MIN when dts_sync_point unused. Otherwise, it must contain valid non-negative timestamp delta (presentation time of a frame must not lie in the past).

This delay represents the difference between decoding and presentation time of the frame.

For example, this corresponds to H.264 dpb_output_delay.

Definition at line 2784 of file avcodec.h.

◆ cur_frame_pos

int64_t AVCodecParserContext::cur_frame_pos[AV_PARSER_PTS_NB]

Position of the packet in file.

Analogous to cur_frame_pts/dts

Definition at line 2791 of file avcodec.h.

◆ pos

int64_t AVCodecParserContext::pos

Byte position of currently parsed frame in stream.

Definition at line 2796 of file avcodec.h.

Referenced by LLVMFuzzerTestOneInput(), and parse_packet().

◆ last_pos

int64_t AVCodecParserContext::last_pos

Previous frame byte position.

Definition at line 2801 of file avcodec.h.

◆ duration

int AVCodecParserContext::duration

Duration of the current frame.

For audio, this is in units of 1 / AVCodecContext.sample_rate. For all other types, this is in units of AVCodecContext.time_base.

Definition at line 2808 of file avcodec.h.

Referenced by get_best_header(), and parse_packet().

◆ field_order

enum AVFieldOrder AVCodecParserContext::field_order

Definition at line 2810 of file avcodec.h.

◆ picture_structure

enum AVPictureStructure AVCodecParserContext::picture_structure

Indicate whether a picture is coded as a frame, top field or bottom field.

For example, H.264 field_pic_flag equal to 0 corresponds to AV_PICTURE_STRUCTURE_FRAME. An H.264 picture with field_pic_flag equal to 1 and bottom_field_flag equal to 0 corresponds to AV_PICTURE_STRUCTURE_TOP_FIELD.

Definition at line 2820 of file avcodec.h.

◆ output_picture_number

int AVCodecParserContext::output_picture_number

Picture number incremented in presentation or output order.

This field may be reinitialized at the first picture of a new sequence.

For example, this corresponds to H.264 PicOrderCnt.

Definition at line 2828 of file avcodec.h.

◆ width

int AVCodecParserContext::width

Dimensions of the decoded video intended for presentation.

Definition at line 2833 of file avcodec.h.

◆ height

int AVCodecParserContext::height

Definition at line 2834 of file avcodec.h.

◆ coded_width

int AVCodecParserContext::coded_width

Dimensions of the coded video.

Definition at line 2839 of file avcodec.h.

◆ coded_height

int AVCodecParserContext::coded_height

Definition at line 2840 of file avcodec.h.

◆ format

int AVCodecParserContext::format

The format of the coded data, corresponds to enum AVPixelFormat for video and for enum AVSampleFormat for audio.

Note that a decoder can have considerable freedom in how exactly it decodes the data, so the format reported here might be different from the one returned by a decoder.

Definition at line 2850 of file avcodec.h.


The documentation for this struct was generated from the following file: