Fix the array for the de-interlacing options
This commit is contained in:
parent
e72c357fd0
commit
85e1dcadf4
|
@ -321,31 +321,31 @@ $orientations = array(
|
||||||
);
|
);
|
||||||
|
|
||||||
$deinterlaceopts = array(
|
$deinterlaceopts = array(
|
||||||
'Disabled' => 0x00000000,
|
0x00000000 => 'Disabled',
|
||||||
'Four field motion adaptive - Soft' => 0x00001E04, /* 30 change */
|
0x00001E04 => 'Four field motion adaptive - Soft', /* 30 change */
|
||||||
'Four field motion adaptive - Medium' => 0x00001404, /* 20 change */
|
0x00001404 => 'Four field motion adaptive - Medium', /* 20 change */
|
||||||
'Four field motion adaptive - Hard' => 0x00000A04, /* 10 change */
|
0x00000A04 => 'Four field motion adaptive - Hard', /* 10 change */
|
||||||
'Discard' => 0x00000001,
|
0x00000001 => 'Discard',
|
||||||
'Linear' => 0x00000002,
|
0x00000002 => 'Linear',
|
||||||
'Blend' => 0x00000003,
|
0x00000003 => 'Blend',
|
||||||
'Blend (25%)' => 0x00000205
|
0x00000205 => 'Blend (25%)',
|
||||||
);
|
);
|
||||||
|
|
||||||
$deinterlaceopts_v4l2 = array(
|
$deinterlaceopts_v4l2 = array(
|
||||||
'Disabled' => 0x00000000,
|
0x00000000 => 'Disabled',
|
||||||
'Four field motion adaptive - Soft' => 0x00001E04, /* 30 change */
|
0x00001E04 => 'Four field motion adaptive - Soft', /* 30 change */
|
||||||
'Four field motion adaptive - Medium' => 0x00001404, /* 20 change */
|
0x00001404 => 'Four field motion adaptive - Medium', /* 20 change */
|
||||||
'Four field motion adaptive - Hard' => 0x00000A04, /* 10 change */
|
0x00000A04 => 'Four field motion adaptive - Hard', /* 10 change */
|
||||||
'Discard' => 0x00000001,
|
0x00000001 => 'Discard',
|
||||||
'Linear' => 0x00000002,
|
0x00000002 => 'Linear',
|
||||||
'Blend' => 0x00000003,
|
0x00000003 => 'Blend',
|
||||||
'Blend (25%)' => 0x00000205,
|
0x00000205 => 'Blend (25%)',
|
||||||
'V4L2: Capture top field only' => 0x02000000,
|
0x02000000 => 'V4L2: Capture top field only',
|
||||||
'V4L2: Capture bottom field only' => 0x03000000,
|
0x03000000 => 'V4L2: Capture bottom field only',
|
||||||
'V4L2: Alternate fields (Bob)' => 0x07000000,
|
0x07000000 => 'V4L2: Alternate fields (Bob)',
|
||||||
'V4L2: Progressive' => 0x01000000,
|
0x01000000 => 'V4L2: Progressive',
|
||||||
'V4L2: Interlaced' => 0x04000000
|
0x04000000 => 'V4L2: Interlaced',
|
||||||
);
|
);
|
||||||
|
|
||||||
$fastblendopts = array(
|
$fastblendopts = array(
|
||||||
'No blending' => 0,
|
'No blending' => 0,
|
||||||
|
|
Loading…
Reference in New Issue