summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/registry.h
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2005-02-17 09:08:18 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2005-02-17 09:08:18 +0000
commit99d2599b79649fd5a7df13b4e43383c428cc5657 (patch)
tree5512330f8ad66d5bae14a0ed990601e3bf29f520 /apps/codecs/Tremor/registry.h
parente3e116d3c732c99d95fe11f11726ed8a5b587fc4 (diff)
downloadrockbox-99d2599b79649fd5a7df13b4e43383c428cc5657.tar.gz
rockbox-99d2599b79649fd5a7df13b4e43383c428cc5657.zip
Initial commit of the the Ogg Vorbis 'Tremor' integer playback codec
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5996 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Tremor/registry.h')
-rw-r--r--apps/codecs/Tremor/registry.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/apps/codecs/Tremor/registry.h b/apps/codecs/Tremor/registry.h
new file mode 100644
index 0000000000..2bc8068f69
--- /dev/null
+++ b/apps/codecs/Tremor/registry.h
@@ -0,0 +1,40 @@
1/********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
4 * *
5 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
6 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
7 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
8 * *
9 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
10 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
11 * *
12 ********************************************************************
13
14 function: registry for time, floor, res backends and channel mappings
15
16 ********************************************************************/
17
18#ifndef _V_REG_H_
19#define _V_REG_H_
20
21#define VI_TRANSFORMB 1
22#define VI_WINDOWB 1
23#define VI_TIMEB 1
24#define VI_FLOORB 2
25#define VI_RESB 3
26#define VI_MAPB 1
27
28#include "backends.h"
29
30#if defined(_WIN32) && defined(VORBISDLL_IMPORT)
31# define EXTERN __declspec(dllimport) extern
32#else
33# define EXTERN extern
34#endif
35
36EXTERN vorbis_func_floor *_floor_P[];
37EXTERN vorbis_func_residue *_residue_P[];
38EXTERN vorbis_func_mapping *_mapping_P[];
39
40#endif