summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/alloc.c')
-rw-r--r--apps/plugins/mpegplayer/alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/alloc.c b/apps/plugins/mpegplayer/alloc.c
index c4f936ee14..6b50b8f24c 100644
--- a/apps/plugins/mpegplayer/alloc.c
+++ b/apps/plugins/mpegplayer/alloc.c
@@ -27,6 +27,7 @@
27 27
28#include "plugin.h" 28#include "plugin.h"
29#include "mpegplayer.h" 29#include "mpegplayer.h"
30#include <system.h>
30 31
31/* Main allocator */ 32/* Main allocator */
32static off_t mem_ptr; 33static off_t mem_ptr;
@@ -132,8 +133,8 @@ bool mpeg_alloc_init(unsigned char *buf, size_t mallocsize)
132 mem_ptr = 0; 133 mem_ptr = 0;
133 /* Cache-align buffer or 4-byte align */ 134 /* Cache-align buffer or 4-byte align */
134 mallocbuf = buf; 135 mallocbuf = buf;
135 bufsize = align_buffer(PUN_PTR(void **, &mallocbuf), 136 bufsize = mallocsize;
136 mallocsize, CACHEALIGN_UP(4)); 137 ALIGN_BUFFER(mallocbuf, bufsize, CACHEALIGN_UP(4));
137 138
138 /* Separate allocator for video */ 139 /* Separate allocator for video */
139 mpeg2_mem_ptr = 0; 140 mpeg2_mem_ptr = 0;