jmemnobs.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * jmemnobs.c
  3. *
  4. * Copyright (C) 1992-1996, Thomas G. Lane.
  5. * Modified 2019 by Guido Vollbeding.
  6. * This file is part of the Independent JPEG Group's software.
  7. * For conditions of distribution and use, see the accompanying README file.
  8. *
  9. * This file provides a really simple implementation of the system-
  10. * dependent portion of the JPEG memory manager. This implementation
  11. * assumes that no backing-store files are needed: all required space
  12. * can be obtained from malloc().
  13. * This is very portable in the sense that it'll compile on almost anything,
  14. * but you'd better have lots of main memory (or virtual memory) if you want
  15. * to process big images.
  16. * Note that the max_memory_to_use option is respected by this implementation.
  17. */
  18. #define JPEG_INTERNALS
  19. #include "jinclude.h"
  20. #include "jpeglib.h"
  21. #include "jmemsys.h" /* import the system-dependent declarations */
  22. #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
  23. extern void * malloc JPP((size_t size));
  24. extern void free JPP((void *ptr));
  25. #endif
  26. /*
  27. * Memory allocation and freeing are controlled by the regular library
  28. * routines malloc() and free().
  29. */
  30. GLOBAL(void *)
  31. jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
  32. {
  33. return (void *) malloc(sizeofobject);
  34. }
  35. GLOBAL(void)
  36. jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
  37. {
  38. free(object);
  39. }
  40. /*
  41. * "Large" objects are treated the same as "small" ones.
  42. * NB: although we include FAR keywords in the routine declarations,
  43. * this file won't actually work in 80x86 small/medium model; at least,
  44. * you probably won't be able to process useful-size images in only 64KB.
  45. */
  46. GLOBAL(void FAR *)
  47. jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
  48. {
  49. return (void FAR *) malloc(sizeofobject);
  50. }
  51. GLOBAL(void)
  52. jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject)
  53. {
  54. free(object);
  55. }
  56. /*
  57. * This routine computes the total memory space available for allocation.
  58. */
  59. GLOBAL(long)
  60. jpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,
  61. long max_bytes_needed, long already_allocated)
  62. {
  63. if (cinfo->mem->max_memory_to_use)
  64. return cinfo->mem->max_memory_to_use - already_allocated;
  65. /* Here we say, "we got all you want bud!" */
  66. return max_bytes_needed;
  67. }
  68. /*
  69. * Backing store (temporary file) management.
  70. * Since jpeg_mem_available always promised the moon,
  71. * this should never be called and we can just error out.
  72. */
  73. GLOBAL(void)
  74. jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
  75. long total_bytes_needed)
  76. {
  77. ERREXIT(cinfo, JERR_NO_BACKING_STORE);
  78. }
  79. /*
  80. * These routines take care of any system-dependent initialization and
  81. * cleanup required. Here, there isn't any.
  82. */
  83. GLOBAL(long)
  84. jpeg_mem_init (j_common_ptr cinfo)
  85. {
  86. return 0; /* just set max_memory_to_use to 0 */
  87. }
  88. GLOBAL(void)
  89. jpeg_mem_term (j_common_ptr cinfo)
  90. {
  91. /* no work */
  92. }