Lines Matching defs:timestamp
3924 int64_t timestamp, int flags)
3940 timestamp = FFMAX(timestamp, sti->index_entries[0].timestamp);
3942 if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 ||
3945 while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 ||
3970 matroska->skip_to_timecode = timestamp;
3973 matroska->skip_to_timecode = sti->index_entries[index].timestamp;
3977 avpriv_update_cur_dts(s, st, sti->index_entries[index].timestamp);
4016 * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts <
4030 if (index_entries[i - 1].timestamp * matroska->time_scale <= ts &&
4031 index_entries[i].timestamp * matroska->time_scale > ts) {
4036 cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale;
4039 cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale;
4193 int64_t time_ns = sti->index_entries[i].timestamp * matroska->time_scale;
4348 av_bprintf(&bprint, "%" PRId64",", sti->index_entries[i].timestamp);