Codec Engine Application Programming Interface (API)  ce-w08
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Fields
IAUDENC1_Fxns Struct Reference

Defines all of the operations on IAUDENC1 objects. More...

#include <iaudenc1.h>

Collaboration diagram for IAUDENC1_Fxns:
Collaboration graph

Data Fields

IALG_Fxns ialg
XDAS_Int32(* process )(IAUDENC1_Handle handle, XDM1_BufDesc *inBufs, XDM1_BufDesc *outBufs, IAUDENC1_InArgs *inArgs, IAUDENC1_OutArgs *outArgs)
 Basic audio encoding call.
XDAS_Int32(* control )(IAUDENC1_Handle handle, IAUDENC1_Cmd id, IAUDENC1_DynamicParams *params, IAUDENC1_Status *status)
 Control behaviour of an algorithm.

Detailed Description

Defines all of the operations on IAUDENC1 objects.


Field Documentation

IALG_Fxns IAUDENC1_Fxns::ialg

XDAIS algorithm interface.

                                  @sa      IALG_Fxns
XDAS_Int32(* IAUDENC1_Fxns::process)(IAUDENC1_Handle handle, XDM1_BufDesc *inBufs, XDM1_BufDesc *outBufs, IAUDENC1_InArgs *inArgs, IAUDENC1_OutArgs *outArgs)

Basic audio encoding call.

@param[in]  handle          Handle to an algorithm instance.
@param[in,out] inBufs       Input buffer descriptors.
@param[in,out] outBufs      Output buffer descriptors.  The algorithm
                            may modify the output buffer pointers.
@param[in]  inArgs          Input arguments.  This is a required
                            parameter.
@param[out] outArgs         Ouput results.  This is a required parameter.

@remarks    process() is a blocking call.  When process() returns, the
            algorithm's processing is complete.

@pre        @c handle must be a valid algorithm instance handle.

@pre        @c inArgs must not be NULL, and must point to a valid
            IAUDENC1_InArgs structure.

@pre        @c outArgs must not be NULL, and must point to a valid
            IAUDENC1_OutArgs structure.

@pre        @c inBufs must not be NULL, and must point to a valid
            XDM1_BufDesc structure.

@pre        @c inBufs->descs[0].buf must not be NULL, and must point to
            a valid buffer of data that is at least
            @c inBufs->descs[0].bufSize bytes in length.

@pre        @c outBufs must not be NULL, and must point to a valid
            XDM1_BufDesc structure.

@pre        @c outBufs->descs[0].buf must not be NULL, and must point to
            a valid buffer of data that is at least
            @c outBufs->descs[0].bufSize bytes in length.

@pre        The buffers in @c inBufs and @c outBufs are physically
            contiguous and owned by the calling application.

@post       The algorithm <b>must not</b> modify the contents of @c inArgs.

@post       The algorithm <b>must not</b> modify the contents of
            @c inBufs, with the exception of @c inBufs.descs[].accessMask.
            That is, the data and buffers pointed to by these parameters
            must be treated as read-only.

@post       The algorithm <b>must</b> appropriately set/clear the
            @c XDM1_BufDesc::descs[].accessMask field in both @c inBufs
            and @c outBufs.
            For example, if the algorithm only read from
            @c inBufs.descs[0].buf using the algorithm processor, it
            could utilize #XDM_SETACCESSMODE_READ to update the appropriate
            @c accessMask fields.
            The application <i>may</i> utilize these
            returned values to appropriately manage cache.

@post       The buffers in @c inBufs and @c outBufs are
            owned by the calling application.

@retval     IAUDENC1_EOK            \copybrief IAUDENC1_EOK

Success.

Return values:
IAUDENC1_EFAILGeneral failure. See IAUDENC1_Status::extendedError for more detailed further error conditions.
IAUDENC1_EUNSUPPORTEDRequest is unsupported.
XDAS_Int32(* IAUDENC1_Fxns::control)(IAUDENC1_Handle handle, IAUDENC1_Cmd id, IAUDENC1_DynamicParams *params, IAUDENC1_Status *status)

Control behaviour of an algorithm.

@param[in]  handle          Handle to an algorithm instance.
@param[in]  id              Command id.  See #XDM_CmdId.
@param[in]  params          Dynamic parameters.  This is a required
                            parameter.
@param[out] status          Output results.  This is a required parameter.

@pre        @c handle must be a valid algorithm instance handle.

@pre        @c params must not be NULL, and must point to a valid
            IAUDENC1_DynamicParams structure.

@pre        @c status must not be NULL, and must point to a valid
            IAUDENC1_Status structure.

@pre        If a buffer is provided in the @c status->data field,
            it must be physically contiguous and owned by the calling
            application.

@post       The algorithm <b>must not</b> modify the contents of @c params.
            That is, the data pointed to by this parameter must be
            treated as read-only.

@post       If a buffer was provided in the @c status->data field,
            it is owned by the calling application.

@retval     IAUDDEC1_EOK            \copybrief IAUDDEC1_EOK

Success.

Return values:
IAUDDEC1_EFAILGeneral failure. See IAUDDEC1_Status::extendedError for more detailed further error conditions.
IAUDENC1_EUNSUPPORTEDRequest is unsupported.

The documentation for this struct was generated from the following file:
Copyright 2013, Texas Instruments Incorporated