Lines Matching defs:asti
77 FFStream *asti;
87 asti = ffstream(ast);
96 asti->nb_index_entries = avio_rl16(pb);
110 asti->index_entries = av_malloc(asti->nb_index_entries *
111 sizeof(*asti->index_entries));
112 if (!asti->index_entries)
115 jv->frames = av_malloc(asti->nb_index_entries * sizeof(*jv->frames));
118 offset = 0x68 + asti->nb_index_entries * 16;
119 for (int i = 0; i < asti->nb_index_entries; i++) {
120 AVIndexEntry *e = asti->index_entries + i;
165 FFStream *const asti = ffstream(ast);
168 while (!avio_feof(s->pb) && jv->pts < asti->nb_index_entries) {
169 const AVIndexEntry *const e = asti->index_entries + jv->pts;
226 FFStream *const asti = ffstream(ast);
243 if (i < 0 || i >= asti->nb_index_entries)
245 if (avio_seek(s->pb, asti->index_entries[i].pos, SEEK_SET) < 0)