Path: blob/master/3rdparty/libjpeg-turbo/src/jcomapi.c
16337 views
/*1* jcomapi.c2*3* This file was part of the Independent JPEG Group's software:4* Copyright (C) 1994-1997, Thomas G. Lane.5* It was modified by The libjpeg-turbo Project to include only code relevant6* to libjpeg-turbo.7* For conditions of distribution and use, see the accompanying README.ijg8* file.9*10* This file contains application interface routines that are used for both11* compression and decompression.12*/1314#define JPEG_INTERNALS15#include "jinclude.h"16#include "jpeglib.h"171819/*20* Abort processing of a JPEG compression or decompression operation,21* but don't destroy the object itself.22*23* For this, we merely clean up all the nonpermanent memory pools.24* Note that temp files (virtual arrays) are not allowed to belong to25* the permanent pool, so we will be able to close all temp files here.26* Closing a data source or destination, if necessary, is the application's27* responsibility.28*/2930GLOBAL(void)31jpeg_abort (j_common_ptr cinfo)32{33int pool;3435/* Do nothing if called on a not-initialized or destroyed JPEG object. */36if (cinfo->mem == NULL)37return;3839/* Releasing pools in reverse order might help avoid fragmentation40* with some (brain-damaged) malloc libraries.41*/42for (pool = JPOOL_NUMPOOLS-1; pool > JPOOL_PERMANENT; pool--) {43(*cinfo->mem->free_pool) (cinfo, pool);44}4546/* Reset overall state for possible reuse of object */47if (cinfo->is_decompressor) {48cinfo->global_state = DSTATE_START;49/* Try to keep application from accessing now-deleted marker list.50* A bit kludgy to do it here, but this is the most central place.51*/52((j_decompress_ptr) cinfo)->marker_list = NULL;53} else {54cinfo->global_state = CSTATE_START;55}56}575859/*60* Destruction of a JPEG object.61*62* Everything gets deallocated except the master jpeg_compress_struct itself63* and the error manager struct. Both of these are supplied by the application64* and must be freed, if necessary, by the application. (Often they are on65* the stack and so don't need to be freed anyway.)66* Closing a data source or destination, if necessary, is the application's67* responsibility.68*/6970GLOBAL(void)71jpeg_destroy (j_common_ptr cinfo)72{73/* We need only tell the memory manager to release everything. */74/* NB: mem pointer is NULL if memory mgr failed to initialize. */75if (cinfo->mem != NULL)76(*cinfo->mem->self_destruct) (cinfo);77cinfo->mem = NULL; /* be safe if jpeg_destroy is called twice */78cinfo->global_state = 0; /* mark it destroyed */79}808182/*83* Convenience routines for allocating quantization and Huffman tables.84* (Would jutils.c be a more reasonable place to put these?)85*/8687GLOBAL(JQUANT_TBL *)88jpeg_alloc_quant_table (j_common_ptr cinfo)89{90JQUANT_TBL *tbl;9192tbl = (JQUANT_TBL *)93(*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, sizeof(JQUANT_TBL));94tbl->sent_table = FALSE; /* make sure this is false in any new table */95return tbl;96}979899GLOBAL(JHUFF_TBL *)100jpeg_alloc_huff_table (j_common_ptr cinfo)101{102JHUFF_TBL *tbl;103104tbl = (JHUFF_TBL *)105(*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, sizeof(JHUFF_TBL));106tbl->sent_table = FALSE; /* make sure this is false in any new table */107return tbl;108}109110111