annotate src/libvorbis-1.3.3/lib/registry.h @ 168:ceec0dd9ec9c

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 07 Feb 2020 11:51:13 +0000
parents 98c1576536ae
children
rev   line source
cannam@86 1 /********************************************************************
cannam@86 2 * *
cannam@86 3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
cannam@86 4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
cannam@86 5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
cannam@86 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
cannam@86 7 * *
cannam@86 8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
cannam@86 9 * by the Xiph.Org Foundation http://www.xiph.org/ *
cannam@86 10 * *
cannam@86 11 ********************************************************************
cannam@86 12
cannam@86 13 function: registry for time, floor, res backends and channel mappings
cannam@86 14 last mod: $Id: registry.h 15531 2008-11-24 23:50:06Z xiphmont $
cannam@86 15
cannam@86 16 ********************************************************************/
cannam@86 17
cannam@86 18 #ifndef _V_REG_H_
cannam@86 19 #define _V_REG_H_
cannam@86 20
cannam@86 21 #define VI_TRANSFORMB 1
cannam@86 22 #define VI_WINDOWB 1
cannam@86 23 #define VI_TIMEB 1
cannam@86 24 #define VI_FLOORB 2
cannam@86 25 #define VI_RESB 3
cannam@86 26 #define VI_MAPB 1
cannam@86 27
cannam@86 28 extern const vorbis_func_floor *const _floor_P[];
cannam@86 29 extern const vorbis_func_residue *const _residue_P[];
cannam@86 30 extern const vorbis_func_mapping *const _mapping_P[];
cannam@86 31
cannam@86 32 #endif