📄 omxippp_momentgetstatesize.c
字号:
/** * * * File Name: omxIPPP_MomentGetStateSize.c * OpenMAX DL: v1.0.2 * Revision: 10586 * Date: Wednesday, March 5, 2008 * * (c) Copyright 2007-2008 ARM Limited. All Rights Reserved. * * * * Description : Image Statistics Routine - Initializes the Moment state structure. * */#include "omxtypes.h"#include "armOMX.h"#include "omxIP.h"#include "armCOMM.h"#include "armIP.h"/** * Function: omxIPPP_MomentGetStateSize (4.3.1.2.1) * * Description: * Get size of state structure in bytes; returned in *pSize. * * Output Arguments: * * pSize - pointer to the size of structure * * Return Value: * * OMX_Sts_NoErr - no errors detected * OMX_Sts_BadArgErr - bad arguments detected; at least one of the * following is true: * - pSize is NULL * */OMXResult omxIPPP_MomentGetStateSize( OMX_INT* pSize ){ armRetArgErrIf(!pSize, OMX_Sts_BadArgErr); *pSize = (OMX_INT) sizeof(ARMIPPP_MomentState); return OMX_Sts_NoErr;}/* End of file */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -