/********************************************************************1* *2* THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *3* *4* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *5* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *6* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *7* *8* THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *9* BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *10* *11********************************************************************1213function: registry for floor, res backends and channel mappings1415********************************************************************/1617#include "ivorbiscodec.h"18#include "codec_internal.h"19#include "registry.h"20#include "misc.h"212223/* seems like major overkill now; the backend numbers will grow into24the infrastructure soon enough */2526extern vorbis_func_floor floor0_exportbundle;27extern vorbis_func_floor floor1_exportbundle;28extern vorbis_func_residue residue0_exportbundle;29extern vorbis_func_residue residue1_exportbundle;30extern vorbis_func_residue residue2_exportbundle;31extern vorbis_func_mapping mapping0_exportbundle;3233vorbis_func_floor *_floor_P[]={34&floor0_exportbundle,35&floor1_exportbundle,36};3738vorbis_func_residue *_residue_P[]={39&residue0_exportbundle,40&residue1_exportbundle,41&residue2_exportbundle,42};4344vorbis_func_mapping *_mapping_P[]={45&mapping0_exportbundle,46};474849505152