![]() |
![]() |
|
Codec Engine Application Programming Interface (API)
ce-w08
|
The "universal" algorithm interface. Provides the user an interface to create and interact with XDAIS algorithms that are compliant with the XDM IUNIVERSAL interface.
#include <ti/xdais/dm/xdm.h>#include <ti/xdais/dm/iuniversal.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 | IUNIVERSAL_CodecClassConfig |
| Definition of IUNIVERSAL codec class configurable parameters. More... | |
Macros | |
| #define | UNIVERSAL_EOK IUNIVERSAL_EOK |
| | |
| #define | UNIVERSAL_EFAIL IUNIVERSAL_EFAIL |
| | |
| #define | UNIVERSAL_EUNSUPPORTED IUNIVERSAL_EUNSUPPORTED |
| | |
| #define | UNIVERSAL_ETIMEOUT VISA_ETIMEOUT |
| Special value for timeout parameter indicating never timeout. | |
| #define | UNIVERSAL_FOREVER VISA_FOREVER |
| #define | UNIVERSAL_STUBSNAME "UNIVERSAL_STUBS" |
| Name of stub functions. Use this name when registering the UNIVERSAL_STUBS functions with Engine_addStubFxns. | |
| #define | UNIVERSAL_VISATYPE "ti.sdo.ce.universal.IUNIVERSAL" |
| The VISA type. | |
Typedefs | |
| typedef VISA_Handle | UNIVERSAL_Handle |
| Opaque handle to a UNIVERSAL codec. | |
| typedef struct IUNIVERSAL_Params | UNIVERSAL_Params |
| This structure defines the parameters necessary to create an instance of a "universal" algorithm. | |
| typedef IUNIVERSAL_InArgs | UNIVERSAL_InArgs |
| Defines the input arguments for all IUNIVERSAL instance process function. | |
| typedef IUNIVERSAL_OutArgs | UNIVERSAL_OutArgs |
| Defines the run time output arguments for all IUNIVERSAL instance objects. | |
| typedef IUNIVERSAL_Cmd | UNIVERSAL_Cmd |
| Defines the control commands for the IUNIVERSAL module. | |
| typedef IUNIVERSAL_Status | UNIVERSAL_Status |
| Defines instance status parameters (read-only). | |
| typedef IUNIVERSAL_DynamicParams | UNIVERSAL_DynamicParams |
| This structure defines the codec parameters that can be modified after creation via control() calls. | |
| typedef struct IUNIVERSAL_CodecClassConfig | IUNIVERSAL_CodecClassConfig |
| Definition of IUNIVERSAL codec class configurable parameters. | |
Functions | |
| Int32 | UNIVERSAL_control (UNIVERSAL_Handle handle, UNIVERSAL_Cmd id, UNIVERSAL_DynamicParams *params, UNIVERSAL_Status *status) |
| Execute the control() method in this instance of a "universal" algorithm. | |
| UNIVERSAL_Handle | UNIVERSAL_create (Engine_Handle e, String name, UNIVERSAL_Params *params) |
| Create an instance of a universal algorithm. | |
| Void | UNIVERSAL_delete (UNIVERSAL_Handle handle) |
| Delete the instance of a universal algorithm. | |
| Int32 | UNIVERSAL_process (UNIVERSAL_Handle handle, XDM1_BufDesc *inBufs, XDM1_BufDesc *outBufs, XDM1_BufDesc *inOutBufs, UNIVERSAL_InArgs *inArgs, UNIVERSAL_OutArgs *outArgs) |
| Execute the process() method in this instance of a universal algorithm. | |
| XDAS_Int32 | UNIVERSAL_processAsync (UNIVERSAL_Handle handle, XDM1_BufDesc *inBufs, XDM1_BufDesc *outBufs, XDM1_BufDesc *inOutBufs, IUNIVERSAL_InArgs *inArgs, IUNIVERSAL_OutArgs *outArgs) |
| Perform asynchronous submission to this instance of a universal algorithm. | |
| XDAS_Int32 | UNIVERSAL_processWait (UNIVERSAL_Handle handle, XDM1_BufDesc *inBufs, XDM1_BufDesc *outBufs, XDM1_BufDesc *inOutBufs, IUNIVERSAL_InArgs *inArgs, IUNIVERSAL_OutArgs *outArgs, UInt timeout) |
| Wait for a return message from a previous invocation of UNIVERSAL_processAsync() in this instance of a universal algorithm. | |