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-2009 * 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.c 16227 2009-07-08 06:58:46Z xiphmont $ michael@0: michael@0: ********************************************************************/ michael@0: michael@0: #include "vorbis/codec.h" michael@0: #include "codec_internal.h" michael@0: #include "registry.h" michael@0: #include "misc.h" michael@0: /* seems like major overkill now; the backend numbers will grow into michael@0: the infrastructure soon enough */ michael@0: michael@0: extern const vorbis_func_floor floor0_exportbundle; michael@0: extern const vorbis_func_floor floor1_exportbundle; michael@0: extern const vorbis_func_residue residue0_exportbundle; michael@0: extern const vorbis_func_residue residue1_exportbundle; michael@0: extern const vorbis_func_residue residue2_exportbundle; michael@0: extern const vorbis_func_mapping mapping0_exportbundle; michael@0: michael@0: const vorbis_func_floor *const _floor_P[]={ michael@0: &floor0_exportbundle, michael@0: &floor1_exportbundle, michael@0: }; michael@0: michael@0: const vorbis_func_residue *const _residue_P[]={ michael@0: &residue0_exportbundle, michael@0: &residue1_exportbundle, michael@0: &residue2_exportbundle, michael@0: }; michael@0: michael@0: const vorbis_func_mapping *const _mapping_P[]={ michael@0: &mapping0_exportbundle, michael@0: };