/********************************************************************1* *2* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *3* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *4* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *5* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *6* *7* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *8* by the Xiph.Org Foundation https://xiph.org/ *9* *10********************************************************************1112function: registry for time, floor, res backends and channel mappings1314********************************************************************/1516#ifndef _V_REG_H_17#define _V_REG_H_1819#define VI_TRANSFORMB 120#define VI_WINDOWB 121#define VI_TIMEB 122#define VI_FLOORB 223#define VI_RESB 324#define VI_MAPB 12526extern const vorbis_func_floor *const _floor_P[];27extern const vorbis_func_residue *const _residue_P[];28extern const vorbis_func_mapping *const _mapping_P[];2930#endif313233