Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 1 | /* |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 2 | * jmemnobs.c |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 3 | * |
DRC | 5033f3e | 2014-05-18 18:33:44 +0000 | [diff] [blame] | 4 | * This file was part of the Independent JPEG Group's software: |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 5 | * Copyright (C) 1992-1996, Thomas G. Lane. |
DRC | 5033f3e | 2014-05-18 18:33:44 +0000 | [diff] [blame] | 6 | * It was modified by The libjpeg-turbo Project to include only code and |
| 7 | * information relevant to libjpeg-turbo. |
DRC | 7e3acc0 | 2015-10-10 10:25:46 -0500 | [diff] [blame] | 8 | * For conditions of distribution and use, see the accompanying README.ijg |
| 9 | * file. |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 10 | * |
| 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. |
| 18 | * Note that the max_memory_to_use option is ignored by this implementation. |
| 19 | */ |
| 20 | |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 21 | #define JPEG_INTERNALS |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 22 | #include "jinclude.h" |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 23 | #include "jpeglib.h" |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 24 | #include "jmemsys.h" /* import the system-dependent declarations */ |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 25 | |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 26 | #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */ |
DRC | bd49803 | 2016-02-19 08:53:33 -0600 | [diff] [blame] | 27 | extern void *malloc (size_t size); |
DRC | bc56b75 | 2014-05-16 10:43:44 +0000 | [diff] [blame] | 28 | extern void free (void *ptr); |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 29 | #endif |
| 30 | |
| 31 | |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 32 | /* |
| 33 | * Memory allocation and freeing are controlled by the regular library |
| 34 | * routines malloc() and free(). |
| 35 | */ |
| 36 | |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 37 | GLOBAL(void *) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 38 | jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 39 | { |
| 40 | return (void *) malloc(sizeofobject); |
| 41 | } |
| 42 | |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 43 | GLOBAL(void) |
DRC | bd49803 | 2016-02-19 08:53:33 -0600 | [diff] [blame] | 44 | jpeg_free_small (j_common_ptr cinfo, void *object, size_t sizeofobject) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 45 | { |
| 46 | free(object); |
| 47 | } |
| 48 | |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 49 | |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 50 | /* |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 51 | * "Large" objects are treated the same as "small" ones. |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 52 | */ |
| 53 | |
DRC | 5033f3e | 2014-05-18 18:33:44 +0000 | [diff] [blame] | 54 | GLOBAL(void *) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 55 | jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject) |
| 56 | { |
DRC | 5033f3e | 2014-05-18 18:33:44 +0000 | [diff] [blame] | 57 | return (void *) malloc(sizeofobject); |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 60 | GLOBAL(void) |
DRC | bd49803 | 2016-02-19 08:53:33 -0600 | [diff] [blame] | 61 | jpeg_free_large (j_common_ptr cinfo, void *object, size_t sizeofobject) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 62 | { |
| 63 | free(object); |
| 64 | } |
| 65 | |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * This routine computes the total memory space available for allocation. |
| 69 | * Here we always say, "we got all you want bud!" |
| 70 | */ |
| 71 | |
DRC | 0489909 | 2010-02-26 23:01:19 +0000 | [diff] [blame] | 72 | GLOBAL(size_t) |
| 73 | jpeg_mem_available (j_common_ptr cinfo, size_t min_bytes_needed, |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 74 | size_t max_bytes_needed, size_t already_allocated) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 75 | { |
| 76 | return max_bytes_needed; |
| 77 | } |
| 78 | |
| 79 | |
| 80 | /* |
| 81 | * Backing store (temporary file) management. |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 82 | * Since jpeg_mem_available always promised the moon, |
| 83 | * this should never be called and we can just error out. |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 84 | */ |
| 85 | |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 86 | GLOBAL(void) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 87 | jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info, |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 88 | long total_bytes_needed) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 89 | { |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 90 | ERREXIT(cinfo, JERR_NO_BACKING_STORE); |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | |
| 94 | /* |
| 95 | * These routines take care of any system-dependent initialization and |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 96 | * cleanup required. Here, there isn't any. |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 97 | */ |
| 98 | |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 99 | GLOBAL(long) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 100 | jpeg_mem_init (j_common_ptr cinfo) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 101 | { |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 102 | return 0; /* just set max_memory_to_use to 0 */ |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Thomas G. Lane | 489583f | 1996-02-07 00:00:00 +0000 | [diff] [blame] | 105 | GLOBAL(void) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 106 | jpeg_mem_term (j_common_ptr cinfo) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 107 | { |
| 108 | /* no work */ |
| 109 | } |