michael@0: /******************************************************************** michael@0: * * michael@0: * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. * michael@0: * * 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 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 * michael@0: * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ * michael@0: * * michael@0: ******************************************************************** michael@0: michael@0: function: registry for floor, res backends and channel mappings michael@0: michael@0: ********************************************************************/ michael@0: michael@0: #include "ivorbiscodec.h" michael@0: #include "codec_internal.h" michael@0: #include "registry.h" michael@0: #include "misc.h" michael@0: michael@0: michael@0: /* seems like major overkill now; the backend numbers will grow into michael@0: the infrastructure soon enough */ michael@0: michael@0: extern vorbis_func_floor floor0_exportbundle; michael@0: extern vorbis_func_floor floor1_exportbundle; michael@0: extern vorbis_func_residue residue0_exportbundle; michael@0: extern vorbis_func_residue residue1_exportbundle; michael@0: extern vorbis_func_residue residue2_exportbundle; michael@0: extern vorbis_func_mapping mapping0_exportbundle; michael@0: michael@0: vorbis_func_floor *_floor_P[]={ michael@0: &floor0_exportbundle, michael@0: &floor1_exportbundle, michael@0: }; michael@0: michael@0: vorbis_func_residue *_residue_P[]={ michael@0: &residue0_exportbundle, michael@0: &residue1_exportbundle, michael@0: &residue2_exportbundle, michael@0: }; michael@0: michael@0: vorbis_func_mapping *_mapping_P[]={ michael@0: &mapping0_exportbundle, michael@0: }; michael@0: michael@0: michael@0: