User`s manual

Appendix: GEME-VM3000 Series Introduction 139
AngeloMPEG4_Decode_Start–
AngeloMPEG4_Decode_Stop–
@ 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):L
ongint;
@ Argument
Decoder_Index: Indicates the channel number of Decoder.
The range of channel is 0 - 15.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int channel = 0;
Result = AngeloMPEG4_Decode_Start(channel);
Result = AngeloMPEG4_Decode_Stop(channel);
< Visual Basic >
Dim Result As Long, channel As Long
channel = 0
Result = AngeloMPEG4_Decode_Start(channel)
Result = AngeloMPEG4_Decode_Stop(channel)
< Delphi >