User`s manual
Function Library • 56
2 for SATURATION (U)
3 for SATURATION (V)
4 for CONTRAST (LUMA)
5 for luma notch filter (for monochrome video, the notch filter should not be used)
value
: (0-255)
Range Default value
BRIGHTNESS 0 ---- 255 128
HUE 0 ---- 255 0
CHROMA (U) 0 ---- 255 127
CHROMA (V) 0 ---- 255 127
LUMA 0 ---- 255 108
LUMA notch filter 0(Enable) or 1(Disable)
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int Decoder_Index = 0;
int ConfigIndex = 0;
int value = 128;
Result =
AngeloMPEG4_Decode_Set_Image_Config
(Decoder_Index,
ConfigIndex, value);
< Visual Basic >
Dim Result As Long, Decoder_Index As Long, ConfigIndex As Long,
value As Long
Decoder_Index = 0
ConfigIndex = 0
value = 128
Result =
AngeloMPEG4_Decode_Set_Image_Config
(Decoder_Index,
ConfigIndex, value)
<Delphi >
var
Decoder_Index: Longint;
ConfigIndex: Longint;
Value: Longint;
Result: Longint;
begin
Decoder_Index:= 0;
ConfigIndex := 0;
Value := 128;
Result :=
AngeloMPEG4_Decode_Set_Image_Config
(Decoder_Index,
ConfigIndex, Value);
end;