Skip to content
Snippets Groups Projects
Commit 23206dba authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- updated resolution rules

- added a fallback rule with a minimum resolution
parent 4a2128f4
No related branches found
No related tags found
No related merge requests found
......@@ -30,11 +30,22 @@
<policy type="and" name="Video is 2k/16bit RGB">
<policy type="or" name="typical Resolutions">
<policy type="and" name="2K HD Format (2048x1080)">
<policy type="and" name="DCI 2K Format (2048x1080)">
<rule name="Video/Width is 2048" value="Width" tracktype="Video" occurrence="*" operator="=">2048</rule>
<rule name="Video/Height is 1080" value="Height" tracktype="Video" occurrence="*" operator="=">1080</rule>
<rule name="Video/DisplayAspectRatio is 1.347" value="DisplayAspectRatio" tracktype="Video" occurrence="*" operator="=">1.347</rule>
</policy>
<policy type="and" name="2K HD Format, QSXGA 4:3 (2560x1920)">
<rule name="Video/Width is 2560" value="Width" tracktype="Video" occurrence="*" operator="=">2560</rule>
<rule name="Video/Height is 1920" value="Height" tracktype="Video" occurrence="*" operator="=">1920</rule>
<rule name="Video/DisplayAspectRatio is 1.333 (4:3)" value="DisplayAspectRatio" tracktype="Video" occurrence="*" operator="=">1.333</rule>
</policy>
<policy type="and" name="2K minimum resolution">
<rule name="Video/Width is at least 2048" value="Width" tracktype="Video" occurrence="*" operator=">=">2048</rule>
<rule name="Video/Height is at least 1080" value="Height" tracktype="Video" occurrence="*" operator=">=">1080</rule>
<rule name="Video/DisplayAspectRatio is at least 1" value="DisplayAspectRatio" tracktype="Video" occurrence="*" operator=">=">1.0</rule>
</policy>
</policy>
<rule name="Video/PixelAspectRatio is 1.000" value="PixelAspectRatio" tracktype="Video" occurrence="*" operator="=">1.000</rule>
<rule name="ColorSpace is RGB" value="ColorSpace" tracktype="Video" occurrence="*" operator="=">RGB</rule>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment