BASS.NET API for the Un4seen BASS Audio LibraryVIDEOSTREAMSPROC DelegateBASS.NET API for the Un4seen BASS Audio Library
User defined callback function to enumerate connected streams (see BASS_DSHOW_ChannelEnumerateStreams(Int32, VIDEOSTREAMSPROC, IntPtr)).

Namespace: Un4seen.Bass.AddOn.DShow
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.13.3
Syntax

public delegate bool VIDEOSTREAMSPROC(
	int format,
	string name,
	int index,
	bool enabled,
	IntPtr user
)

Parameters

format
Type: SystemInt32
The stream format (0: unknown, 1: video , 2: audio , 3: subtitle).
name
Type: SystemString
The format name.
index
Type: SystemInt32
The stream index (use this index to enable or disable it).
enabled
Type: SystemBoolean
Is this stream enabled?
user
Type: SystemIntPtr
The user instance data given when BASS_DSHOW_ChannelEnumerateStreams(Int32, VIDEOSTREAMSPROC, IntPtr) was called.

Return Value

Type: Boolean
to continue, else .
See Also

Reference