JMEMNOBS.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:4k
源码类别:

网络截获/分析

开发平台:

Visual C++

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