瀏覽代碼

asoc: Fix read offset for compress capture with timestamp

In a compress capture usecase, read offset guides to
move buffer pointer based on buffer length. When timestamp is
enabled read offset also needs to include timestamp header
offset along with buffer length. This fix addresses the issue
of null memory map handle due to incorrect read offset.

Change-Id: I93c3ec588e77d535b6c7a4a0d832c1e7ea5f62a7
Signed-off-by: Vikram Panduranga <[email protected]>
Vikram Panduranga 7 年之前
父節點
當前提交
82c2c2ca00
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      asoc/msm-compress-q6-v2.c

+ 1 - 1
asoc/msm-compress-q6-v2.c

@@ -541,7 +541,7 @@ static int msm_compr_read_buffer(struct msm_compr_audio *prtd)
 		return ret;
 	}
 	prtd->bytes_read += buffer_length;
-	prtd->bytes_read_offset += buffer_length;
+	prtd->bytes_read_offset += buffer_length + prtd->ts_header_offset;
 	if (prtd->bytes_read_offset >= prtd->buffer_size)
 		prtd->bytes_read_offset -= prtd->buffer_size;