⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 registry.c

📁 大名鼎鼎的CE下播放软件,TCPPMP的源代码!!!2410下可以流畅的解QVGA的H264,MPEG4等格式.
💻 C
字号:
/******************************************************************** *                                                                  * * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE.   * *                                                                  * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     * * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       * *                                                                  * * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002    * * BY THE Xiph.Org FOUNDATION http://www.xiph.org/                  * *                                                                  * ******************************************************************** function: registry for floor, res backends and channel mappings ********************************************************************/#include "ivorbiscodec.h"#include "codec_internal.h"#include "registry.h"#include "misc.h"/* seems like major overkill now; the backend numbers will grow into   the infrastructure soon enough */extern const vorbis_func_floor     floor0_exportbundle;extern const vorbis_func_floor     floor1_exportbundle;extern const vorbis_func_residue   residue0_exportbundle;extern const vorbis_func_residue   residue1_exportbundle;extern const vorbis_func_residue   residue2_exportbundle;extern const vorbis_func_mapping   mapping0_exportbundle;const vorbis_func_floor     *const _floor_P[]={  &floor0_exportbundle,  &floor1_exportbundle,};const vorbis_func_residue   *const _residue_P[]={  &residue0_exportbundle,  &residue1_exportbundle,  &residue2_exportbundle,};const vorbis_func_mapping   *const _mapping_P[]={  &mapping0_exportbundle,};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -