VSE: default to new "Auto" image filter for strips #117853

Merged
Aras Pranckevicius merged 1 commits from aras_p/blender:vse_auto_filter into main 2024-02-05 20:09:37 +01:00

1 Commits

Author SHA1 Message Date
Aras Pranckevicius aa194529d6 VSE: default to new "Auto" image filter for strips
buildbot/vexp-code-patch-lint Build done. Details
buildbot/vexp-code-patch-darwin-arm64 Build done. Details
buildbot/vexp-code-patch-darwin-x86_64 Build done. Details
buildbot/vexp-code-patch-linux-x86_64 Build done. Details
buildbot/vexp-code-patch-windows-amd64 Build done. Details
buildbot/vexp-code-patch-coordinator Build done. Details
Part of "improve filtering situation" (#116980), now strip scaling
filter defaults to "Auto" which has logic like:
- No scale, no rotation, integer positions: Nearest (fastest)
- Scaling up by more than 2x: Cubic Mitchell, so you get nicer
  blending between pixels than with bilinear,
- Scaling down by more than 2x: Box, so that many pixels are averaged
  properly without too much aliasing,
- Otherwise: Bilinear

Existing strips that use Bilinear (which is default) get switched
to Auto when loading older files.
2024-02-05 16:58:15 +02:00