init_uvlc.h

来自「DPCM编码的联合信源信道译码」· C头文件 代码 · 共 38 行

H
38
字号
#ifndef	_UVLC_H_
#define	_UVLC_H_

#include <stdio.h>

typedef struct Str_sys_UVLC_{
	int		*bpl;
	int		**code;
	int		alphabet_size;
	int		maxin;
	int		BESTC;
	double	**cost_t;
	double	**cost_o;
	double	**cost_n;
	float	**hist1;
    int		*word;
	int		**used_bits_new;
	int		**used_bits_old;
	int		****history;
	int  	*received;
	int		*decoded;
	int		*encoded;
	int		*decoded_out;
	int		*dpcmsym;
	int		sym_error;
	int  sum_symbol_error;
	double	sym_ber;
	int		*remain;


}Str_sys_UVLC;

extern Str_sys_UVLC sys_UVLC;

void Init_UVLC();

#endif

⌨️ 快捷键说明

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