dbf-halloween2015

annotate libs/vorbis/registry.h @ 1:c3f5c32cb210

barfed all the libraries in the source tree to make porting easier
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:36:56 +0200
parents
children
rev   line source
nuclear@1 1 /********************************************************************
nuclear@1 2 * *
nuclear@1 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
nuclear@1 4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
nuclear@1 5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
nuclear@1 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
nuclear@1 7 * *
nuclear@1 8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
nuclear@1 9 * by the Xiph.Org Foundation http://www.xiph.org/ *
nuclear@1 10 * *
nuclear@1 11 ********************************************************************
nuclear@1 12
nuclear@1 13 function: registry for time, floor, res backends and channel mappings
nuclear@1 14 last mod: $Id: registry.h 15531 2008-11-24 23:50:06Z xiphmont $
nuclear@1 15
nuclear@1 16 ********************************************************************/
nuclear@1 17
nuclear@1 18 #ifndef _V_REG_H_
nuclear@1 19 #define _V_REG_H_
nuclear@1 20
nuclear@1 21 #define VI_TRANSFORMB 1
nuclear@1 22 #define VI_WINDOWB 1
nuclear@1 23 #define VI_TIMEB 1
nuclear@1 24 #define VI_FLOORB 2
nuclear@1 25 #define VI_RESB 3
nuclear@1 26 #define VI_MAPB 1
nuclear@1 27
nuclear@1 28 extern const vorbis_func_floor *const _floor_P[];
nuclear@1 29 extern const vorbis_func_residue *const _residue_P[];
nuclear@1 30 extern const vorbis_func_mapping *const _mapping_P[];
nuclear@1 31
nuclear@1 32 #endif