/* * The copyright in this software is being made available under the 2-clauses * BSD License, included below. This software may be subject to other third * party and contributor rights, including patent rights, and no such rights * are granted under this license. * * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium * Copyright (c) 2002-2014, Professor Benoit Macq * Copyright (c) 2001-2003, David Janssens * Copyright (c) 2002-2003, Yannick Verschueren * Copyright (c) 2003-2007, Francois-Olivier Devaux * Copyright (c) 2003-2014, Antonin Descampe * Copyright (c) 2005, Herve Drolon, FreeImage Team * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <[email protected]> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef OPJ_MQC_INL_H #define OPJ_MQC_INL_H /* For internal use of opj_mqc_decode_macro() */ #define opj_mqc_mpsexchange_macro(d, curctx, a) … /* For internal use of opj_mqc_decode_macro() */ #define opj_mqc_lpsexchange_macro(d, curctx, a) … /** Decode a symbol using raw-decoder. Cfr p.506 TAUBMAN @param mqc MQC handle @return Returns the decoded symbol (0 or 1) */ static INLINE OPJ_UINT32 opj_mqc_raw_decode(opj_mqc_t *mqc) { … } #define opj_mqc_bytein_macro(mqc, c, ct) … /* For internal use of opj_mqc_decode_macro() */ #define opj_mqc_renormd_macro(mqc, a, c, ct) … #define opj_mqc_decode_macro(d, mqc, curctx, a, c, ct) … #define DOWNLOAD_MQC_VARIABLES(mqc, curctx, a, c, ct) … #define UPLOAD_MQC_VARIABLES(mqc, curctx, a, c, ct) … /** Input a byte @param mqc MQC handle */ static INLINE void opj_mqc_bytein(opj_mqc_t *const mqc) { … } /** Renormalize mqc->a and mqc->c while decoding @param mqc MQC handle */ #define opj_mqc_renormd(mqc) … /** Decode a symbol @param d OPJ_UINT32 value where to store the decoded symbol @param mqc MQC handle @return Returns the decoded symbol (0 or 1) in d */ #define opj_mqc_decode(d, mqc) … /** Output a byte, doing bit-stuffing if necessary. After a 0xff byte, the next byte must be smaller than 0x90. @param mqc MQC handle */ void opj_mqc_byteout(opj_mqc_t *mqc); /** Renormalize mqc->a and mqc->c while encoding, so that mqc->a stays between 0x8000 and 0x10000 @param mqc MQC handle @param a_ value of mqc->a @param c_ value of mqc->c_ @param ct_ value of mqc->ct_ */ #define opj_mqc_renorme_macro(mqc, a_, c_, ct_) … #define opj_mqc_codemps_macro(mqc, curctx, a, c, ct) … #define opj_mqc_codelps_macro(mqc, curctx, a, c, ct) … #define opj_mqc_encode_macro(mqc, curctx, a, c, ct, d) … #define opj_mqc_bypass_enc_macro(mqc, c, ct, d) … #endif /* OPJ_MQC_INL_H */