Lines Matching defs:AVCodecParserContext
3812 typedef struct AVCodecParserContext { struct
3813 void *priv_data;
3814 struct AVCodecParser *parser;
3815 int64_t frame_offset; /* offset of the current frame */
3816 int64_t cur_offset; /* current offset
3818 int64_t next_frame_offset; /* offset of the next frame */
3820 int pict_type; /* XXX: Put it back in AVCodecContext. */
3830 int repeat_pict; /* XXX: Put it back in AVCodecContext. */
3831 int64_t pts; /* pts of the current frame */
3832 int64_t dts; /* dts of the current frame */
3835 int64_t last_pts;
3836 int64_t last_dts;
3837 int fetch_timestamp;
3840 int cur_frame_start_index;
3841 int64_t cur_frame_offset[AV_PARSER_PTS_NB];
3842 int64_t cur_frame_pts[AV_PARSER_PTS_NB];
3843 int64_t cur_frame_dts[AV_PARSER_PTS_NB];
3845 int flags;
3852 int64_t offset; ///< byte offset from starting packet start
3853 int64_t cur_frame_end[AV_PARSER_PTS_NB];
3861 int key_frame;
3880 int64_t convergence_duration;
3892 int dts_sync_point;
3907 int dts_ref_dts_delta;
3921 int pts_dts_delta;
3928 int64_t cur_frame_pos[AV_PARSER_PTS_NB];
3933 int64_t pos;
3958 } AVCodecParserContext; argument