Lines Matching defs:index
390 EbmlList index;
696 { MATROSKA_ID_POINTENTRY, EBML_NEST, 0, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext, index), { .n = matroska_index_entry } },
1847 "The tags at index %d refer to a "
1864 "The tags at index %d refer to a non-existent chapter "
1881 "The tags at index %d refer to a non-existent track "
1959 // mark index as broken
1971 MatroskaIndex *index;
1978 index_list = &matroska->index;
1979 index = index_list->elem;
1982 if (index[1].time > 1E14 / matroska->time_scale) {
1983 av_log(matroska->ctx, AV_LOG_WARNING, "Dropping apparently-broken index.\n");
1987 EbmlList *pos_list = &index[i].pos;
1995 index[i].time / index_scale, 0, 0,
2255 st->index, yaw, pitch, roll);
3355 pkt->stream_index = st->index;
3428 AV_WL32(dst + offset + 16, 0); // block index
3569 pkt->stream_index = st->index;
3641 pkt->stream_index = st->index;
3752 ff_reduce_index(matroska->ctx, st->index);
3930 int i, index;
3932 /* Parse the CUES now since we need the index data to seek. */
3942 if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 ||
3943 index == sti->nb_index_entries - 1) {
3945 while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 ||
3946 index == sti->nb_index_entries - 1) {
3954 if (index < 0 || (matroska->cues_parsing_deferred < 0 &&
3955 index == sti->nb_index_entries - 1))
3967 matroska_reset_status(matroska, 0, sti->index_entries[index].pos);
3973 matroska->skip_to_timecode = sti->index_entries[index].timestamp;
3977 avpriv_update_cur_dts(s, st, sti->index_entries[index].timestamp);
4058 int index, rv = 1;
4064 index = av_index_search_timestamp(st, 0, 0);
4065 if (index < 0)
4067 cluster_pos = sti->index_entries[index].pos;