mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avconv: Fix the audio next dts computation
Use the correct timebase. CC: libav-stable@libav.org
This commit is contained in:
parent
eb135516e6
commit
d0c84c41d3
2
avconv.c
2
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user