Enum StreamProcedureType
StreamProcedure flag used with
Namespace: System.Dynamic.ExpandoObject
Assembly: ManagedBass.dll
Syntax
public enum StreamProcedureType : int
Dummy
Create a "dummy" stream. A dummy stream doesn't have any sample data of its own, but a decoding dummy stream (with Decode flag) can be used to apply DSP/FX processing to any sample data, by setting DSP/FX on the stream and feeding the data through ChannelGetData(Int32, IntPtr, Int32). The dummy stream should have the same sample format as the data being fed through it.
End
Flag to signify that the end of the stream is reached.
Push
Create a "push" stream. Instead of BASS pulling data from a StreamProcedure function, data is pushed to BASS via StreamPutData(Int32, IntPtr, Int32).