User`s manual

Function Library 65
Scale := 2;
Result :=
AngeloMPEG4_Decode_Expansion
(Decoder_Index, Scale);
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:Longint; var
Byte_Second:Longint):Longint;
@ Argument
Decoder_Index
:
Indicates the channel index of the MPEG4 Decoder. The range of channels is 0 - 15.
Byte_Second:
The current flow rate of MPEG4 streaming measured in bytes/sec.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int Decoder_Index = 0;
long Byte_Second;
Result =
AngeloMPEG4_Decode_Get_FlowRate
(Decoder_Index,
&Byte_Second);
< Visual Basic >
Dim Result As Long, Decoder_Index As Long,
Byte_Second As Long
Result =
AngeloMPEG4_Decode_Get_FlowRate
(Decoder_Index,
Byte_Second)
<Delphi >
AngeloMPEG4_Decode_Get_FlowRate –