Lame_encDllEncodeChunk(UInt32, Byte, Byte, UInt32) Method |
Encodes a chunk of samples. Samples are contained in a byte array
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.13.0
Syntaxpublic static uint EncodeChunk(
uint hbeStream,
byte[] buffer,
byte[] pOutput,
ref uint pdwOutput
)
Public Shared Function EncodeChunk (
hbeStream As UInteger,
buffer As Byte(),
pOutput As Byte(),
ByRef pdwOutput As UInteger
) As UInteger
public:
static unsigned int EncodeChunk(
unsigned int hbeStream,
array<unsigned char>^ buffer,
array<unsigned char>^ pOutput,
unsigned int% pdwOutput
)
static member EncodeChunk :
hbeStream : uint32 *
buffer : byte[] *
pOutput : byte[] *
pdwOutput : uint32 byref -> uint32
Parameters
- hbeStream UInt32
- Handle of the stream.
- buffer Byte
- Bytes to encode
- pOutput Byte
- Buffer where to write the encoded data.
This buffer should be at least of the minimum size returned by beInitStream().
- pdwOutput UInt32
- Returns the number of bytes of encoded data written.
The amount of data written might vary from chunk to chunk
Return Value
UInt32On success: BE_ERR_SUCCESSFUL
See Also