Преглед на файлове

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;