⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jmemnobs.c

📁 这是从一款商业嵌入式浏览器中节选出来的代码
💻 C
字号:
/* * jmemnobs.c * * Copyright (C) 1992-1994, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file provides a really simple implementation of the system- * dependent portion of the JPEG memory manager.  This implementation * assumes that no backing-store files are needed: all required space * can be obtained from malloc(). * This is very portable in the sense that it'll compile on almost anything, * but you'd better have lots of main memory (or virtual memory) if you want * to process big images. * Note that the max_memory_to_use option is ignored by this implementation. */#define JPEG_INTERNALS#include "layers.h"#include "jinclude.h"#include "jpeglib.h"#include "jmemsys.h"		/* import the system-dependent declarations */#include "../webimage.h"#include "../image.h"#ifndef HAVE_STDLIB_H		/* <stdlib.h> should declare malloc(),free() */extern void * malloc JPP((size_t size));extern void free JPP((void *ptr));#endif/* * Memory allocation and freeing are controlled by the regular library * routines malloc() and free(). */GLOBAL void *jpeg_get_small (j_common_ptr cinfo, size_t sizeofobject){    NOT_USED(cinfo);    return (void *) heap_alloc(sizeofobject);}GLOBAL voidjpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject){    heap_free(object);    NOT_USED(cinfo);    NOT_USED(sizeofobject);}/* * "Large" objects are treated the same as "small" ones. * NB: although we include FAR keywords in the routine declarations, * this file won't actually work in 80x86 small/medium model; at least, * you probably won't be able to process useful-size images in only 64KB. */GLOBAL void FAR *jpeg_get_large (j_common_ptr cinfo, size_t sizeofobject){    NOT_USED(cinfo);    return (void FAR *) heap_alloc(sizeofobject);}GLOBAL voidjpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject){    heap_free(object);    NOT_USED(cinfo);    NOT_USED(sizeofobject);}/* * This routine computes the total memory space available for allocation. * Here we always say, "we got all you want bud!" */GLOBAL longjpeg_mem_available (j_common_ptr cinfo, long min_bytes_needed,		    long max_bytes_needed, long already_allocated){    NOT_USED(cinfo);    NOT_USED(min_bytes_needed);    NOT_USED(already_allocated);    return max_bytes_needed;}/* * Backing store (temporary file) management. * Since jpeg_mem_available always promised the moon, * this should never be called and we can just error out. */GLOBAL voidjpeg_open_backing_store (j_common_ptr cinfo, backing_store_ptr info,			 long total_bytes_needed){    NOT_USED(info);    NOT_USED(total_bytes_needed);    ERREXIT(cinfo, JERR_NO_BACKING_STORE);}/* * These routines take care of any system-dependent initialization and * cleanup required.  Here, there isn't any. */GLOBAL longjpeg_mem_init (j_common_ptr cinfo){    NOT_USED(cinfo);    return 0;			/* just set max_memory_to_use to 0 */}GLOBAL voidjpeg_mem_term (j_common_ptr cinfo){    /* no work */    NOT_USED(cinfo);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -