Lines Matching refs:opkt
1817 AVPacket *opkt = ost->pkt;
1819 av_packet_unref(opkt);
1822 output_packet(of, opkt, ost, 1);
1858 if (av_packet_ref(opkt, pkt) < 0)
1862 opkt->pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->mux_timebase) - ost_tb_start_time;
1865 opkt->dts = av_rescale_q(ist->dts, AV_TIME_BASE_Q, ost->mux_timebase);
1870 opkt->dts = av_rescale_delta(ist->st->time_base, pkt->dts,
1874 opkt->pts = opkt->dts - ost_tb_start_time;
1876 opkt->dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->mux_timebase);
1877 opkt->dts -= ost_tb_start_time;
1879 opkt->duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->mux_timebase);
1881 ost->sync_opts += opkt->duration;
1883 output_packet(of, opkt, ost, 0);