00001 /******************************************************************** 00002 * * 00003 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * 00004 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * 00005 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * 00006 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * 00007 * * 00008 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2002 * 00009 * by the XIPHOPHORUS Company http://www.xiph.org/ * 00010 * * 00011 ******************************************************************** 00012 00013 function: registry for time, floor, res backends and channel mappings 00014 last mod: $Id: registry.h 7187 2004-07-20 07:24:27Z xiphmont $ 00015 00016 ********************************************************************/ 00017 00018 #ifndef _V_REG_H_ 00019 #define _V_REG_H_ 00020 00021 #define VI_TRANSFORMB 1 00022 #define VI_WINDOWB 1 00023 #define VI_TIMEB 1 00024 #define VI_FLOORB 2 00025 #define VI_RESB 3 00026 #define VI_MAPB 1 00027 00028 extern vorbis_func_floor *_floor_P[]; 00029 extern vorbis_func_residue *_residue_P[]; 00030 extern vorbis_func_mapping *_mapping_P[]; 00031 00032 #endif