File: avfilter_limiter.xml

package info (click to toggle)
kdenlive 25.12.0-1
  • links: PTS
  • area: main
  • in suites: forky
  • size: 125,912 kB
  • sloc: cpp: 206,648; xml: 11,857; python: 1,139; ansic: 1,054; javascript: 578; sh: 389; makefile: 15
file content (19 lines) | stat: -rw-r--r-- 927 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="avfilter.limiter" id="avfilter.limiter">
    <name>Limiter</name>
    <description>Limits the pixel components values to the specified range [min, max]</description>
    <author>libavfilter</author>
    <parameter type="constant" name="av.min" default="0" min="0" max="255" factor="1">
        <name>Min</name>
        <comment>The Min value has not to be higher than the Max value</comment>
    </parameter>
    <parameter type="constant" name="av.max" default="65535" min="0" max="255" factor="1">
        <name>Max</name>
        <comment>The Max value has not to be lower than the Min value</comment>
    </parameter>
    <parameter type="list" name="av.planes" default="7" paramlist="0;1;2;3;4;5;6;7;8">
        <name>Planes</name>
        <paramlistdisplay>None,Y,U,YU,V,YV,UV,YUV,Alpha</paramlistdisplay>
    </parameter>
</effect>