omxippp_momentgetstatesize.c

来自「The OpenMAX DL (Development Layer) APIs 」· C语言 代码 · 共 52 行

C
52
字号
/** * *  * 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 + =
减小字号Ctrl + -
显示快捷键?