michael@0: /******************************************************************** michael@0: * * michael@0: * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * michael@0: * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * michael@0: * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * michael@0: * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * michael@0: * * michael@0: * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 * michael@0: * by the Xiph.Org Foundation http://www.xiph.org/ * michael@0: * * michael@0: ******************************************************************** michael@0: michael@0: function: registry for time, floor, res backends and channel mappings michael@0: last mod: $Id: registry.h 15531 2008-11-24 23:50:06Z xiphmont $ michael@0: michael@0: ********************************************************************/ michael@0: michael@0: #ifndef _V_REG_H_ michael@0: #define _V_REG_H_ michael@0: michael@0: #define VI_TRANSFORMB 1 michael@0: #define VI_WINDOWB 1 michael@0: #define VI_TIMEB 1 michael@0: #define VI_FLOORB 2 michael@0: #define VI_RESB 3 michael@0: #define VI_MAPB 1 michael@0: michael@0: extern const vorbis_func_floor *const _floor_P[]; michael@0: extern const vorbis_func_residue *const _residue_P[]; michael@0: extern const vorbis_func_mapping *const _mapping_P[]; michael@0: michael@0: #endif