/********************************************************************1* *2* THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *3* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *4* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *5* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *6* *7* THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009 *8* by the Xiph.Org Foundation and contributors *9* https://www.xiph.org/ *10* *11********************************************************************1213function:1415********************************************************************/1617#if !defined(_quant_H)18# define _quant_H (1)19# include "theora/codec.h"20# include "ocintrin.h"2122typedef ogg_uint16_t oc_quant_table[64];232425/*Maximum scaled quantizer value.*/26#define OC_QUANT_MAX (1024<<2)272829void oc_dequant_tables_init(ogg_uint16_t *_dequant[64][3][2],30int _pp_dc_scale[64],const th_quant_info *_qinfo);3132#endif333435