comparison tremor/registry.h @ 14280:8631a3803289

internal Tremor decoder for Ogg/Vorbis
author henry
date Thu, 30 Dec 2004 12:11:32 +0000
parents
children cd6b211be811
comparison
equal deleted inserted replaced
14279:b4b202086260 14280:8631a3803289
1 /********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
4 * *
5 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
6 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
7 * ALL REDISTRIBUTION RIGHTS RESERVED. *
8 * *
9 ********************************************************************
10
11 function: registry for time, floor, res backends and channel mappings
12
13 ********************************************************************/
14
15 #ifndef _V_REG_H_
16 #define _V_REG_H_
17
18 #define VI_TRANSFORMB 1
19 #define VI_WINDOWB 1
20 #define VI_TIMEB 1
21 #define VI_FLOORB 2
22 #define VI_RESB 3
23 #define VI_MAPB 1
24
25 #include "backends.h"
26
27 #if defined(_WIN32) && defined(VORBISDLL_IMPORT)
28 # define EXTERN __declspec(dllimport) extern
29 #else
30 # define EXTERN extern
31 #endif
32
33 EXTERN vorbis_func_floor *_floor_P[];
34 EXTERN vorbis_func_residue *_residue_P[];
35 EXTERN vorbis_func_mapping *_mapping_P[];
36
37 #endif