diff options
author | William Wilgus <wilgus.william@gmail.com> | 2024-09-24 03:14:49 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-09-24 10:47:34 -0400 |
commit | f0c208554c5ccf628965c0b4b1415ac04789876e (patch) | |
tree | e1a18f326ad518bb6fa8394c2132b6e74efbe10d | |
parent | c3f51b5fe9f947a25bfee145450fddec04404bd5 (diff) | |
download | rockbox-f0c208554c.tar.gz rockbox-f0c208554c.zip |
[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
-rw-r--r-- | apps/pcmbuf.c | 6 | ||||
-rw-r--r-- | apps/pcmbuf.h | 1 | ||||
-rw-r--r-- | apps/playback.c | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/apps/pcmbuf.c b/apps/pcmbuf.c index 773e97cce0..b32cb4c429 100644 --- a/apps/pcmbuf.c +++ b/apps/pcmbuf.c @@ -580,6 +580,12 @@ static void init_buffer_state(void) chunk_transidx = INVALID_BUF_INDEX; } +/* call prior to init to get bytes required */ +size_t pcmbuf_size_reqd(void) +{ + return get_next_required_pcmbuf_chunks() * PCMBUF_CHUNK_SIZE; +} + /* Initialize the PCM buffer. The structure looks like this: * ...|---------PCMBUF---------|GUARDBUF|DESCS| */ size_t pcmbuf_init(void *bufend) 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 */ diff --git a/apps/playback.c b/apps/playback.c index 9fe6da6d0e..fb2b6eb1ef 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -1040,7 +1040,7 @@ static void audio_reset_buffer(void) core_free(audiobuf_handle); audiobuf_handle = 0; } - if (core_allocatable() < (1 << 10)) + if (core_allocatable() < pcmbuf_size_reqd()) talk_buffer_set_policy(TALK_BUFFER_LOOSE); /* back off voice buffer */ audiobuf_handle = core_alloc_maximum(&filebuflen, &ops); |