#include "ltmm.h"
C Syntax |
HRESULT IltmmMultiStreamTarget_put_StreamCount(pMultiStreamTarget, Count); |
C++ Syntax |
HRESULT put_StreamCount(Count); |
IltmmMultiStreamTarget *pMultiStreamTarget; |
/* pointer to an interface */ |
long Count; |
/* number of streams */ |
Sets the number of streams accepted by the multi stream target object.
Parameter |
Description |
pMultiStreamTarget |
Pointer to an IltmmMultiStreamTarget interface. |
Count |
The new number of streams. |
Returns
S_OK |
The function was successful. |
<> S_OK |
An error occurred. Refer to the Error Codes or the HRESULT error codes in the DirectShow documentation. |
Comments
You have to set the number of streams before using any other function from IltmmMultiStreamTarget.
Required DLLs and Libraries
LTMM For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64
See Also
Example
For a C example, refer to Concatenate two AVI files using IltmmMultiStreamSource and IltmmMultiStreamTarget Example for C.
For a C example, refer to Replace Audio using IltmmMultiStreamSource and IltmmMultiStreamTarget Example for C.
For a C++ example, refer to Concatenate two AVI files using IltmmMultiStreamSource and IltmmMultiStreamTarget Example for C++.
For a C++ example, refer to Replace Audio using IltmmMultiStreamSource and IltmmMultiStreamTarget Example for C++.