~ubuntu-dev/mplayer/ubuntu-feisty

« back to all changes in this revision

Viewing changes to tremor/registry.h

  • Committer: Reinhard Tartler
  • Date: 2006-07-08 08:45:33 UTC
  • Revision ID: siretart@tauware.de-20060708084533-dbc155bde7122e78
imported mplayer_0.99+1.0pre7try2+cvs20060117

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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