📄 qlsf.h
字号:
/* ******************************************************************************** * * Include file for qlsf and iqlsf programs. * * @(#)qlsf.h 1.1 10/6/87 ESI * ******************************************************************************** *//* * Defines for indexes to power quantization tables. */#define FINE 0 /* 6-bit quantization */#define COARSE 1 /* 1.5 dB quantization *//* * Data structure for quantization table. */struct qtable{ float enc; /* Upper limit on encoding range */ float dec; /* Value to decode */ int code; /* Bit pattern (quantization index) */};/* * Data structure for pointer to a table, and length of the table. */struct quantable{ struct qtable *tab; /* Pointer to table */ int nval; /* Number of entries in the table */};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -