From f0c208554c5ccf628965c0b4b1415ac04789876e Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Tue, 24 Sep 2024 03:14:49 -0400 Subject: [BugFix] Playback.c OOM with large voice file with our large voice file being loaded in its entirety to the buffer there isn't enough room to allocate the required pcm buffer well prior to this patch we looked for 1k free to allow the talk buffer to be given away well the pcm buffer expects something like 5-600 kb on the clipzip and there is 1k allocatable but not 300 more so instead get the required pcm buffer size and check against that Change-Id: I40a056e4170c37bc3429f0cb37af221ae7f812e5 --- apps/pcmbuf.h | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/pcmbuf.h') diff --git a/apps/pcmbuf.h b/apps/pcmbuf.h index 33422bbee5..a9daed23cc 100644 --- a/apps/pcmbuf.h +++ b/apps/pcmbuf.h @@ -28,6 +28,7 @@ void *pcmbuf_request_buffer(int *count); void pcmbuf_write_complete(int count, unsigned long elapsed, off_t offset); /* Init */ +size_t pcmbuf_size_reqd(void); size_t pcmbuf_init(void *bufend); /* Playback */ -- cgit v1.2.3