jmemnobs.c 2.6 KB

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