fix
[mplayer/glamo.git] / tremor / registry.h
blobc15385aa870b5f24314bfa767936171f1032a9d8
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 ********************************************************************
11 function: registry for time, floor, res backends and channel mappings
13 ********************************************************************/
15 #ifndef _V_REG_H_
16 #define _V_REG_H_
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
25 #include "backends.h"
27 #if defined(_WIN32) && defined(VORBISDLL_IMPORT)
28 # define EXTERN __declspec(dllimport) extern
29 #else
30 # define EXTERN extern
31 #endif
33 EXTERN vorbis_func_floor *_floor_P[];
34 EXTERN vorbis_func_residue *_residue_P[];
35 EXTERN vorbis_func_mapping *_mapping_P[];
37 #endif