diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-03-04 21:18:27 +0100 |
---|---|---|
committer | Sean McGovern <gseanmcg@gmail.com> | 2014-04-14 23:13:23 -0400 |
commit | d21bf0d27b547adcaabaa28d475e6b9f97dfe20a (patch) | |
tree | 87330697ede787ef583c0bfa21da1d099c43dcb3 | |
parent | 03562c44c0c1e59d2a598390c5b2181ac406611c (diff) | |
download | ffmpeg-d21bf0d27b547adcaabaa28d475e6b9f97dfe20a.tar.gz |
resample: fix avresample_get_delay() return value
The correct "next" input sample is not the first sample of the
resampling buffer, but the center sample of the filter_length-sized
block at the beginning.
CC:libav-stable@libav.org
-rw-r--r-- | libavresample/resample.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavresample/resample.c b/libavresample/resample.c index dc121fe56d..047572bcb9 100644 --- a/libavresample/resample.c +++ b/libavresample/resample.c @@ -46,6 +46,7 @@ struct ResampleContext { void (*resample_one)(struct ResampleContext *c, int no_filter, void *dst0, int dst_index, const void *src0, int src_size, int index, int frac); + int padding_size; }; @@ -211,6 +212,7 @@ ResampleContext *ff_audio_resample_init(AVAudioResampleContext *avr) goto error; c->ideal_dst_incr = c->dst_incr; + c->padding_size = (c->filter_length - 1) / 2; c->index = -phase_count * ((c->filter_length - 1) / 2); c->frac = 0; @@ -461,8 +463,10 @@ int ff_audio_resample(ResampleContext *c, AudioData *dst, AudioData *src) int avresample_get_delay(AVAudioResampleContext *avr) { + ResampleContext *c = avr->resample; + if (!avr->resample_needed || !avr->resample) return 0; - return avr->resample->buffer->nb_samples; + return FFMAX(c->buffer->nb_samples - c->padding_size, 0); } |