Data Structures | Defines | Typedefs | Functions

VIDENC1 - Video Encoder Interface

Data Structures

struct  IVIDENC1_CodecClassConfig
 Definition of IVIDENC1 codec class configurable parameters. More...

Defines

#define VIDENC1_EOK   IVIDENC1_EOK
#define VIDENC1_EFAIL   IVIDENC1_EFAIL
#define VIDENC1_EUNSUPPORTED   IVIDENC1_EUNSUPPORTED
#define VIDENC1_ETIMEOUT   VISA_ETIMEOUT
#define VIDENC1_FOREVER   VISA_FOREVER
#define VIDENC1_VISATYPE   "ti.sdo.ce.video1.IVIDENC1"
 The VISA type.

Typedefs

typedef VISA_Handle VIDENC1_Handle
 Opaque handle to a VIDENC1 codec.
typedef struct IVIDENC1_Params VIDENC1_Params
typedef IVIDENC1_InArgs VIDENC1_InArgs
typedef IVIDENC1_OutArgs VIDENC1_OutArgs
typedef IVIDENC1_Cmd VIDENC1_Cmd
typedef IVIDENC1_DynamicParams VIDENC1_DynamicParams
typedef IVIDENC1_Status VIDENC1_Status
typedef struct
IVIDENC1_CodecClassConfig 
IVIDENC1_CodecClassConfig
 Definition of IVIDENC1 codec class configurable parameters.

Functions

Int32 VIDENC1_control (VIDENC1_Handle handle, VIDENC1_Cmd id, VIDENC1_DynamicParams *params, VIDENC1_Status *status)
 Execute the control() method in this instance of a video encoder algorithm.
VIDENC1_Handle VIDENC1_create (Engine_Handle e, String name, VIDENC1_Params *params)
 Create an instance of a video encoder algorithm.
Void VIDENC1_delete (VIDENC1_Handle handle)
 Delete the instance of a video encoder algorithm.
Int32 VIDENC1_process (VIDENC1_Handle handle, IVIDEO1_BufDescIn *inBufs, XDM_BufDesc *outBufs, VIDENC1_InArgs *inArgs, VIDENC1_OutArgs *outArgs)
 Execute the process() method in this instance of a video encoder algorithm.
XDAS_Int32 VIDENC1_processAsync (VIDENC1_Handle handle, IVIDEO1_BufDescIn *inBufs, XDM_BufDesc *outBufs, IVIDENC1_InArgs *inArgs, IVIDENC1_OutArgs *outArgs)
 Perform asynchronous submission to this instance of a video decoder algorithm.
XDAS_Int32 VIDENC1_processWait (VIDENC1_Handle handle, IVIDEO1_BufDescIn *inBufs, XDM_BufDesc *outBufs, IVIDENC1_InArgs *inArgs, IVIDENC1_OutArgs *outArgs, UInt timeout)
 Wait for a return message from a previous invocation of VIDENC1_processAsync() in this instance of an video decoder algorithm.

Detailed Description

This is the VIDENC1 video encoder interface. Several of the data types in this API are specified by the XDM IVIDENC1 interface; please see the XDM documentation for those details.


Define Documentation

#define VIDENC1_EOK   IVIDENC1_EOK

Success.

#define VIDENC1_EFAIL   IVIDENC1_EFAIL

General failure.

Request is unsupported.

#define VIDENC1_EUNSUPPORTED   IVIDENC1_EUNSUPPORTED
#define VIDENC1_ETIMEOUT   VISA_ETIMEOUT

Timeout occurred.

#define VIDENC1_FOREVER   VISA_FOREVER

Special value for timeout parameter indicating never timeout.

#define VIDENC1_VISATYPE   "ti.sdo.ce.video1.IVIDENC1"

The VISA type.


Typedef Documentation

Opaque handle to a VIDENC1 codec.

Defines the creation time parameters for all IVIDENC1 instance objects.

Remarks:
This structure may be extended by individual codec implementations allowing customization with vendor specific parameters. The presence of vendor specific extensions will be detected by the value of the size parameter.
The size field must be correctly set by the caller. See http://tiexpressdsp.com/index.php?title=Extending_data_structures_in_xDM for more details.

Defines the input arguments for all IVIDENC1 instance process function.

Remarks:
This structure may be extended by individual codec implementations allowing customization with vendor specific parameters. The presence of vendor specific extensions will be detected by the value of the size parameter.
The size field must be correctly set by the caller. See http://tiexpressdsp.com/index.php?title=Extending_data_structures_in_xDM for more details.
See also:
IVIDENC1_Fxns::process()

Defines the run time output arguments for all IVIDENC1 instance objects.

Remarks:
This structure may be extended by individual codec implementations allowing customization with vendor specific parameters. The presence of vendor specific extensions will be detected by the value of the size parameter.
The size field must be correctly set by the caller. See http://tiexpressdsp.com/index.php?title=Extending_data_structures_in_xDM for more details.
See also:
IVIDENC1_Fxns::process()

Defines the control commands for the IVIDENC1 module.

Remarks:
This ID can be extended in IMOD interface for additional controls.
See also:
XDM_CmdId
IVIDENC1_Fxns::control()

This structure defines the algorithm 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.
This structure may be extended by individual codec implementations allowing customization with vendor specific parameters. The presence of vendor specific extensions will be detected by the value of the size parameter.
The size field must be correctly set by the caller. See http://tiexpressdsp.com/index.php?title=Extending_data_structures_in_xDM for more details.
See also:
IVIDENC1_Fxns::control()

Defines instance status parameters.

Remarks:
This structure may be extended by individual codec implementations allowing customization with vendor specific parameters. The presence of vendor specific extensions will be detected by the value of the size parameter.
The size field must be correctly set by the caller. See http://tiexpressdsp.com/index.php?title=Extending_data_structures_in_xDM for more details.
See also:
IVIDENC1_Fxns::control()

Definition of IVIDENC1 codec class configurable parameters.

See also:
VISA_getCodecClassConfig()

Function Documentation

Int32 VIDENC1_control ( VIDENC1_Handle  handle,
VIDENC1_Cmd  id,
VIDENC1_DynamicParams params,
VIDENC1_Status status 
)

Execute the control() method in this instance of a video encoder algorithm.

Parameters:
[in]handleHandle to a created video encoder instance.
[in]idCommand id for XDM control operation.
[in]paramsRuntime control parameters used for encoding.
[out]statusStatus info upon completion of encode operation.
Precondition:
handle is a valid (non-NULL) video encoder handle and the video encoder is in the created state.
Return values:
VIDENC1_EOKSuccess.
VIDENC1_EFAILFailure.
VIDENC1_EUNSUPPORTEDThe requested operation is not supported.
Remarks:
This is a blocking call, and will return after the control command has been executed.
If an error is returned, status->extendedError may indicate further details about the error. See VIDENC1_Status::extendedError for details.
See also:
VIDENC1_create()
VIDENC1_delete()
IVIDENC1_Fxns::process()
VIDENC1_Handle VIDENC1_create ( Engine_Handle  e,
String  name,
VIDENC1_Params params 
)

Create an instance of a video encoder algorithm.

Instance handles must not be concurrently accessed by multiple threads; each thread must either obtain its own handle (via VIDENC1_create()) or explicitly serialize access to a shared handle.

Parameters:
[in]eHandle to an opened engine.
[in]nameString identifier of the type of video encoder to create.
[in]paramsCreation parameters.
Return values:
NULLAn error has occurred.
non-NULLThe handle to the newly created video encoder instance.
Remarks:
params is optional. If it's not supplied, codec-specific default params will be used.
Depending on the configuration of the engine opened, this call may create a local or remote instance of the video encoder.
In general, name is the name of the codec configured by the system integrator. However, an optional "argument string" may be appended to the codec name, to allow the codec's configured priority and/or the heaps where its memory will be allocated, to be overridden. This optional argument string is of the form ":priority", ":priority:flag", or "::flag".
priority is the new priority to create the codec with.
The flag must be either 0 or 1, and if 1, all memory allocated for the codec will be in the heap that corresponds to IALG_EXTERNAL. If flag is 0, the memory for the codec will be allocated from the heaps it has requested. For example, if a codec named "mp3" has been configured into the system, setting name to "mp3:4" would cause the codec to be created at priority 4, instead of whatever priority was configured. This feature is useful if more than one instance of the codec are to be created at different priorities.
The flag can be used to prevent the codec from using any internal memory, for example, if it is to be run at the same time as another codec that must use internal memory, and there is insufficient internal memory for both.
See also:
Engine_open()
VIDENC1_delete()
Void VIDENC1_delete ( VIDENC1_Handle  handle )

Delete the instance of a video encoder algorithm.

Parameters:
[in]handleHandle to a created video encoder instance.
Remarks:
Depending on the configuration of the engine opened, this call may delete a local or remote instance of the video encoder.
Precondition:
handle is a valid (non-NULL) handle which is in the created state.
Postcondition:
All resources allocated as part of the VIDENC1_create() operation (memory, DMA channels, etc.) are freed.
See also:
VIDENC1_create()
Int32 VIDENC1_process ( VIDENC1_Handle  handle,
IVIDEO1_BufDescIn inBufs,
XDM_BufDesc outBufs,
VIDENC1_InArgs inArgs,
VIDENC1_OutArgs outArgs 
)

Execute the process() method in this instance of a video encoder algorithm.

Parameters:
[in]handleHandle to a created video encoder instance.
[in]inBufsA buffer descriptor containing input buffers.
[out]outBufsA buffer descriptor containing output buffers.
[in]inArgsInput Arguments.
[out]outArgsOutput Arguments.
Precondition:
handle is a valid (non-NULL) video encoder handle and the video encoder is in the created state.
Return values:
VIDENC1_EOKSuccess.
VIDENC1_EFAILFailure.
VIDENC1_EUNSUPPORTEDThe requested operation is not supported.
Remarks:
Since the VIDENC1 decoder contains support for asynchronous buffer submission and retrieval, this API becomes known as synchronous in nature.
This is a blocking call, and will return after the data has been encoded.
The buffers supplied to VIDENC1_process() may have constraints put on them. For example, in dual-processor, shared memory architectures, where the codec is running on a remote processor, the buffers may need to be physically contiguous. Additionally, the remote processor may place restrictions on buffer alignment.
If an error is returned, outArgs->extendedError may indicate further details about the error. See VIDENC1_OutArgs::extendedError for details.
See also:
VIDENC1_create()
VIDENC1_delete()
VIDENC1_control()
VIDENC1_processAsync()
VIDENC1_processWait()
IVIDENC1_Fxns::process() - the reflected algorithm interface, which may contain further usage details.
XDAS_Int32 VIDENC1_processAsync ( VIDENC1_Handle  handle,
IVIDEO1_BufDescIn inBufs,
XDM_BufDesc outBufs,
IVIDENC1_InArgs inArgs,
IVIDENC1_OutArgs outArgs 
)

Perform asynchronous submission to this instance of a video decoder algorithm.

Parameters:
[in]handleHandle to a created video decoder instance.
[in]inBufsA buffer descriptor containing input buffers.
[out]outBufsA buffer descriptor containing output buffers.
[in]inArgsInput Arguments.
[out]outArgsOutput Arguments.
Precondition:
handle is a valid (non-NULL) video decoder handle and the video decoder is in the created state.
Return values:
VIDENC1_EOKSuccess.
VIDENC1_EFAILFailure.
VIDENC1_EUNSUPPORTEDUnsupported request.
Remarks:
This API is the asynchronous counterpart to the process() method. It allows for buffer and argument submission without waiting for retrieval. A response is retrieved using the VIDENC1_processWait() API.
The buffers supplied to VIDENC1_processAsync() may have constraints put on them. For example, in dual-processor, shared memory architectures, where the codec is running on a remote processor, the buffers may need to be physically contiguous. Additionally, the remote processor may place restrictions on buffer alignment.
See also:
VIDENC1_create()
VIDENC1_delete()
VIDENC1_control()
VIDENC1_process()
VIDENC1_processWait()
IVIDENC1_Fxns::process()
XDAS_Int32 VIDENC1_processWait ( VIDENC1_Handle  handle,
IVIDEO1_BufDescIn inBufs,
XDM_BufDesc outBufs,
IVIDENC1_InArgs inArgs,
IVIDENC1_OutArgs outArgs,
UInt  timeout 
)

Wait for a return message from a previous invocation of VIDENC1_processAsync() in this instance of an video decoder algorithm.

Parameters:
[in]handleHandle to a created video decoder instance.
[in]inBufsA buffer descriptor containing input buffers.
[out]outBufsA buffer descriptor containing output buffers.
[in]inArgsInput Arguments.
[out]outArgsOutput Arguments.
[in]timeoutAmount of "time" to wait (from 0 -> VIDENC1_FOREVER)
Precondition:
handle is a valid (non-NULL) video decoder handle and the video decoder is in the created state.
Return values:
VIDENC1_EOKSuccess.
VIDENC1_EFAILFailure.
VIDENC1_EUNSUPPORTEDUnsupported request.
VIDENC1_ETIMEOUTOperation timed out.
Remarks:
This is a blocking call, and will return after the data has been decoded.
"Polling" is supported by using a timeout of 0. Waiting forever is supported by using a timeout of VIDENC1_FOREVER.
There must have previously been an invocation of the VIDENC1_processAsync() API.
The buffers supplied to VIDENC1_processAsync() may have constraints put on them. For example, in dual-processor, shared memory architectures, where the codec is running on a remote processor, the buffers may need to be physically contiguous. Additionally, the remote processor may place restrictions on buffer alignment.
See also:
VIDENC1_create()
VIDENC1_delete()
VIDENC1_control()
VIDENC1_process()
VIDENC1_processAsync()
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines

Copyright 2012, Texas Instruments Incorporated