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

📄 probdec.h

📁 speech echo cancellation library
💻 H
字号:
#if !defined(_probdec_H)# define _probdec_H (1)# include "probmod.h"# include "entdec.h"/*Decodes a single symbol using the given probability model and entropy   decoder.  Return: The decoded symbol.*/int ec_probmod_read(ec_probmod *_this,ec_dec *_dec);/*Decodes a single symbol using the given probability model and entropy   decoder, restricted to a given subrange of the available symbols.  This effectively sets the frequency counts of all the symbols outside this   range to zero, decodes the symbol, then restores the counts to their   original values, and updates the model.  _lo: The first legal symbol to decode.  _hi: One greater than the last legal symbol to decode.       This must be greater than _lo.  Return: The decoded symbol.*/int ec_probmod_read_range(ec_probmod *_this,ec_dec *_dec,int _lo,int _hi);#endif

⌨️ 快捷键说明

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