media/libtremor/lib/registry.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /********************************************************************
michael@0 2 * *
michael@0 3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
michael@0 4 * *
michael@0 5 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
michael@0 6 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
michael@0 7 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
michael@0 8 * *
michael@0 9 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
michael@0 10 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
michael@0 11 * *
michael@0 12 ********************************************************************
michael@0 13
michael@0 14 function: registry for time, floor, res backends and channel mappings
michael@0 15
michael@0 16 ********************************************************************/
michael@0 17
michael@0 18 #ifndef _V_REG_H_
michael@0 19 #define _V_REG_H_
michael@0 20
michael@0 21 #define VI_TRANSFORMB 1
michael@0 22 #define VI_WINDOWB 1
michael@0 23 #define VI_TIMEB 1
michael@0 24 #define VI_FLOORB 2
michael@0 25 #define VI_RESB 3
michael@0 26 #define VI_MAPB 1
michael@0 27
michael@0 28 #include "backends.h"
michael@0 29
michael@0 30 #if defined(_WIN32) && defined(VORBISDLL_IMPORT)
michael@0 31 # define EXTERN __declspec(dllimport) extern
michael@0 32 #else
michael@0 33 # define EXTERN extern
michael@0 34 #endif
michael@0 35
michael@0 36 EXTERN vorbis_func_floor *_floor_P[];
michael@0 37 EXTERN vorbis_func_residue *_residue_P[];
michael@0 38 EXTERN vorbis_func_mapping *_mapping_P[];
michael@0 39
michael@0 40 #endif

mercurial