blob: 628283276b4c044fe58d52b39d5d8d5e75e6a5b4 [file] [log] [blame]
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00002 * jmemnobs.c
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00003 *
DRC5033f3e2014-05-18 18:33:44 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane489583f1996-02-07 00:00:00 +00005 * Copyright (C) 1992-1996, Thomas G. Lane.
DRC5033f3e2014-05-18 18:33:44 +00006 * It was modified by The libjpeg-turbo Project to include only code and
7 * information relevant to libjpeg-turbo.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file provides a really simple implementation of the system-
11 * dependent portion of the JPEG memory manager. This implementation
12 * assumes that no backing-store files are needed: all required space
13 * can be obtained from malloc().
14 * This is very portable in the sense that it'll compile on almost anything,
15 * but you'd better have lots of main memory (or virtual memory) if you want
16 * to process big images.
17 * Note that the max_memory_to_use option is ignored by this implementation.
18 */
19
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000020#define JPEG_INTERNALS
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000021#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000022#include "jpeglib.h"
DRCe5eaf372014-05-09 18:00:32 +000023#include "jmemsys.h" /* import the system-dependent declarations */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000024
DRCe5eaf372014-05-09 18:00:32 +000025#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
DRCbc56b752014-05-16 10:43:44 +000026extern void * malloc (size_t size);
27extern void free (void *ptr);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000028#endif
29
30
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000031/*
32 * Memory allocation and freeing are controlled by the regular library
33 * routines malloc() and free().
34 */
35
Thomas G. Lane489583f1996-02-07 00:00:00 +000036GLOBAL(void *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000037jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000038{
39 return (void *) malloc(sizeofobject);
40}
41
Thomas G. Lane489583f1996-02-07 00:00:00 +000042GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000043jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000044{
45 free(object);
46}
47
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000048
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000049/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000050 * "Large" objects are treated the same as "small" ones.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000051 */
52
DRC5033f3e2014-05-18 18:33:44 +000053GLOBAL(void *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000054jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
55{
DRC5033f3e2014-05-18 18:33:44 +000056 return (void *) malloc(sizeofobject);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000057}
58
Thomas G. Lane489583f1996-02-07 00:00:00 +000059GLOBAL(void)
DRC5033f3e2014-05-18 18:33:44 +000060jpeg_free_large (j_common_ptr cinfo, void * object, size_t sizeofobject)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000061{
62 free(object);
63}
64
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000065
66/*
67 * This routine computes the total memory space available for allocation.
68 * Here we always say, "we got all you want bud!"
69 */
70
DRC04899092010-02-26 23:01:19 +000071GLOBAL(size_t)
72jpeg_mem_available (j_common_ptr cinfo, size_t min_bytes_needed,
DRCe5eaf372014-05-09 18:00:32 +000073 size_t max_bytes_needed, size_t already_allocated)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000074{
75 return max_bytes_needed;
76}
77
78
79/*
80 * Backing store (temporary file) management.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081 * Since jpeg_mem_available always promised the moon,
82 * this should never be called and we can just error out.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000083 */
84
Thomas G. Lane489583f1996-02-07 00:00:00 +000085GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000086jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
DRCe5eaf372014-05-09 18:00:32 +000087 long total_bytes_needed)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000088{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000089 ERREXIT(cinfo, JERR_NO_BACKING_STORE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000090}
91
92
93/*
94 * These routines take care of any system-dependent initialization and
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000095 * cleanup required. Here, there isn't any.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000096 */
97
Thomas G. Lane489583f1996-02-07 00:00:00 +000098GLOBAL(long)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000099jpeg_mem_init (j_common_ptr cinfo)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000100{
DRCe5eaf372014-05-09 18:00:32 +0000101 return 0; /* just set max_memory_to_use to 0 */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000102}
103
Thomas G. Lane489583f1996-02-07 00:00:00 +0000104GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000105jpeg_mem_term (j_common_ptr cinfo)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000106{
107 /* no work */
108}