blob: 089be8f500d251c00cd314dba3750e544fc9f2bd [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.
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -05006 * libjpeg-turbo Modifications:
Leon Scroggins III3993b372018-07-16 10:43:45 -04007 * Copyright (C) 2017-2018, D. R. Commander.
Alex Naidis6eb7d372016-10-16 23:10:08 +02008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000010 *
11 * This file provides a really simple implementation of the system-
12 * dependent portion of the JPEG memory manager. This implementation
13 * assumes that no backing-store files are needed: all required space
14 * can be obtained from malloc().
15 * This is very portable in the sense that it'll compile on almost anything,
16 * but you'd better have lots of main memory (or virtual memory) if you want
17 * to process big images.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000018 */
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() */
Leon Scroggins III3993b372018-07-16 10:43:45 -040026extern 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 *)
Leon Scroggins III3993b372018-07-16 10:43:45 -040037jpeg_get_small(j_common_ptr cinfo, size_t sizeofobject)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000038{
Leon Scroggins III3993b372018-07-16 10:43:45 -040039 return (void *)malloc(sizeofobject);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000040}
41
Thomas G. Lane489583f1996-02-07 00:00:00 +000042GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040043jpeg_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 *)
Leon Scroggins III3993b372018-07-16 10:43:45 -040054jpeg_get_large(j_common_ptr cinfo, size_t sizeofobject)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000055{
Leon Scroggins III3993b372018-07-16 10:43:45 -040056 return (void *)malloc(sizeofobject);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000057}
58
Thomas G. Lane489583f1996-02-07 00:00:00 +000059GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040060jpeg_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.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000068 */
69
DRC04899092010-02-26 23:01:19 +000070GLOBAL(size_t)
Leon Scroggins III3993b372018-07-16 10:43:45 -040071jpeg_mem_available(j_common_ptr cinfo, size_t min_bytes_needed,
72 size_t max_bytes_needed, size_t already_allocated)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000073{
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -050074 if (cinfo->mem->max_memory_to_use) {
Leon Scroggins III3993b372018-07-16 10:43:45 -040075 if ((size_t)cinfo->mem->max_memory_to_use > already_allocated)
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -050076 return cinfo->mem->max_memory_to_use - already_allocated;
77 else
78 return 0;
79 } else {
80 /* Here we always say, "we got all you want bud!" */
81 return max_bytes_needed;
82 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000083}
84
85
86/*
87 * Backing store (temporary file) management.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000088 * Since jpeg_mem_available always promised the moon,
89 * this should never be called and we can just error out.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000090 */
91
Thomas G. Lane489583f1996-02-07 00:00:00 +000092GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040093jpeg_open_backing_store(j_common_ptr cinfo, backing_store_ptr info,
94 long total_bytes_needed)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000095{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000096 ERREXIT(cinfo, JERR_NO_BACKING_STORE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000097}
98
99
100/*
101 * These routines take care of any system-dependent initialization and
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000102 * cleanup required. Here, there isn't any.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000103 */
104
Thomas G. Lane489583f1996-02-07 00:00:00 +0000105GLOBAL(long)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400106jpeg_mem_init(j_common_ptr cinfo)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000107{
DRCe5eaf372014-05-09 18:00:32 +0000108 return 0; /* just set max_memory_to_use to 0 */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000109}
110
Thomas G. Lane489583f1996-02-07 00:00:00 +0000111GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400112jpeg_mem_term(j_common_ptr cinfo)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000113{
114 /* no work */
115}