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

📄 bitrdec.h

📁 speech echo cancellation library
💻 H
字号:
#if !defined(_bitrenc_H)# define _bitredec_H (1)# include "bitree.h"/*Decoder-specific functions for Binary Indexed Trees.  See bitree.h for more detailed documentation.*//*Gets the symbol that corresponds with a given frequency.  This is an omnibus function that also computes the cumulative frequency of   the symbols before the one returned, and updates the count of that symbol by   the given amount.  _sz:    The size of the table.  _split: The largest power of two less than OR EQUAL to the table size.  _freq:  A frequency in the range of one of the symbols in the alphabet.  _fl:    Returns the sum of the frequencies of the symbols less than that of           the returned symbol.  _val:   The amount to add to returned symbol's frequency.  Return: The smallest symbol whose cumulative frequency is greater than freq.*/int ec_bitree_find_and_update(unsigned *_this,int _sz,int _split, unsigned _freq,unsigned *_fl,int _val);#endif

⌨️ 快捷键说明

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