]> git.sesse.net Git - ffmpeg/commitdiff
get rid of some double timebase convertion
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 3 Aug 2007 20:49:53 +0000 (20:49 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 3 Aug 2007 20:49:53 +0000 (20:49 +0000)
Originally committed as revision 9878 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffmpeg.c

index 4b57b0218b6cbd5b91b5e883701fa2c5b7851005..8ec10a2f431b79c5b9306bae647498aa475a75ed 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1230,14 +1230,11 @@ static int output_packet(AVInputStream *ist, int ist_index,
                         else
                             opkt.pts= AV_NOPTS_VALUE;
 
-                        {
-                            int64_t dts;
                             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
-                                dts= av_rescale_q(pkt->dts, ist->st->time_base, AV_TIME_BASE_Q);
-                            opkt.dts= av_rescale_q(dts, AV_TIME_BASE_Q,  ost->st->time_base);
-                        }
+                                opkt.dts = av_rescale_q(pkt->dts, 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;