![]() |
![]() |
The IMGDEC image decoder interface. Provides the user an interface to create and interact with XDAIS algorithms that are compliant with the XDM-defined IIMGDEC image decoder interface.
#include <ti/xdais/dm/xdm.h>#include <ti/xdais/dm/iimgdec.h>#include <ti/sdo/ce/Engine.h>#include <ti/sdo/ce/visa.h>#include <ti/sdo/ce/skel.h>
Go to the source code of this file.
Data Structures | |
| struct | IIMGDEC_CodecClassConfig |
| Definition of IIMGDEC codec class configurable parameters. More... | |
Defines | |
| #define | IMGDEC_EOK IIMGDEC_EOK |
| #define | IMGDEC_EFAIL IIMGDEC_EFAIL |
| #define | IMGDEC_ERUNTIME IIMGDEC_ERUNTIME |
| #define | IMGDEC_ETIMEOUT VISA_ETIMEOUT |
| #define | IMGDEC_FOREVER VISA_FOREVER |
Typedefs | |
| typedef IIMGDEC_Status | IMGDEC_Status |
| typedef VISA_Handle | IMGDEC_Handle |
| Opaque handle to a IMGDEC codec. | |
| typedef struct IIMGDEC_Params | IMGDEC_Params |
| This structure defines the parameters necessary to create an instance of a image decoder object. | |
| typedef IIMGDEC_InArgs | IMGDEC_InArgs |
| typedef IIMGDEC_OutArgs | IMGDEC_OutArgs |
| typedef IIMGDEC_Cmd | IMGDEC_Cmd |
| typedef IIMGDEC_DynamicParams | IMGDEC_DynamicParams |
Functions | |
| IMGDEC_Handle | IMGDEC_create (Engine_Handle e, String name, IMGDEC_Params *params) |
| Create an instance of an image decoder algorithm. | |
| Int32 | IMGDEC_process (IMGDEC_Handle handle, XDM_BufDesc *inBufs, XDM_BufDesc *outBufs, IMGDEC_InArgs *inArgs, IMGDEC_OutArgs *outArgs) |
| Execute the process() method in this instance of a image decoder algorithm. | |
| Int32 | IMGDEC_control (IMGDEC_Handle handle, IMGDEC_Cmd id, IMGDEC_DynamicParams *params, IMGDEC_Status *status) |
| Execute the control() method in this instance of an image decoder algorithm. | |
| Void | IMGDEC_delete (IMGDEC_Handle handle) |
| Delete the instance of a image decoder algorithm. | |
| XDAS_Int32 | IMGDEC_processAsync (IMGDEC_Handle handle, XDM_BufDesc *inBufs, XDM_BufDesc *outBufs, IMGDEC_InArgs *inArgs, IMGDEC_OutArgs *outArgs) |
| Perform asynchronous submission to this instance of an image decoder algorithm. | |
| XDAS_Int32 | IMGDEC_processWait (IMGDEC_Handle handle, XDM_BufDesc *inBufs, XDM_BufDesc *outBufs, IMGDEC_InArgs *inArgs, IMGDEC_OutArgs *outArgs, UInt timeout) |
| Wait for a return message from a previous invocation of IMGDEC_processAsync() in this instance of an image decoder algorithm. | |