registry.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /********************************************************************
  2.  *                                                                  *
  3.  * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE.   *
  4.  *                                                                  *
  5.  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
  6.  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
  7.  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
  8.  *                                                                  *
  9.  * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002    *
  10.  * BY THE Xiph.Org FOUNDATION http://www.xiph.org/                  *
  11.  *                                                                  *
  12.  ********************************************************************
  13.  function: registry for floor, res backends and channel mappings
  14.  ********************************************************************/
  15. #include "ivorbiscodec.h"
  16. #include "codec_internal.h"
  17. #include "registry.h"
  18. #include "misc.h"
  19. /* seems like major overkill now; the backend numbers will grow into
  20.    the infrastructure soon enough */
  21. extern const vorbis_func_floor     floor0_exportbundle;
  22. extern const vorbis_func_floor     floor1_exportbundle;
  23. extern const vorbis_func_residue   residue0_exportbundle;
  24. extern const vorbis_func_residue   residue1_exportbundle;
  25. extern const vorbis_func_residue   residue2_exportbundle;
  26. extern const vorbis_func_mapping   mapping0_exportbundle;
  27. const vorbis_func_floor     *const _floor_P[]={
  28.   &floor0_exportbundle,
  29.   &floor1_exportbundle,
  30. };
  31. const vorbis_func_residue   *const _residue_P[]={
  32.   &residue0_exportbundle,
  33.   &residue1_exportbundle,
  34.   &residue2_exportbundle,
  35. };
  36. const vorbis_func_mapping   *const _mapping_P[]={
  37.   &mapping0_exportbundle,
  38. };