lifting.h

来自「JPEG2000实现的源码」· C头文件 代码 · 共 24 行

H
24
字号
/*****************************************************************************/
/* Author: Brendt Wohlberg (Los Alamos National Laboratory).                 */
/* Copyright 2001 University of California.                                  */
/*****************************************************************************/

#ifndef _LIFTING_H
#define _LIFTING_H

#include "FilterBank.h"

int lift_fwd_irr(const FltBankIrr* fltbank, const float* input,
		 int input_offset, int input_length, float* output);

int lift_inv_irr(const FltBankIrr* fltbank, const float* input,
		 int input_offset, int input_length, float* output);

int lift_fwd_rev(const FltBankRev* fltbank, const int* input,
		 int input_offset, int input_length, int* output);

int lift_inv_rev(const FltBankRev* fltbank, const int* input,
		 int input_offset, int input_length, int* output);

#endif

⌨️ 快捷键说明

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