User`s manual

140 Appendix: GEME-VM3000 Series Introduction
var
channel: Longint;
Result: Longint;
begin
channel := 0;
Result := AngeloMPEG4_Decode_Start(channel);
Result := AngeloMPEG4_Decode_Stop(channel);
end;
AngeloMPEG4_Decode_Get_FlowRate
@ Syntax
C/C++ (Windows 98/NT/2000/XP)
int AngeloMPEG4_Decode_Get_FlowRate(int
Decoder_Index, long* Byte_Second);
Visual Basic (Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Get_FlowRate(ByVal
Decoder_Index As Long, ByRef flow_rate As
Long) As Long
Delphi (Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Get_FlowRate(Decoder_Index:Lo
ngint; var Byte_Second:Longint):Longint;
@ 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);