User`s manual

Function Library 95
@ Argument
Decoder_Index: Indicates the channel number of MPEG4
Decoder. The range of channel is 0 - 15.
Byte_Second: The current flow rate of MPEG4 streaming
measured in Byte/sec.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int channel = 0;
long Byte_Second;
Result = AngeloMPEG4_Decode_Get_FlowRate(channel,
&Byte_Second);
< Visual Basic >
Dim Result As Long, channel As Long, Byte_Second
As Long
Result = AngeloMPEG4_Decode_Get_FlowRate(channel,
Byte_Second)
<Delphi >
AngeloMPEG4_Decode_Get_FlowRate –
var
channel: Longint;
Byte_Second: Longint;
Result: Longint;
begin
channel := 0;
Result :=
AngeloMPEG4_Decode_Get_FlowRate(channel,
Byte_Second);
end;