|
AVIStreamWrite
The AVIStreamWrite function writes data to a stream.
STDAPI AVIStreamWrite(
PAVISTREAM pavi,
|
| LONG lStart,
|
| LONG lSamples,
|
| LPVOID lpBuffer,
|
| LONG cbBuffer,
|
| DWORD dwFlags,
|
| LONG * plSampWritten,
|
| LONG * plBytesWritten
|
| );
|
|
Parameters
pavi
Handle of an open stream.
lStart
First sample to write.
lSamples
Number of samples to write.
lpBuffer
Address of a buffer containing the data to write.
cbBuffer
Size of the buffer referenced by lpBuffer.
dwFlags
Flag associated with this data. The following flag is defined:
AVIIF_KEYFRAME
Indicates this data does not rely on preceding data in the file.
plSampWritten
Address to contain the number of samples written. This can be set to NULL.
plBytesWritten
Address to contain the number of bytes written. This can be set to NULL.
Return Values
Returns zero if successful or an error otherwise.
Remarks
The default AVI file handler supports writing only at the end of a stream. The
"WAVE" file handler supports writing anywhere.
This function overwrites existing data, rather than inserting new data.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|