rotate_ti_priv.h
来自「TI公司的算法标准 Framework5的源代码」· C头文件 代码 · 共 49 行
H
49 行
/*
* Copyright 2002 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
* granted through contract.
*
*/
/* "@(#) RF5_IEK 2.00.02 12-11-02 (swat-c19)" */
/*
* ======== rotate_ti_priv.h ========
* Internal vendor specific (TI) interface header for ROTATE
* algorithm. Only the implementation source files include
* this header; this header is not shipped as part of the
* algorithm.
*
* This header contains declarations that are specific to
* this implementation and which do not need to be exposed
* in order for an application to use the ROTATE algorithm.
*/
#ifndef ROTATE_TI_PRIV_
#define ROTATE_TI_PRIV_
#include <std.h>
#include <ialg.h>
#include "irotate.h"
#include "rotate_ti.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* ======== ROTATE_TI_Obj ========
*/
typedef struct ROTATE_TI_Obj {
IALG_Obj alg; /* MUST be first field of all ROTATE objs */
Bool reverseImage; /* If TRUE, reverse the luma component. */
} ROTATE_TI_Obj;
#ifdef __cplusplus
}
#endif /* extern "C" */
#endif /* ROTATE_TI_PRIV_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?