annotate src/libvorbis-1.3.3/lib/registry.h @ 36:55ece8862b6d

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