Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/libvorbis-1.2.0/lib/registry.c @ 16

Last change on this file since 16 was 16, checked in by landauf, 16 years ago

added libvorbis

File size: 1.7 KB
Line 
1/********************************************************************
2 *                                                                  *
3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
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 SOURCE CODE IS (C) COPYRIGHT 1994-2007             *
9 * by the Xiph.Org Foundation http://www.xiph.org/                  *
10 *                                                                  *
11 ********************************************************************
12
13 function: registry for time, floor, res backends and channel mappings
14 last mod: $Id: registry.c 13293 2007-07-24 00:09:47Z xiphmont $
15
16 ********************************************************************/
17
18#include "vorbis/codec.h"
19#include "codec_internal.h"
20#include "registry.h"
21#include "misc.h"
22/* seems like major overkill now; the backend numbers will grow into
23   the infrastructure soon enough */
24
25extern vorbis_func_floor     floor0_exportbundle;
26extern vorbis_func_floor     floor1_exportbundle;
27extern vorbis_func_residue   residue0_exportbundle;
28extern vorbis_func_residue   residue1_exportbundle;
29extern vorbis_func_residue   residue2_exportbundle;
30extern vorbis_func_mapping   mapping0_exportbundle;
31
32vorbis_func_floor     *_floor_P[]={
33  &floor0_exportbundle,
34  &floor1_exportbundle,
35};
36
37vorbis_func_residue   *_residue_P[]={
38  &residue0_exportbundle,
39  &residue1_exportbundle,
40  &residue2_exportbundle,
41};
42
43vorbis_func_mapping   *_mapping_P[]={
44  &mapping0_exportbundle,
45};
46
Note: See TracBrowser for help on using the repository browser.