User`s manual

80 Function Library
Delphi (Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Connect(Decoder_Index:Longint
; Encoder_IP:String;
Encoder_Index:Longint):Longint;
AngeloMPEG4_Decode_Disconnect(Decoder_Index:Long
int):Longint;
@ Argument
Decoder_Index: Indicates the channel number of MPEG4
Decoder. The range of channel is 0 - 15.
Encoder_IP: The IP address of MPEG4 Encode.
Encoder_Index: The channel of MPEG4 Encoder.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int channel = 0;
char* Encoder_IP = “127.0.0.1”; //localhost
unsigned int Encoder_channel = 0;
Result = AngeloMPEG4_Decode_Connect(channel,
Encoder_IP, Encoder_channel);
Result = AngeloMPEG4_Decode_Disconnect(channel);
< Visual Basic >
Dim Result As Long, channel As Long,
Encoder_channel As Long
Dim Encoder_IP As String
channel = 0
Encoder_IP = “127.0.0.1” ‘localhost
Encoder_channel = 0
Result = AngeloMPEG4_Decode_Connect(channel,
Encoder_IP, Encoder_channel)
Result = AngeloMPEG4_Decode_Disconnect(channel)