User`s manual

Function Library ā€¢ 63
end;
AngeloMPEG4_Decode_Startā€“
AngeloMPEG4_Decode_Sopā€“
@ Syntax
C/C++ (Windows 98/NT/2000/XP)
int AngeloMPEG4_Decode_Start(int Decoder_Index);
int AngeloMPEG4_Decode_Stop(int Decoder_Index);
Visual Basic(Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Start(ByVal Decoder_Index As Long) As Long
AngeloMPEG4_Decode_Stop(ByVal Decoder_Index As Long) As Long
Delphi (Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Start(Decoder_Index:Longint):Longint;
AngeloMPEG4_Decode_Stop(Decoder_Index:Longint):Longint;
@ Argument
Decoder_Index
:
Indicates the channel index of the decoder. The range of channels is 0 - 15.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int Decoder_Index = 0;
Result =
AngeloMPEG4_Decode_Start
(Decoder_Index);
Result =
AngeloMPEG4_Decode_Stop
(Decoder_Index);
< VC/BCB >
Dim Result As Long, Decoder_Index As Long
Decoder_Index = 0
Result =
AngeloMPEG4_Decode_Start
(Decoder_Index)
Result =
AngeloMPEG4_Decode_Stop
(Decoder_Index)
<Delphi >
var
Decoder_Index: Longint;
Result: Longint;
begin
Decoder_Index:= 0;
Result :=
AngeloMPEG4_Decode_Start
(Decoder_Index);