User`s manual
Function Library • 64
Result :=
AngeloMPEG4_Decode_Stop
(Decoder_Index);
end;
AngeloMPEG4_Decode_Expansion–
@ Syntax
C/C++ (Windows 98/NT/2000/XP)
int AngeloMPEG4_Decode_Expansion(int Decoder_Index, int Scale);
Visual Basic(Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Expansion (ByVal Decoder_Index As Long, ByVal nScale
As Long) As Long
Delphi (Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Expansion(Decoder_Index:Longint; Scale:Longint):Longint;
@ Argument
Decoder_Index
:
Indicates the channel index of the MPEG4 Decoder. The range of channels is 0 - 15.
Scale:
Indicates the scale of expansion. The valid value is 2.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int Decoder_Index = 0;
int Scale = 2;
Result =
AngeloMPEG4_Decode_Expansion
(Decoder_Index,
Scale);
< VC/BCB >
Dim Result As Long, Decoder_Index As Long, Scale As
Long
Decoder_Index = 0
Scale = 2
Result =
AngeloMPEG4_Decode_Expansion
(Decoder_Index,
Scale)
<Delphi >
var
Decoder_Index: Longint;
Scale: Longint;
Result: Longint;
begin
Decoder_Index:= 0;