Lines Matching defs:idx
30 static int vp8_header(AVFormatContext *s, int idx)
33 struct ogg_stream *os = ogg->streams + idx;
35 AVStream *st = s->streams[idx];
79 static uint64_t vp8_gptopts(AVFormatContext *s, int idx,
83 struct ogg_stream *os = ogg->streams + idx;
101 static int vp8_packet(AVFormatContext *s, int idx)
104 struct ogg_stream *os = ogg->streams + idx;
125 os->lastdts = vp8_gptopts(s, idx, os->granule, NULL) - duration;
126 if(s->streams[idx]->start_time == AV_NOPTS_VALUE) {
127 s->streams[idx]->start_time = os->lastpts;
128 if (s->streams[idx]->duration && s->streams[idx]->duration != AV_NOPTS_VALUE)
129 s->streams[idx]->duration -= s->streams[idx]->start_time;