Lines Matching defs:AVCodecParserContext
2789 typedef struct AVCodecParserContext { struct
2790 void *priv_data;
2791 const struct AVCodecParser *parser;
2792 int64_t frame_offset; /* offset of the current frame */
2793 int64_t cur_offset; /* current offset
2795 int64_t next_frame_offset; /* offset of the next frame */
2797 int pict_type; /* XXX: Put it back in AVCodecContext. */
2807 int repeat_pict; /* XXX: Put it back in AVCodecContext. */
2808 int64_t pts; /* pts of the current frame */
2809 int64_t dts; /* dts of the current frame */
2812 int64_t last_pts;
2813 int64_t last_dts;
2814 int fetch_timestamp;
2817 int cur_frame_start_index;
2818 int64_t cur_frame_offset[AV_PARSER_PTS_NB];
2819 int64_t cur_frame_pts[AV_PARSER_PTS_NB];
2820 int64_t cur_frame_dts[AV_PARSER_PTS_NB];
2822 int flags;
2829 int64_t offset; ///< byte offset from starting packet start
2830 int64_t cur_frame_end[AV_PARSER_PTS_NB];
2838 int key_frame;
2850 int dts_sync_point;
2865 int dts_ref_dts_delta;
2879 int pts_dts_delta;
2886 int64_t cur_frame_pos[AV_PARSER_PTS_NB];
2891 int64_t pos;
2896 int64_t last_pos;
2903 int duration;
2905 enum AVFieldOrder field_order;
2915 enum AVPictureStructure picture_structure;
2946 } AVCodecParserContext; argument