diff --git a/libavcodec/libvorbisenc.c b/libavcodec/libvorbisenc.c index 76a912d4390033939f895967e62953da2817b56b..b042e0cb4fde861c858157baaa75e225c458276a 100644 --- a/libavcodec/libvorbisenc.c +++ b/libavcodec/libvorbisenc.c @@ -362,7 +362,9 @@ static int oggvorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, * libvorbis, so we have to update the AudioFrameQueue counts */ if (!avctx->delay) { avctx->delay = duration; - s->afq.remaining_delay += duration; + av_assert0(!s->afq.remaining_delay); + s->afq.frames->duration += duration; + s->afq.frames->pts -= duration; s->afq.remaining_samples += duration; } ff_af_queue_remove(&s->afq, duration, &avpkt->pts, &avpkt->duration);