📄 iauddec1.h
字号:
/* * Copyright 2006 * Texas Instruments Incorporated * * All rights reserved. Property of Texas Instruments Incorporated * Restricted rights to use, duplicate or disclose this code are * granted through contract. * *//** * @file ti/xdais/dm/iauddec1.h * * @brief This header defines all types, constants, and functions * shared by all implementations of the audio decoder * algorithms. *//** * @defgroup ti_xdais_dm_IAUDDEC1 xDM 1.0 Audio Decoder Interface * * This is the xDM 1.0 Audio Decoder Interface. */#ifndef ti_xdais_dm_IAUDDEC1_#define ti_xdais_dm_IAUDDEC1_#include <ti/xdais/ialg.h>#include <ti/xdais/xdas.h>#include "xdm.h"#include "iaudio.h"#ifdef __cplusplusextern "C" {#endif/** @ingroup ti_xdais_dm_IAUDDEC1 *//*@{*/#define IAUDDEC1_ERUNTIME XDM_ERUNTIME /**< @copydoc XDM_ERUNTIME */#define IAUDDEC1_EOK XDM_EOK /**< @copydoc XDM_EOK */#define IAUDDEC1_EFAIL XDM_EFAIL /**< @copydoc XDM_EFAIL */#define IAUDDEC1_EUNSUPPORTED XDM_EUNSUPPORTED /**< @copydoc XDM_EUNSUPPORTED *//** * @brief This must be the first field of all IAUDDEC1 * instance objects. */typedef struct IAUDDEC1_Obj { struct IAUDDEC1_Fxns *fxns;} IAUDDEC1_Obj;/** * @brief Opaque handle to an IAUDDEC1 objects. */typedef struct IAUDDEC1_Obj *IAUDDEC1_Handle;/** * @brief Defines the creation time parameters for * all IAUDDEC1 instance objects. * * @extensibleStruct */typedef struct IAUDDEC1_Params { XDAS_Int32 size; /**< @sizeField */ XDAS_Int32 outputPCMWidth; /**< Number of bits per output PCM Sample. */ XDAS_Int32 pcmFormat; /**< Output PCM Format Block/Interleaved. * * @sa IAUDIO_PcmFormat */ XDAS_Int32 dataEndianness; /**< Endianness of output data. * * @sa XDM_DataFormat */} IAUDDEC1_Params;/** * @brief This structure defines the codec parameters that can be * modified after creation via control() calls. * * @remarks It is not necessary that a given implementation support all * dynamic parameters to be configurable at run time. If a * particular algorithm does not support run-time updates to * a parameter that the application is attempting to change * at runtime, it may indicate this as an error. * * @extensibleStruct * * @sa IAUDDEC1_Fxns::control() */typedef struct IAUDDEC1_DynamicParams { XDAS_Int32 size; /**< @sizeField */ XDAS_Int32 downSampleSbrFlag;/**< Flag to indicate downsampling for SBR. * * Valid values for this field are XDAS_TRUE * and XDAS_FALSE. */} IAUDDEC1_DynamicParams;/** * @brief Defines the input arguments for all IAUDDEC1 instance * process function. * * @extensibleStruct * * @sa IAUDDEC1_Fxns::process() */typedef struct IAUDDEC1_InArgs { XDAS_Int32 size; /**< @sizeField */ XDAS_Int32 numBytes; /**< Size of input data in bytes, provided * to the algorithm for decoding. */ XDAS_Int32 desiredChannelMode;/**< Desired Channel Configuration. * * @sa IAUDIO_ChannelMode */ XDAS_Int32 lfeFlag; /**< Flag indicating whether LFE channel data * is desired in the output. * * Valid values for this field are XDAS_TRUE * and XDAS_FALSE. */} IAUDDEC1_InArgs;/** * @brief Defines instance status parameters (read-only). * * @extensibleStruct * * @sa IAUDDEC1_Fxns::control() */typedef struct IAUDDEC1_Status { XDAS_Int32 size; /**< @sizeField */ XDAS_Int32 extendedError; /**< @extendedErrorField */ XDM_SingleBufDesc data; /**< Buffer descriptor for data passing. * * @remarks This buffer can be used as * either input or output, * depending on the command. * * @remarks The buffer will be provided * by the application, and * returned to the application * upon return of the control() * call. The algorithm must * not retain a pointer to this * data. * * @sa #XDM_GETVERSION */ XDAS_Int32 validFlag; /**< Reflects the validity of this status * structure. * * Valid values for this field are XDAS_TRUE * and XDAS_FALSE. */ XDAS_Int32 lfeFlag; /**< Flag indicating the presence of LFE * channel in the output. When the LFE * channel is not in the output, this is set * to XDAS_FALSE. * * Valid values for this field are XDAS_TRUE * and XDAS_FALSE. */ XDAS_Int32 bitRate; /**< Average bit rate, in bits per second. */ XDAS_Int32 sampleRate; /**< Sampling frequency, in Hz. * For example, if the sampling * frequency is 44.1 kHz, this field will * be 44100. */ XDAS_Int32 channelMode; /**< Output Channel Configuration. * * @sa IAUDIO_ChannelMode */ XDAS_Int32 pcmFormat; /**< Output PCM Format Block/Interleaved. * * @sa IAUDIO_PcmFormat */ XDAS_Int32 numSamples; /**< Number of samples in the output. */ XDAS_Int32 outputBitsPerSample; /**< Number of bits per output sample. * For example, if the value of the field is * 16, there are 16 output bits per PCM * sample. */ XDM_AlgBufInfo bufInfo; /**< Input and output buffer information. * * @sa XDM_AlgBufInfo */ XDAS_Int32 dualMonoMode; /**< Mode to indicate type of Dual Mono. * Only used in case of Dual Mono Output. * * @sa IAUDIO_DualMonoMode */} IAUDDEC1_Status;/** * @brief Defines the run time output arguments for * all IAUDDEC1 instance objects. * * @extensibleStruct * * @sa IAUDDEC1_Fxns::process() */typedef struct IAUDDEC1_OutArgs { XDAS_Int32 size; /**< @sizeField */ XDAS_Int32 extendedError; /**< @extendedErrorField */ XDAS_Int32 bytesConsumed; /**< Number of bytes consumed during the * process() call. */ XDAS_Int32 numSamples; /**< Number of output samples. */ XDAS_Int32 channelMode; /**< Output Channel Configuration. * * @sa IAUDIO_ChannelMode */ XDAS_Int32 lfeFlag; /**< Flag indicating the precense of LFE * channel in the output. When the LFE * channel is not in the output, this is set * to XDAS_FALSE. * * Valid values for this field are XDAS_TRUE * and XDAS_FALSE. */ XDAS_Int32 dualMonoMode; /**< Mode to indicate type of Dual Mono. * Only used in case of Dual Mono output. * * @sa IAUDIO_DualMonoMode */} IAUDDEC1_OutArgs;/** * @brief Defines the control commands for the IAUDDEC1 module. * * @remarks This ID can be extended in IMOD interface for * additional controls. * * @sa XDM_CmdId * * @sa IAUDDEC1_Fxns::control() */typedef IALG_Cmd IAUDDEC1_Cmd;/** * @brief Defines all of the operations on IAUDDEC1 objects. */typedef struct IAUDDEC1_Fxns{ IALG_Fxns ialg; /**< Traditional xDAIS algorithm interface. *//** * @brief Basic audio decoding call. * * @param[in] handle Handle to an algorithm instance. * @param[in] 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. * * @pre @c inArgs must not be NULL, and must point to a valid * IAUDDEC1_InArgs structure. * * @pre @c outArgs must not be NULL, and must point to a valid * IAUDDEC1_OutArgs structure. * * @pre @c inBufs must not be NULL, and must point to a valid * XDM_BufDesc structure. * * @pre @c inBufs.buf[0] must not be NULL, and must point to a valid * buffer of data that is at least @c inBufs.bufSizes[0] bytes in * length. * * @pre @c outBufs must not be NULL, and must point to a valid * XDM_BufDesc structure. * * @pre @c outBufs.buf[0] must not be NULL, and must point to a valid * buffer of data that is at least @c outBufs.bufSizes[0] bytes in * length. * * @post The algorithm <b>must not</b> modify the contents of * @c inBufs or @c inArgs. * That is, the data and buffers pointed to by these parameters * must be treated as read-only. * * @retval IALG_EOK Success. * @retval IALG_EFAIL Failure. See IAUDDEC1_OutArgs#extendedError * for more detailed further error conditions. */ XDAS_Int32 (*process)(IAUDDEC1_Handle handle, XDM_BufDesc *inBufs, XDM_BufDesc *outBufs, IAUDDEC1_InArgs *inArgs, IAUDDEC1_OutArgs *outArgs);/** * @brief 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 params must not be NULL, and must point to a valid * IAUDDEC1_DynamicParams structure. * * @pre @c status must not be NULL, and must point to a valid * IAUDDEC1_Status structure. * * @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. * * @retval IALG_EOK Success. * @retval IALG_EFAIL Failure. See IAUDDEC1_Status#extendedError * for more detailed further error conditions. */ XDAS_Int32 (*control)(IAUDDEC1_Handle handle, IAUDDEC1_Cmd id, IAUDDEC1_DynamicParams *params, IAUDDEC1_Status *status);} IAUDDEC1_Fxns;/*@}*/#ifdef __cplusplus}#endif#endif /* ti_xdais_dm_IAUDDEC1_ *//* * @(#) ti.xdais.dm; 1, 0, 1, 0,46; 10-18-2006 19:11:35; /db/wtree/library/trees/dais-g07x/src/ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -