Lines Matching defs:AVCodecParserContext
3377 typedef struct AVCodecParserContext { struct
3378 void *priv_data;
3379 struct AVCodecParser *parser;
3380 int64_t frame_offset; /* offset of the current frame */
3381 int64_t cur_offset; /* current offset
3383 int64_t next_frame_offset; /* offset of the next frame */
3385 int pict_type; /* XXX: Put it back in AVCodecContext. */
3395 int repeat_pict; /* XXX: Put it back in AVCodecContext. */
3396 int64_t pts; /* pts of the current frame */
3397 int64_t dts; /* dts of the current frame */
3400 int64_t last_pts;
3401 int64_t last_dts;
3402 int fetch_timestamp;
3405 int cur_frame_start_index;
3406 int64_t cur_frame_offset[AV_PARSER_PTS_NB];
3407 int64_t cur_frame_pts[AV_PARSER_PTS_NB];
3408 int64_t cur_frame_dts[AV_PARSER_PTS_NB];
3410 int flags;
3417 int64_t offset; ///< byte offset from starting packet start
3418 int64_t cur_frame_end[AV_PARSER_PTS_NB];
3426 int key_frame;
3433 int64_t convergence_duration;
3446 int dts_sync_point;
3461 int dts_ref_dts_delta;
3475 int pts_dts_delta;
3482 int64_t cur_frame_pos[AV_PARSER_PTS_NB];
3487 int64_t pos;
3492 int64_t last_pos;
3499 int duration;
3501 enum AVFieldOrder field_order;
3511 enum AVPictureStructure picture_structure;
3542 } AVCodecParserContext; argument