User`s manual
Function Library • 52
Delphi (Windows 98/NT/2000/XP)
AngeloMPEG4_Decode_Connect(Decoder_Index:Longint; Encoder_IP:String;
Enocder_channel:Longint):Longint;
AngeloMPEG4_Decode_Disconnect(
Decoder_Index:Longint):Longint;
@ Argument
De
coder_Index
:
Indicates the channel index of the MPEG4 decoder. The range of channels is 0 - 15.
Encoder
_IP:
Encoder_IP is the IP address of the MPEG4 encoder.
Encoder_Index:
Encoder_Index
is the channel index of the MPEG4 encoder.
Angelo_Video_Format:
Reserved for future use.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int Decoder_Index = 0;
char* Encoder_IP = “127.0.0.1”; //localhost
unsigned int Encoder_Index = 0;
Result =
AngeloMPEG4_Decode_Connect
(Decoder_Index,
Encoder_IP, Encoder_Index);
Result =
AngeloMPEG4_Decode_Disconnect
(Decoder_Index);
< Visual Basic >
Dim Result As Long, Decoder_Index As Long,
Encoder_Index As Long
Dim Encoder_IP As String
Decoder_Index = 0
Encoder_IP = “127.0.0.1” “localhost
Encoder_Index = 0
Result =
AngeloMPEG4_Decode_Connect
(Decoder_Index,
Encoder_IP, Encoder_Index)
Result =
AngeloMPEG4_Decode_Disconnect
(Decoder_Index)
<Delphi >