资源简介
微信小程序红包源代码,有微信小程序前端和后台的代码。公司用的
代码片段和文件信息
/***********************************************************************
Copyright (c) 2006-2012 Skype Limited. All rights reserved.
Redistribution and use in source and binary forms with or without
modification (subject to the limitations in the disclaimer below)
are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice
this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- Neither the name of Skype Limited nor the names of specific
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY‘S PATENT RIGHTS ARE GRANTED
BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS ‘‘AS IS‘‘ AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING
BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT
INCIDENTAL SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT
NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE DATA OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***********************************************************************/
/* Conversion between prediction filter coefficients and NLSFs */
/* Requires the order to be an even number */
/* A piecewise linear approximation maps LSF <-> cos(LSF) */
/* Therefore the result is not accurate NLSFs but the two */
/* function are accurate inverses of each other */
#include “SKP_Silk_SigProc_FIX.h“
/* Number of binary divisions */
#define BIN_DIV_STEPS_A2NLSF_FIX 3 /* must be no higher than 16 - log2( LSF_COS_TAB_SZ_FIX ) */
#define QPoly 16
#define MAX_ITERATIONS_A2NLSF_FIX 30
/* Flag for using 2x as many cosine sampling points reduces the risk of missing a root */
#define OVERSAMPLE_COSINE_TABLE 0
/* Helper function for A2NLSF(..) */
/* Transforms polynomials from cos(n*f) to cos(f)^n */
SKP_INLINE void SKP_Silk_A2NLSF_trans_poly(
SKP_int32 *p /* I/O Polynomial */
const SKP_int dd /* I Polynomial order (= filter order / 2 ) */
)
{
SKP_int k n;
for( k = 2; k <= dd; k++ ) {
for( n = dd; n > k; n-- ) {
p[ n - 2 ] -= p[ n ];
}
p[ k - 2 ] -= SKP_LSHIFT
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4262 2018-02-04 11:55 微信小程序红包源代码\前端\app.js
文件 1211 2018-01-02 14:08 微信小程序红包源代码\前端\app.json
文件 1255 2017-12-20 10:10 微信小程序红包源代码\前端\app.wxss
文件 1039 2017-12-12 15:48 微信小程序红包源代码\前端\images\buttom-down.png
文件 1361 2017-12-12 15:47 微信小程序红包源代码\前端\images\choose.png
文件 1375 2017-12-12 15:56 微信小程序红包源代码\前端\images\click-play-record.png
文件 1341 2017-12-19 15:53 微信小程序红包源代码\前端\images\close.png
文件 1896 2017-12-12 16:00 微信小程序红包源代码\前端\images\customer-service.png
文件 492 2017-12-12 12:09 微信小程序红包源代码\前端\images\customer.png
文件 879 2017-12-12 12:09 微信小程序红包源代码\前端\images\icon-wh.png
文件 1346 2017-12-12 15:50 微信小程序红包源代码\前端\images\maxmoney-ico.png
文件 3671 2017-12-12 18:03 微信小程序红包源代码\前端\images\me-on.png
文件 3663 2017-12-12 18:02 微信小程序红包源代码\前端\images\me.png
文件 1390 2017-12-12 20:01 微信小程序红包源代码\前端\images\microphone.png
文件 83496 2017-12-15 21:10 微信小程序红包源代码\前端\images\Noads.png
文件 1419 2017-12-12 20:05 微信小程序红包源代码\前端\images\pic.png
文件 6414 2017-12-12 12:09 微信小程序红包源代码\前端\images\play-icon.gif
文件 38603 2017-12-16 16:57 微信小程序红包源代码\前端\images\ptgg.png
文件 1680 2017-12-12 16:00 微信小程序红包源代码\前端\images\question.png
文件 1568 2017-12-12 16:00 微信小程序红包源代码\前端\images\record.png
文件 3893 2017-12-12 18:02 微信小程序红包源代码\前端\images\red-packet-on.png
文件 3961 2017-12-12 18:03 微信小程序红包源代码\前端\images\red-packet.png
文件 774 2017-12-12 12:09 微信小程序红包源代码\前端\images\redtips.png
文件 1266 2017-12-15 09:53 微信小程序红包源代码\前端\images\right-arrows.png
文件 3884 2017-12-12 18:03 微信小程序红包源代码\前端\images\square-on.png
文件 2217 2017-12-12 15:46 微信小程序红包源代码\前端\images\square-redpacket-ig.png
文件 3884 2017-12-12 18:04 微信小程序红包源代码\前端\images\square.png
文件 3314 2017-12-13 15:21 微信小程序红包源代码\前端\images\transpond-ico.png
文件 3381 2017-12-28 20:57 微信小程序红包源代码\前端\images\unhappy.png
文件 1270 2017-12-12 15:21 微信小程序红包源代码\前端\images\updown-arrows.png
............此处省略2967个文件信息
- 上一篇:Lean Analytics
- 下一篇:WinDbg 6.11.0001.404
相关资源
- 校园跑腿后台+微信小程序.zip
- 微信小程序源码-合集6
- 2018淘宝客微信小程序前端+后端源码开
- 36个最新微信小程序源码
- 小型企业网站源码
- 从零开始学微信小程序开发
- 区块链交易所数字货币交易平台多交
- DSmall多商户B2B2C开源商城源码 3.1.1
- 淘宝客开放api使用完整demo
- 微信小程序商城前端
- net开发的微信小程序,net开发的微信
- 微商城小程序 前台+后台 源码
- 微信小程序实战入门内含完整解析.
- 最新手机号段归属地数据库(2019年
- tp5通用后台.zip
- 微信小程序:开发入门及案例详解
- 试客系统 试用网站源码 免费试用程序
- 客家醉美民宿酒店系统v4.4.5运营版本
- 转转杀鱼带后台
- 微信小程序开发常用的 1600 个 PNG 图标
- 微信小程序:开发入门及案例详解.李
- 微信小程序-支付
- 微信小程序:商城
- 2019新出粉色烂漫Thinkphp响应式自动采
- 50个微信小程序模板.zip
- 100多套微信小程序的源码带预览图
- MVC个人博客前后台(附过程手册)
- 微信小程序源码 学习可用
- 微信小程序实现生成海报(源码)
- jpgraph-4.0.2
评论
共有 条评论