From eabdc2a830f1ab1a3f12243eb7e2fba801cb81f0 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 23 Aug 2014 13:12:51 +0000 Subject: lavf: use initial_padding instead of deprecated delay --- libavformat/oggenc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libavformat/oggenc.c') diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index 489f0105c6..1277a8b123 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -564,7 +564,10 @@ static int ogg_write_packet_internal(AVFormatContext *s, AVPacket *pkt) } granule = (oggstream->last_kf_pts<kfgshift) | pframe_count; } else if (st->codec->codec_id == AV_CODEC_ID_OPUS) - granule = pkt->pts + pkt->duration + av_rescale_q(st->codec->delay, (AVRational){ 1, st->codec->sample_rate }, st->time_base); + granule = pkt->pts + pkt->duration + + av_rescale_q(st->codec->initial_padding, + (AVRational){ 1, st->codec->sample_rate }, + st->time_base); else granule = pkt->pts + pkt->duration; -- cgit v1.2.3