Go to the documentation of this file.
70 s->dts_sync_point = INT_MIN;
71 s->dts_ref_dts_delta = INT_MIN;
72 s->pts_dts_delta = INT_MIN;
95 if (
s->cur_offset + off >=
s->cur_frame_offset[
i] &&
96 (
s->frame_offset <
s->cur_frame_offset[
i] ||
97 (!
s->frame_offset && !
s->next_frame_offset)) &&
102 s->dts =
s->cur_frame_dts[
i];
103 s->pts =
s->cur_frame_pts[
i];
104 s->pos =
s->cur_frame_pos[
i];
105 s->offset =
s->next_frame_offset -
s->cur_frame_offset[
i];
108 s->cur_frame_offset[
i] = INT64_MAX;
109 if (
s->cur_offset + off < s->cur_frame_end[
i])
116 uint8_t **poutbuf,
int *poutbuf_size,
117 const uint8_t *buf,
int buf_size,
127 avctx->
codec_id ==
s->parser->codec_ids[1] ||
128 avctx->
codec_id ==
s->parser->codec_ids[2] ||
129 avctx->
codec_id ==
s->parser->codec_ids[3] ||
130 avctx->
codec_id ==
s->parser->codec_ids[4] ||
131 avctx->
codec_id ==
s->parser->codec_ids[5] ||
132 avctx->
codec_id ==
s->parser->codec_ids[6]);
135 s->next_frame_offset =
142 memset(dummy_buf, 0,
sizeof(dummy_buf));
144 }
else if (
s->cur_offset + buf_size !=
s->cur_frame_end[
s->cur_frame_start_index]) {
147 s->cur_frame_start_index =
i;
148 s->cur_frame_offset[
i] =
s->cur_offset;
149 s->cur_frame_end[
i] =
s->cur_offset + buf_size;
150 s->cur_frame_pts[
i] =
pts;
151 s->cur_frame_dts[
i] = dts;
152 s->cur_frame_pos[
i] =
pos;
155 if (
s->fetch_timestamp) {
156 s->fetch_timestamp = 0;
157 s->last_pts =
s->pts;
158 s->last_dts =
s->dts;
159 s->last_pos =
s->pos;
163 index =
s->parser->parser_parse(
s, avctx, (
const uint8_t **) poutbuf,
164 poutbuf_size, buf, buf_size);
166 #define FILL(name) if(s->name > 0 && avctx->name <= 0) avctx->name = s->name
178 s->frame_offset =
s->next_frame_offset;
181 s->next_frame_offset =
s->cur_offset +
index;
182 s->fetch_timestamp = 1;
196 if (
s->parser->parser_close)
197 s->parser->parser_close(
s);
204 const uint8_t **buf,
int *buf_size)
207 ff_dlog(
NULL,
"overread %d, state:%"PRIX32
" next:%d index:%d o_index:%d\n",
210 (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
217 if (next > *buf_size)
229 *buf_size + pc->
index +
240 pc->
index += *buf_size;
274 for (; next < 0; next++) {
281 ff_dlog(
NULL,
"overread %d, state:%"PRIX32
" next:%d index:%d o_index:%d\n",
284 (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
const AVCodecParser * av_parser_iterate(void **opaque)
Iterate over all registered codec parsers.
int overread_index
the index into ParseContext.buffer of the overread bytes
void ff_parse_close(AVCodecParserContext *s)
uint32_t state
contains the last few bytes in MSB order
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove, int fuzzy)
Fetch timestamps for a specific byte within the current access unit.
AVCodecParserContext * av_parser_init(int codec_id)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
int overread
the number of bytes which where irreversibly read from the next frame
#define av_assert0(cond)
assert() equivalent, that is always enabled.
@ AV_PICTURE_TYPE_I
Intra.
#define AV_NOPTS_VALUE
Undefined timestamp value.
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
#define i(width, name, range_min, range_max)
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
int(* parser_init)(AVCodecParserContext *s)
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
#define AV_INPUT_BUFFER_PADDING_SIZE
main external API structure.
#define PARSER_FLAG_FETCHED_OFFSET
Set if the parser has a valid file offset.
uint64_t state64
contains the last 8 bytes in MSB order
enum AVMediaType codec_type
int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int64_t pts, int64_t dts, int64_t pos)
Parse a packet.
void av_parser_close(AVCodecParserContext *s)