algmin.h

来自「基于DM642的视频回放源码」· C头文件 代码 · 共 53 行

H
53
字号
/*
 *  Copyright 2003 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.
 *  
 */
/* "@(#) ReferenceFrameworks 2.20.00.08 07-18-03 (swat-f02)" */
/*
 *  ======== algmin.h ========
 */
#ifndef ALGMIN_
#define ALGMIN_

#include <std.h>

#include <ialg.h>

#ifdef __cplusplus
extern "C" {
#endif


/* Maximum number of memTab descriptors returned by an algorithm */
#define ALGMIN_MAXMEMRECS      16


/* Instantiate a 'static' XDAIS algorithm */
extern IALG_Handle ALGMIN_new(IALG_Fxns *fxns, IALG_Params *params, 
        Char *algChanBufs[], SmUns numAlgChanBufs);

/* Initialize scratch memory buffers before processing */
extern Void ALGMIN_activate(IALG_Handle alg);

/* Save all persistent data to non-scratch memory */    
extern Void ALGMIN_deactivate(IALG_Handle alg);
  
/* ALGMIN Module Initialization */
extern Void ALGMIN_init(Void);

/* ALGMIN Module Finalization */
extern Void ALGMIN_exit(Void);


#ifdef __cplusplus
}
#endif /* extern "C" */

#endif  /* ALGMIN_ */



⌨️ 快捷键说明

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