mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Use correct timestamp value for stream copy.
Originally committed as revision 13963 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7694a7d93f
commit
181782ae46
2
ffmpeg.c
2
ffmpeg.c
@ -1339,7 +1339,7 @@ static int output_packet(AVInputStream *ist, int ist_index,
|
|||||||
opkt.pts= AV_NOPTS_VALUE;
|
opkt.pts= AV_NOPTS_VALUE;
|
||||||
|
|
||||||
if (pkt->dts == AV_NOPTS_VALUE)
|
if (pkt->dts == AV_NOPTS_VALUE)
|
||||||
opkt.dts = av_rescale_q(ist->next_pts, AV_TIME_BASE_Q, ost->st->time_base);
|
opkt.dts = av_rescale_q(ist->pts, AV_TIME_BASE_Q, ost->st->time_base);
|
||||||
else
|
else
|
||||||
opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
|
opkt.dts = av_rescale_q(pkt->dts, ist->st->time_base, ost->st->time_base);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user