summaryrefslogtreecommitdiff
path: root/lib/opusfile/include/custom_support.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/opusfile/include/custom_support.h')
-rw-r--r--lib/opusfile/include/custom_support.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/opusfile/include/custom_support.h b/lib/opusfile/include/custom_support.h
index a5748989..60cab623 100644
--- a/lib/opusfile/include/custom_support.h
+++ b/lib/opusfile/include/custom_support.h
@@ -6,12 +6,10 @@
#define OVERRIDE_OPUS_ALLOC
#define OVERRIDE_OPUS_FREE
-static OPUS_INLINE void *opus_alloc (size_t size)
-{
- return heap_caps_malloc(size, MALLOC_CAP_SPIRAM);
+static OPUS_INLINE void* opus_alloc(size_t size) {
+ return heap_caps_malloc(size, MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
}
-static OPUS_INLINE void opus_free (void *ptr)
-{
- heap_caps_free(ptr);
+static OPUS_INLINE void opus_free(void* ptr) {
+ heap_caps_free(ptr);
}