Skip to content
Snippets Groups Projects
  1. Jan 01, 2021
  2. Dec 05, 2020
    • Niklas Haas's avatar
      meson: bump major version · 83fc3aa2
      Niklas Haas authored
      Because this is actually a rather large release, I kinda feel it's about
      time to bump the major version. I still haven't decided if I want to
      switch to semver or not to avoid spilling into the three digits, but oh
      well. Now it's done, anyways.
      v3.104.0-rc1
      83fc3aa2
    • Niklas Haas's avatar
      README: significant rewrite · 58584fd5
      Niklas Haas authored
      A lot of this was kinda dry and out-of-date. Modernize and expand by
      emphasizing the kinda cool things libplacebo can actually do.
      58584fd5
  3. Dec 04, 2020
    • Niklas Haas's avatar
      renderer: allow blending final output · 5e809d89
      Niklas Haas authored
      This is pretty trivial to support, and moves things further in
      consideration of #118.
      5e809d89
    • Niklas Haas's avatar
      gpu: disentangle texture filters from pl_tex · 0d6b3709
      Niklas Haas authored
      Merging the texture filter with the pl_tex object itself is a left-over
      from the mpv RA days. While it involves a different set of tradeoffs, I
      think it's far better overall to have this concept separate from the
      texture, simply because it allows the shaders to pick their preferred
      sample mode dynamically (improving performance in many cases), and in
      general reduces the burden on the provider of the textures (i.e. the
      user) to set this up.
      
      In addition to splitting this from the pl_tex, we move it to
      pl_desc_binding, where it can be changed at runtime. To cut down on
      redundancy, we re-use pl_desc_binding for pl_shader_desc as well. Note
      that `access` could also live inside pl_desc_binding in principle, but
      there's no practical reason to need this because changing the access
      mode requires a shader recompilation anyway.
      
      Deprecate all the old fields rather than removing them outright, to
      hopefully cut down on the amount of frustration this change will cause.
      The `pl_tex_blit` function got params-ified en passant, though, which is
      probably the most breaking change amidst this sea of breaking changes.
      0d6b3709
  4. Dec 03, 2020
    • Niklas Haas's avatar
      renderer: fix aliasing in corner case · 48877b0d
      Niklas Haas authored
      This logic was old and wrong, because params->upscaler and
      params->downscaler might point to the same thing, in which case this can
      end up being `true` even when downscaling.
      
      Essentially, this would trigger if both upscaler and downscaler are set
      to something like bicubic, in which case downscaling would alias.
      48877b0d
    • Niklas Haas's avatar
      renderer: fix wrong assertion · c0e1ee8f
      Niklas Haas authored
      This should be <= 4, not < 4.
      c0e1ee8f
    • Niklas Haas's avatar
      vulkan: decouple samplers from pl_tex_vk · 3bc5d883
      Niklas Haas authored
      VkSamplers aren't actually tied to any specific image or imageview, so
      we can statically create them on pl_gpu creation and just assign the
      correct sampler when updating the descriptor.
      
      This reduces the amount of unnecessary objects per texture
      creation/destruction by a grand total of one (1).
      
      Sort of pointless at the moment, but the idea moving forwards is to also
      decouple the idea of samplers from the `pl_tex` abstraction entirely.
      3bc5d883
    • Niklas Haas's avatar
      gpu: add pl_tex_poll · 4033158a
      Niklas Haas authored
      After holding out against this function for the longest time ever, I
      finally stumbled upon a justified use case for its existence:
      synchronizing resource destruction of imported textures with external
      libraries.
      
      I hope I made it sufficiently clear that this function's existence does
      not imply you can skip out on using pl_sync / semaphores.
      4033158a
    • Niklas Haas's avatar
      vulkan: log errors related to handle type probing · a1728417
      Niklas Haas authored
      Should hopefully make issues like #117 easier to debug.
      a1728417
  5. Dec 02, 2020
    • Niklas Haas's avatar
      utils/libav: sanitize some illegal metadata combinations · 30efeff0
      Niklas Haas authored
      As clarified by @cyanreg, FFmpeg filters are supposed to ignore
      obviously "wrong" combinations, in particular RGB + limited range. We
      also make an effort to clean up broken sig_peak tagging, since this
      exists in practice.
      
      I decided not to sanitize the other paramaters until I encounter a
      broken file that demand it, because it's hard to draw the line
      otherwise, although we could certainly come up with a few more ideas for
      things that are potential candidates. (ICtCp with non-HDR curve? XYZ?)
      
      Also clean up some whitespace because I can't be bothered making a
      separate commit for it.
      30efeff0
    • Niklas Haas's avatar
      include: mark deprecated things as deprecated · bd72b233
      Niklas Haas authored
      We over-ride this when compiling our own code, though, to avoid
      triggering deprecation warnings in our own fallback paths.
      
      As a side-note, also fix the `include` test to include the correct
      config.h location.
      bd72b233
    • Niklas Haas's avatar
      renderer: merge pl_image and pl_render_target into pl_frame · 5b508c5b
      Niklas Haas authored
      This is motivated by these two structs, essentially, having
      conglomerated into unity. Drop the deprecated fields from each and just
      go ahead with the big search & replace.
      
      This also allows us to unify a couple of helper functions, quite
      pleasingly. The only really annoying thing is that `target.av1_grain`
      makes zero sense, but whatever.
      
      We also provide a new helper function to bridge the "functionality gap"
      in the `pl_render_target_partial` / `pl_tex_clear` checks.
      
      An attempt was made to preserve backwards compatibility, for what it's
      worth.
      5b508c5b
    • Niklas Haas's avatar
      renderer: fix possible compute to non-storable fbo · 8037ba53
      Niklas Haas authored
      The scaler code only checks whether or not the FBOFMT is storable,
      but in the case of e.g. draw_overlays, we have to check the actual FBO
      (provided by the user) instead.
      
      Solve this by just checking both. (Note: In theory, if the FBO is
      storable but FBOFMT is not, this would be a false negative. But
      whatever.)
      8037ba53
    • Niklas Haas's avatar
      renderer: allow rendering to planar targets · 831404dd
      Niklas Haas authored
      This is a major overhaul of the target rendering code, and the renderer
      code in general (to keep things organized and understandable).
      
      The motivation comes from vf_libplacebo, which wants to let users render
      out subsampled YCbCr content directly. Unfortunately, we're still pretty
      much forced to upconvert to RGB internally, if only for the sake of
      things like tone mapping, linear scaling, and so forth. Plus, the entire
      pl_renderer architecture is very much designed around the idea that
      there's only one plane currently being rendered. While it's not entirely
      impossible to change this, it'd be _way_ outside the scope of this
      already massive change.
      
      Due to the major change of a core API, I decided to make the old `pl_tex
      *fbo` interface merely deprecated, rather than removing it entirely. Due
      to the increasing unification between `pl_image` and `pl_render_target`,
      I may choose to merge these into a single `pl_frame` at some point in
      the future, but that would also imply dropping this bit of backwards
      compatibility, so I'll postpone that refactor until after the next major
      release.
      
      Pick up a few bugs related to the dithering/compute indirection code
      while we're at it.
      
      Added a new test case to make sure it round trips, even for oddly-sized
      planes.
      831404dd
    • Niklas Haas's avatar
      shaders/colorspace: fix yet another bt.2390 overflow · 1b80bc4c
      Niklas Haas authored
      Turns out we also need to clamp negative values, specifically for the PQ
      function. I'm not sure if both clamps are strictly needed, but I guess
      it's better to be safe than sorry.
      1b80bc4c
    • Niklas Haas's avatar
      libav: backwards compatibility with older versions · 5ad31fe5
      Niklas Haas authored
      We can go all the way back to 55.74 by dropping our reliance on
      AVCOL_PRI_EBU3213. Fortunately, this is not needed, because the
      backwards compatible name AVCOL_PRI_JEDEC_P22 is identical to it.
      5ad31fe5
    • Niklas Haas's avatar
      ci: update to new image · 84df9e4d
      Niklas Haas authored
      This includes libavutil-dev, so we can run the libav test.
      84df9e4d
  6. Dec 01, 2020
  7. Nov 30, 2020
    • Niklas Haas's avatar
      shaders/sampling: allow sampling arbitrary components · 89b0cefb
      Niklas Haas authored
      This replaces `int components` by a new `uint8_t component_mask`, which
      is more flexible. I decided not to deprecate the original field, because
      it doesn't really cause any harm to continue supporting, and in most
      cases you don't need the flexibility provided by a mask, so it's just a
      hassle.
      
      Made for the sake of allowing us to more efficiently render sub-sampled
      planes without needing to waste GPU time scaling unnecessary components
      like luma.
      89b0cefb
    • Niklas Haas's avatar
      shaders/colorspace: fix dithering to high depth · 50fa6bc1
      Niklas Haas authored
      The old code tried printf'ing a small float using %f, which resulted in
      a rounded literal that was quite far from 1/scale. This led to the image
      getting brighter than it should be, globally. The effect was very
      significant for higher bit depths.
      
      Fixed this, and improved the precision, by printing exact integer
      literals, which get turned into exact float literals by the shader
      compiler.
      50fa6bc1
    • Niklas Haas's avatar
      renderer: fix subsampled plane alignment (again) · 18310a67
      Niklas Haas authored
      I never seem to get a break with this logic. Anyway, what happened
      *this* time was that I noticed `rx`, `ry` were being incorrectly
      calculated (they're supposed to be floats, but I was dividing two ints).
      
      I also realized while working through a paper example that using `rx`
      for the plane shifts was incorrect to begin with. Fortunately, for most
      real-world content, `rx` and `rrx` are identical. For cases where they
      aren't, the earlier answer ended up effectively cancelling out this
      error, at the cost of an off-by-one (resulting in tiny, probably
      unnoticed chroma misalignment).
      
      The correct logic is to use rrx/rry for both. Fixed, and tested. (In
      particular, by making sure a YCbCr image survives being converted to
      RGB and back to YCbCr by the renderer)
      18310a67
  8. Nov 27, 2020
  9. Nov 26, 2020
    • Niklas Haas's avatar
      vulkan: allow disabling page-rounding imported pointers · 9db5f97d
      Niklas Haas authored
      This is technically a hack, or at the very least, some sort of
      ID/UD-type behaviour. It works in practice (for good reasons), but
      juuust in case, it would really be a smart idea to allow disabling it.
      
      Also swap the order of the error messages to make sure checks happen in
      a more sensible order.
      9db5f97d
  10. Nov 25, 2020
  11. Nov 19, 2020
  12. Nov 18, 2020
Loading