Lines Matching defs:st2
659 AVStream *const st2 = s->streams[i];
660 FFStream *const sti2 = ffstream(st2);
662 st2->time_base,
897 AVStream *st2 = s->streams[next->stream_index];
898 int comp = av_compare_ts(next->dts, st2->time_base, pkt->dts,
902 int preload2 = st2->codecpar->codec_type == AVMEDIA_TYPE_AUDIO;
908 ts2= av_rescale_q(next->dts, st2->time_base, AV_TIME_BASE_Q) - preload2;
910 ts = ((uint64_t)pkt ->dts*st ->time_base.num*AV_TIME_BASE - (uint64_t)preload *st ->time_base.den)*st2->time_base.den
911 - ((uint64_t)next->dts*st2->time_base.num*AV_TIME_BASE - (uint64_t)preload2*st2->time_base.den)*st ->time_base.den;