- Sep 30, 2023
-
-
Niklas Haas authored
This was accidentally inverted...
-
- Sep 25, 2023
-
-
Niklas Haas authored
It's called pl_render_*DEFAULT*_params for a reason.
-
Niklas Haas authored
Code 95% generously donated by ChatGPT. Bugs in remaining 5%.
-
Niklas Haas authored
-
Niklas Haas authored
What a headache this file was growing into...
-
- Sep 19, 2023
-
-
Niklas Haas authored
Testing revealed the LUT size of 256 to have no performance downside compared to 64, and it still fits into the hard limit for literal LUTs. The maximum error (at ~1000x upsampling) is also on the order of 1e-4, far surpassing any threshold of perceptibility. Similarly, 1e-3 polar cutoff is not only completely below the dithering noise floor at 8-bits SDR, but also below JND (~10 bits). Going any higher than this starts to lead to visible/measurable artifacts, and going any lower is just slower for no benefit. Reducing option bloat, one commit at a time.
-
Niklas Haas authored
Useful for benchmarking e.g. scalers on still images.
-
- Sep 18, 2023
-
-
Niklas Haas authored
Should really have been part of the previous API bump, but oh well. We can't support this easily in the pl_frames_infer() case, and it's also not used by any downstream client currently. It's much simpler to just set ICC profiles to NULL.
-
- Sep 14, 2023
-
-
Niklas Haas authored
Re-gains us the functionality of pl_icc_params.
-
Niklas Haas authored
Addition of the pl_cache means we now persist ICC 3DLUTs across restarts, in which case we seriously need to use the actual hash of the profile to identify ICC profiles. Otherwise there will be cache collisions all over the place. Fixes: b38e1c84
-
Niklas Haas authored
Allows forcing the use of a scale pass to force all residual subpixel offsets, instead of implicitly ignoring them. Closes: #291 Closes: https://github.com/mpv-player/mpv/issues/11948
-
- Sep 13, 2023
-
-
Niklas Haas authored
For debugging purposes.
-
- Sep 08, 2023
-
-
Niklas Haas authored
With xxhash, 50 MB is plenty fast enough compared to the general vulkan init etc. overhead, and gives us plenty of room to store a number of ICC 3DLUTs and gamut mapping 3DLUTs.
-
Niklas Haas authored
xxhash is fast enough to not really worry about a few-MB large objects slowing down init process.
-
Niklas Haas authored
For debug purposes.
-
Niklas Haas authored
Probably won't work for ICC/3DLUT cache but these probably want their own custom mechanism anyway, since they're quite large.
-
- Sep 07, 2023
-
-
Niklas Haas authored
-
- Sep 05, 2023
-
-
Niklas Haas authored
To be logarithmic.
-
- Aug 28, 2023
-
-
Niklas Haas authored
-
Niklas Haas authored
This is the wrong layer to solve this problem, and in particular, hard-coding SDR 1.0 here prevents tone-mapping e.g. 200 nits scene to 50 nits projector. No longer needed hack now that we clamp in the tone mapper directly.
-
Niklas Haas authored
See previous commit.
-
- Aug 26, 2023
-
-
Niklas Haas authored
Allows scaling down the intensity of the saturation mapping step.
-
- Aug 22, 2023
-
-
Niklas Haas authored
Sigh, no real recourse other than to brute force the mapping.
-
Niklas Haas authored
Still need to add a custom UI for the advanced tunables, but I'll defer that to a future commit.
-
- Aug 18, 2023
-
-
Niklas Haas authored
To completely disable smoothing, since even a smoothing period of 1.0 implies a small amount of smoothing. This does technically regress the status quo behavior when passing 0 (which would previously see it being defaulted to 100), but with the way options are handled these days (via the PEAK_DETECT_DEFAULTS macros) I'm hoping to phase out the use of such implicit defaults to begin with. It also doesn't break any current client (I checked all).
-
- Aug 08, 2023
-
-
Niklas Haas authored
-
Niklas Haas authored
For convenience.
-
Niklas Haas authored
Doesn't actually amount to much of a change because we were already doing the equivalent of this internally. Just allows us to delete some boilerplate. Minor extra boilerplate needed to early-initialize the log.
-
- Aug 06, 2023
-
-
Niklas Haas authored
In retrospect I have no idea why I bothered with the complicated old implementation of this logic to begin with. By default, show only recomended filters for each usage type; hide the rest behind an advanced checkbox.
-
- Aug 02, 2023
-
-
Niklas Haas authored
Off by default to avoid expanding gamut unless requested.
-
- Jul 30, 2023
-
-
Niklas Haas authored
This has gotten a lot more sophisticated over the years, for better or worse.
-
Niklas Haas authored
"Insufficient decoding speed" can also happen due to other reasons such as the frame mixing method suddenly changing.
-
Niklas Haas authored
Code is clear enough without it.
-
Niklas Haas authored
Perfectly synchronizes start of playback with the start of the virtual PTS timeline, excluding the time taken in between measurement of `ts_start` and measurement of the first `ts_pre_update`. Sure, this is probably only a few nanoseconds, if the timer can even resolve it. But still.
-
Niklas Haas authored
I first wanted to make a nice graph here like with the shader stats but eventually bikeshedding got the best of me and I decided to just delete it because I couldn't figure out a clean way to integrate it into the nuklear interface. Besides, not needing to draw a graph vastly simplifies this already overly-verbose debugging / logging code.
-
Niklas Haas authored
It's a misnomer because it's the timestamp before calling pl_queue_update().
-
Niklas Haas authored
-
Niklas Haas authored
Inverts the order of operations to render first, then wait until the target PTS. This is a much better way to do things as it lowers the effective latency and jitter that would otherwise be added by the rendering time.
-
Niklas Haas authored
This can happen legitimately in the case of EOF or single frame media, in which case fallback to the current behavior (untimed mode) is fine. Partially-Fixes: !506
-
Kacper Michajłow authored
Will be useful for implementing this on other platforms.
-