User`s manual
138 Appendix: GEME-VM3000 Series Introduction
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int channel = 0;
int iWidth = 0;
int iHeight = 0;
int video_format = 0;
int color_format = 0;
int Bitrate = 0;
int frame_rate = 0;
Result = AngeloMPEG4_Decode_Get_Config(channel,
&iWidth, &iHeight, &videoformat,
&color_format, &Bitrate, &frame_rate);
< Visual Basic >
Dim Result As Long, channel As Long, iWidth
As Long, iHeight As Long, video_format As
Long, color_format As Long, Bitrate As Long,
frame_rate As Long
Channel = 0
Result = AngeloMPEG4_Decode_Get_Config(channel,
iWidth, iHeight, videoformat, colorformat,
Bitrate, frame_rate)
< Delphi >
var
channel: Longint;
iWidth, iHeight: Longint;
videoformat, colorspace, Bitrate, frame_rate:
Longint;
Result: Longint;
begin
channel := 0;
Result := AngeloMPEG4_Decode_Get_Config(channel,
iWidth, iHeight, videoformat, colorspace,
Bitrate, frame_rate);
end;