From 641aa661f669893dd039eab253f5ec5455f5c730 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 30 Jun 2004 15:09:21 +0000 Subject: [PATCH] 10l Originally committed as revision 3273 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index ef512b2ca2..4d8c79feef 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -444,7 +444,7 @@ static void do_audio_out(AVFormatContext *s, if(verbose > 2) fprintf(stderr, "compensating audio timestamp drift:%f compensation:%d in:%d\n", delta, comp, enc->sample_rate); // fprintf(stderr, "drift:%f len:%d opts:%lld ipts:%lld fifo:%d\n", delta, len/4, ost->sync_opts, (int64_t)(ost->sync_ipts * enc->sample_rate), fifo_size(&ost->fifo, ost->fifo.rptr)/(ost->st->codec.channels * 2)); - av_resample_compensate(*(struct AVResampleContext**)ost->resample, delta, enc->sample_rate); + av_resample_compensate(*(struct AVResampleContext**)ost->resample, comp, enc->sample_rate); } }else ost->sync_opts= lrintf(ost->sync_ipts * enc->sample_rate)