diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /media/libogg/src/ogg_alloc.c | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'media/libogg/src/ogg_alloc.c')
-rw-r--r-- | media/libogg/src/ogg_alloc.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media/libogg/src/ogg_alloc.c b/media/libogg/src/ogg_alloc.c new file mode 100644 index 0000000000..4238d7b610 --- /dev/null +++ b/media/libogg/src/ogg_alloc.c @@ -0,0 +1,31 @@ +/******************************************************************** + * * + * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * + * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * + * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * + * * + * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2002 * + * by the Xiph.Org Foundation http://www.xiph.org/ * + * * + *********************************************************************/ + +#include <stdlib.h> +#include "ogg/os_types.h" + +ogg_malloc_function_type *ogg_malloc_func = malloc; +ogg_calloc_function_type *ogg_calloc_func = calloc; +ogg_realloc_function_type *ogg_realloc_func = realloc; +ogg_free_function_type *ogg_free_func = free; + +void +ogg_set_mem_functions(ogg_malloc_function_type *malloc_func, + ogg_calloc_function_type *calloc_func, + ogg_realloc_function_type *realloc_func, + ogg_free_function_type *free_func) +{ + ogg_malloc_func = malloc_func; + ogg_calloc_func = calloc_func; + ogg_realloc_func = realloc_func; + ogg_free_func = free_func; +} |