sad.h

来自「这是G.723和G.729的音频编解码的源代码」· C头文件 代码 · 共 18 行

H
18
字号

class SAD
{protected:
	DBitStream *InputStream;
	int low, high, code_value, bit;
	int SADlength, sacindex, cum, zerorun;

	_inline void bit_out_psc_layer();
	RunCoef vlc_word_decode(int symbol_word, int *last);
	RunCoef Decode_Escape_Char(BOOL intra, int *last);
	int DecodeTCoef(int position,BOOL intra);
 public:
	int decode_a_symbol(const int *cumul_freq);
	void DecodeReset( );
	SAD(DBitStream *InStream);
	int GetIntraBlock(short *QCoeff);
	int GetInterBlock(short *QCoeff);
};

⌨️ 快捷键说明

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