VirtualBox

source: vbox/trunk/src/libs/libvorbis-1.3.7/lib/registry.c@ 97459

Last change on this file since 97459 was 96468, checked in by vboxsync, 2 years ago

libs/libvorbis-1.3.7: Re-exporting, hopefully this time everything is there. bugref:10275

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-2009 *
9 * by the Xiph.Org Foundation https://xiph.org/ *
10 * *
11 ********************************************************************
12
13 function: registry for time, floor, res backends and channel mappings
14
15 ********************************************************************/
16
17#include "vorbis/codec.h"
18#include "codec_internal.h"
19#include "registry.h"
20#include "misc.h"
21/* seems like major overkill now; the backend numbers will grow into
22 the infrastructure soon enough */
23
24extern const vorbis_func_floor floor0_exportbundle;
25extern const vorbis_func_floor floor1_exportbundle;
26extern const vorbis_func_residue residue0_exportbundle;
27extern const vorbis_func_residue residue1_exportbundle;
28extern const vorbis_func_residue residue2_exportbundle;
29extern const vorbis_func_mapping mapping0_exportbundle;
30
31const vorbis_func_floor *const _floor_P[]={
32 &floor0_exportbundle,
33 &floor1_exportbundle,
34};
35
36const vorbis_func_residue *const _residue_P[]={
37 &residue0_exportbundle,
38 &residue1_exportbundle,
39 &residue2_exportbundle,
40};
41
42const vorbis_func_mapping *const _mapping_P[]={
43 &mapping0_exportbundle,
44};
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette