Commit c0dd7b7c authored by Michael Niedermayer's avatar Michael Niedermayer

get rid of some double timebase convertion

Originally committed as revision 9878 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent aebe25f3
...@@ -1230,14 +1230,11 @@ static int output_packet(AVInputStream *ist, int ist_index, ...@@ -1230,14 +1230,11 @@ static int output_packet(AVInputStream *ist, int ist_index,
else else
opkt.pts= AV_NOPTS_VALUE; opkt.pts= AV_NOPTS_VALUE;
{
int64_t dts;
if (pkt->dts == AV_NOPTS_VALUE) if (pkt->dts == AV_NOPTS_VALUE)
dts = ist->next_pts; opkt.dts = av_rescale_q(ist->next_pts, AV_TIME_BASE_Q, ost->st->time_base);
else else
dts= av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q); opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
opkt.dts= av_rescale_q(dts, AV_TIME_BASE_Q, ost->st->time_base);
}
opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base); opkt.duration = av_rescale_q(pkt->duration, ist->st->time_base, ost->st->time_base);
opkt.flags= pkt->flags; opkt.flags= pkt->flags;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment