EncoderParameters

 

 

An EncoderParameters structure is an array of EncoderParameter structures along with a data member that specifies the number of EncoderParameter structures in the array.

 

 

Syntax

typedef struct EncoderParameters {

   UINT Count;

   EncoderParameter Parameter[i];

};

PowerBASIC Syntax

TYPE EncoderParameters

   Count AS DWORD

   Parameter(0) AS EncoderParameter

END TYPE

Members

 

Count

Number of EncoderParameter structures in the array.

Parameter ()

Array of EncoderParameter structures.

Remarks

When you create an EncoderParameters structure, you must allocate enough memory to hold all of the EncoderParameter structures that will eventually be placed in the array.

 

Valid HTML 4.01 Transitional