summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpeg_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_alloc.h')
-rw-r--r--apps/plugins/mpegplayer/mpeg_alloc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_alloc.h b/apps/plugins/mpegplayer/mpeg_alloc.h
new file mode 100644
index 0000000000..9a08fd5308
--- /dev/null
+++ b/apps/plugins/mpegplayer/mpeg_alloc.h
@@ -0,0 +1,12 @@
1#ifndef MPEG_ALLOC_H
2#define MPEG_ALLOC_H
3
4/* returns the remaining mpeg2 buffer and it's size */
5void * mpeg2_get_buf(size_t *size);
6void *mpeg_malloc(size_t size, mpeg2_alloc_t reason);
7/* Grabs all the buffer available sans margin */
8void *mpeg_malloc_all(size_t *size_out, mpeg2_alloc_t reason);
9/* Initializes the malloc buffer with the given base buffer */
10bool mpeg_alloc_init(unsigned char *buf, size_t mallocsize);
11
12#endif /* MPEG_ALLOC_H */