From 22ab522f99b48bf3c3d5850c72bc270a021258e7 Mon Sep 17 00:00:00 2001 From: Eric Laurent Date: Fri, 30 Mar 2012 09:43:23 -0700 Subject: audio: fix error in capture path delay calculation Fix error in get_capture_delay() that was not taking into account the fact that frames in in->buffer are at driver sampling rate while frames in in->proc_buf are at requested sampling rate. Change-Id: I09e627bd316daedab5ffea3dd638254eaa270a5b --- audio/audio_hw.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'audio') diff --git a/audio/audio_hw.c b/audio/audio_hw.c index fe3dce3..b4138a6 100644 --- a/audio/audio_hw.c +++ b/audio/audio_hw.c @@ -1828,8 +1828,11 @@ static void get_capture_delay(struct tuna_stream_in *in, /* read frames available in audio HAL input buffer * add number of frames being read as we want the capture time of first sample * in current buffer */ - buf_delay = (long)(((int64_t)(in->frames_in + in->proc_frames_in) * 1000000000) - / in->config.rate); + /* frames in in->buffer are at driver sampling rate while frames in in->proc_buf are + * at requested sampling rate */ + buf_delay = (long)(((int64_t)(in->frames_in) * 1000000000) / in->config.rate + + ((int64_t)(in->proc_frames_in) * 1000000000) / in->requested_rate); + /* add delay introduced by resampler */ rsmp_delay = 0; if (in->resampler) { -- cgit v1.1