diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-06 11:50:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-06 11:51:18 +0200 |
commit | 2c34367b4a17856584b3e8b64cefa1900342ebcd (patch) | |
tree | cef90e4330c73845ae579b66bd7ecce874b6126c | |
parent | 7548c80accbabf7a172ba03adfc38825c51ede08 (diff) | |
download | ffmpeg-2c34367b4a17856584b3e8b64cefa1900342ebcd.tar.gz |
libvorbisenc: fix afq delay setting
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libvorbisenc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/libvorbisenc.c b/libavcodec/libvorbisenc.c index 76a912d439..b042e0cb4f 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); |