- Aug 03, 2023
-
-
Niklas Haas authored
-
Niklas Haas authored
These lines get chaotic in the region outside the legal range, but we already know that we won't ever sample outside of the source gamut for well-behaved content after 8ceb7a54.
-
Niklas Haas authored
Ported from e67b46bc, to avoid expanding gamut out of the box with the new perceptual gamut mapper.
-
Niklas Haas authored
Need to check for the no-op case here properly.
-
Niklas Haas authored
Fixes things like ICC test profiles directly at the source level, by simply disabling gamut mapping altogether in this case. Also disables e.g. out-of-gamut warnings, but I consider this a degenerate case anyway. (And we would probably be better off fixing it to do the gamut testing in software, anyway)
-
Niklas Haas authored
-
Niklas Haas authored
Specifically, we need this to constrain the effects of bidirectional gamut mappers when unintended. Note: This cherry-picked version adds the new API to an internal header, instead of exposing it publicly.
-
Niklas Haas authored
As a result of cherry-picking the new perceptual onto the release branch.
-
Niklas Haas authored
Makes this function return true for near-matches.
-
Niklas Haas authored
Now that the default tone mapper is over an order of magnitude faster, we can burn a lot more iterations on a good 3DLUT. This reduces the interpolation error to the point where tricubic interpolation is already overkill.
-
Niklas Haas authored
The new perceptual tone mapper is substantially better than the old one at mapping hues correctly, so we can raise this test precision by almost an order of magnitude.
-
Niklas Haas authored
Based on a radically new design, which is just a saturation map combined with a simple smoothstep to protect the in-gamut region from being warped, alongside a final RGB softclip pass to combat clipping as a result of differences in the hue leaf shape, resulting in a nice, smooth colorimetric mapping. Overall represents a major improvement (YMMV).
-
Niklas Haas authored
If target is 0.0.
-
Niklas Haas authored
Prevents infinite loop here.
-
Niklas Haas authored
Make it reusable.
-
Niklas Haas authored
This margin needs to be applied when the source's hue leaf chromaticity _exceeds_ the target's. The logic was the wrong way around, leading to this code effectively doing nothing. Unfortunately, regresses accuracy of the hue mapping code slightly, in exchange for being more resilient to clipping.
-
Niklas Haas authored
This was only intended for SDR *sources* with known contrast information, mapping onto SDR outputs. Also reword the previous comment for clarity.
-
Got broken during code move from plplay.c to windows.c. Since waitable timers, doesn't seems to care about per process timeBeginPeriod, as long as global timer resolution is set, I didn't notice missing call during testing.
-
Niklas Haas authored
Even if `acquire_image` is false. Otherwise, this will not happen on re-draws with changed image state. Not entirely sure if this is kosher, but it seems to work fine in practice for me. Maybe the more principled solution would be to move the acquision of the ref image to the first pass_init().
-
Niklas Haas authored
Whenever possible, avoids conversion between different SDR contrast levels unless both the source and target have HDR metadata forced. Fixes: #289
-
Niklas Haas authored
This is arguably a subjective trade-off, since it means you get the HLG OOTF look&feel instead of our own tone-mapping. But, that's also what HLG is supposed to do, so this is arguably more faithful to the spec. Users can already override it anyway by forcing specific metadata for the HLG source (e.g. mastering metadata), which is more likely than not what already is happening in practice anyway. See-Also: https://github.com/mpv-player/mpv/issues/11461
-
Niklas Haas authored
Works around AV_NOWARN_DEPRECATED not being correctly defined for the version of FFmpeg in this image. Permanent solution would be to upgrade FFmpeg. See-Also: !510
-
Niklas Haas authored
-
Fixes compilation of glslang.cc due to more strict C++ prohibiting to jump over variable initialization. Also as a bonus check sleep time after converting to integer as it may end up zero. Fixes: https://github.com/haasn/libplacebo/issues/185
-
Niklas Haas authored
rgba32f is not available everywhere, no need to make this test fail in such cases.
-
Niklas Haas authored
Instead of pl_opengl_create(), where it doesn't belong (it's too late to affect feature checks).
-
Niklas Haas authored
Instead of doing this in pl_opengl_create
-
Niklas Haas authored
Triggers pl_debug_abort() otherwise.
-
Niklas Haas authored
This is the minimum version required according to the GL_ARB_compute_shader documentation, and certainly, trying to use a lower version results in invalid syntax errors being reported for the workgroup size layout qualifiers.
-
Niklas Haas authored
Using r8 triggers driver bugs on at least some platforms (e.g. nvidia), rgba8 is a simple work-around. Fixes: #252
-
Niklas Haas authored
-
Niklas Haas authored
This export/import test was completely redundant with pl_test_export_import.
-
Niklas Haas authored
Somehow a deviation in the previous (deband) test resulted in this test pattern being subtly different from the version actually being tested, and only on certain platforms (NVIDIA GL, but not AMD GL). While that is certainly odd in its own right, this commit fixes a straightforward logic bug in the test. Fixes: #252 (comment 401483)
-
Niklas Haas authored
Unlike their 1 and 2 channel brethren, these are randomly lumped in with the YCbCr sampled formats, which have a variety of restrictions that our code is not currently equipped to handle. Easier to just disable them for now.
-
Niklas Haas authored
-
Niklas Haas authored
v1.3.250 still has a race condition where the semaphore validation can time-out sometimes, bump it up to v1.3.259...
-
Niklas Haas authored
Possible after e58db9d0
-
Niklas Haas authored
This was bugged until 1.3.250+, the latest SDK release.
-
Niklas Haas authored
This is technically redundant with the report above, but this happens at higher verbosity and also here the version is more relevant (at least to me).
-
Niklas Haas authored
No idea why this is considered a warning, even.
-