jmemnobs.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * jmemnobs.c
  3. *
  4. * This file was part of the Independent JPEG Group's software:
  5. * Copyright (C) 1992-1996, Thomas G. Lane.
  6. * It was modified by The libjpeg-turbo Project to include only code and
  7. * information relevant to libjpeg-turbo.
  8. * 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. #define JPEG_INTERNALS
  20. #include "jinclude.h"
  21. #include "jpeglib.h"
  22. #include "jmemsys.h" /* import the system-dependent declarations */
  23. #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
  24. extern void * malloc (size_t size);
  25. extern void free (void *ptr);
  26. #endif
  27. /*
  28. * Memory allocation and freeing are controlled by the regular library
  29. * routines malloc() and free().
  30. */
  31. GLOBAL(void *)
  32. jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject)
  33. {
  34. return (void *) malloc(sizeofobject);
  35. }
  36. GLOBAL(void)
  37. jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject)
  38. {
  39. free(object);
  40. }
  41. /*
  42. * "Large" objects are treated the same as "small" ones.
  43. */
  44. GLOBAL(void *)
  45. jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject)
  46. {
  47. return (void *) malloc(sizeofobject);
  48. }
  49. GLOBAL(void)
  50. jpeg_free_large (j_common_ptr cinfo, void * object, size_t sizeofobject)
  51. {
  52. free(object);
  53. }
  54. /*
  55. * This routine computes the total memory space available for allocation.
  56. * Here we always say, "we got all you want bud!"
  57. */
  58. GLOBAL(size_t)
  59. jpeg_mem_available (j_common_ptr cinfo, size_t min_bytes_needed,
  60. size_t max_bytes_needed, size_t already_allocated)
  61. {
  62. return max_bytes_needed;
  63. }
  64. /*
  65. * Backing store (temporary file) management.
  66. * Since jpeg_mem_available always promised the moon,
  67. * this should never be called and we can just error out.
  68. */
  69. GLOBAL(void)
  70. jpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,
  71. long total_bytes_needed)
  72. {
  73. ERREXIT(cinfo, JERR_NO_BACKING_STORE);
  74. }
  75. /*
  76. * These routines take care of any system-dependent initialization and
  77. * cleanup required. Here, there isn't any.
  78. */
  79. GLOBAL(long)
  80. jpeg_mem_init (j_common_ptr cinfo)
  81. {
  82. return 0; /* just set max_memory_to_use to 0 */
  83. }
  84. GLOBAL(void)
  85. jpeg_mem_term (j_common_ptr cinfo)
  86. {
  87. /* no work */
  88. }