Lines Matching defs:start
89 { "global_sidx", "Write a global sidx index at the start of the file", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_GLOBAL_SIDX}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
448 av_log(mov->fc, AV_LOG_WARNING, "Dropping invalid packet from start of the stream\n");
1004 const uint8_t *start, *next, *end = track->vos_data + track->vos_len;
1024 start = find_next_marker(track->vos_data, end);
1025 for (next = start; next < end; start = next) {
1028 next = find_next_marker(start + 4, end);
1029 size = next - start - 4;
1032 unescaped_size = vc1_unescape_buffer(start + 4, size, unescaped);
1034 if (AV_RB32(start) == VC1_CODE_SEQHDR) {
3338 int64_t *start, int64_t *end)
3349 get_pts_range(mov, &mov->tracks[track->src_track], start, end);
3350 *start = av_rescale(*start, track->timescale,
3359 *start = track->start_dts + track->start_cts;
3363 *start = 0;
3369 int64_t start, end;
3370 get_pts_range(mov, track, &start, &end);
3371 return end - start;
3381 int64_t start, end;
3382 get_pts_range(mov, track, &start, &end);
3384 start = 0;
3385 return end - start;
4685 avio_wb64(pb, av_rescale_q(c->start, c->time_base, (AVRational){1,10000000}));
5371 // and the corresponding start presentation time is zero.
5413 int i, start = 0;
5422 mov_write_trun_tag(pb, mov, track, moof_size, start, i);
5423 start = i;
5426 mov_write_trun_tag(pb, mov, track, moof_size, start, track->entry);
5991 const uint8_t *start, *next, *end = pkt->data + pkt->size;
5994 start = find_next_marker(pkt->data, end);
5995 for (next = start; next < end; start = next) {
5996 next = find_next_marker(start + 4, end);
5997 switch (AV_RB32(start)) {
6665 /* Not using edit lists and shifting the first track to start from zero.
6666 * If the other streams start from a later timestamp, we won't be able
7058 pkt->pts = pkt->dts = av_rescale_q(c->start, c->time_base, (AVRational){1,mov->movie_timescale});
7129 pkt->pts = pkt->dts = av_rescale_q(tc.start, av_inv_q(rate), (AVRational){1,mov->movie_timescale});
7131 AV_WB32(pkt->data, tc.start);
7916 const char start = '0';
7918 track_id = track_id * base + t->value[j] - start;