X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=avconv.c;h=5c31332812b743b7f3907808c4b0ab06348d98d2;hb=6ef3360a38efe027cb6ebf9785870048ca7eb38b;hp=97166d9e2ad6be6153005a3e387b584df6fc70e1;hpb=a3483f79933e8f1fd99d524e3218688e14c59150;p=ffmpeg diff --git a/avconv.c b/avconv.c index 97166d9e2ad..5c31332812b 100644 --- a/avconv.c +++ b/avconv.c @@ -1350,7 +1350,7 @@ static int decode_audio(InputStream *ist, AVPacket *pkt, int *got_output, /* if the decoder provides a pts, use it instead of the last packet pts. the decoder could be delaying output by a packet or more. */ if (decoded_frame->pts != AV_NOPTS_VALUE) - ist->next_dts = decoded_frame->pts; + ist->next_dts = av_rescale_q(decoded_frame->pts, ist->st->time_base, AV_TIME_BASE_Q); else if (pkt && pkt->pts != AV_NOPTS_VALUE) { decoded_frame->pts = pkt->pts; }