summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/oggmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/Tremor/oggmalloc.c')
-rw-r--r--apps/codecs/Tremor/oggmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/Tremor/oggmalloc.c b/apps/codecs/Tremor/oggmalloc.c
index d7e903b156..b11eaa54f5 100644
--- a/apps/codecs/Tremor/oggmalloc.c
+++ b/apps/codecs/Tremor/oggmalloc.c
@@ -5,7 +5,7 @@ static size_t bufsize, tmp_ptr, mem_ptr;
5 5
6void ogg_malloc_init(void) 6void ogg_malloc_init(void)
7{ 7{
8 mallocbuf = ci->get_codec_memory(&bufsize); 8 mallocbuf = ci->codec_get_buffer(&bufsize);
9 tmp_ptr = bufsize & ~3; 9 tmp_ptr = bufsize & ~3;
10 mem_ptr = 0; 10 mem_ptr = 0;
11} 11}