User`s manual

Function Library 60
Indicates the width of the MPEG4 image size.
iHeight:
Indicates the height of the MPEG4 image size.
Video_format:
Full NTSC (640*480) = 0,
Full PAL (768*576) = 1,
CIF NTSC (320*240) = 2,
CIF PAL (384*288) = 3,
QCIF NTSC (160*120) = 4,
QCIF PAL (192*144) = 5,
Color_format:
RGB16 = 0,
GRAY = 1,
RGB15 = 2,
RGB24 = 3,
RGB32 = 4,
RGB8 = 5,
RAW8X = 6,
YUY2 4:2:2 = 7,
BtYUV 4:1:1 = 8
At present, we only support RGB24 color format, so the value should be always be set
to 3.
Bitrate:
Indicates the bit rate of the MPEG4 stream from the encode server.
Frame_rate:
Indicates the frame rate of the MPEG4 stream from the encode server.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int Decoder_Index = 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
(Decoder_Index,
&iWidth, &iHeight, &videoformat, &color_format,
&Bitrate, &frame_rate);