Mert
Mert
Thanks for the tips, @nyanmisaka! I didn't know about `tonemap_cuda` or the other filters you mentioned. I'll try using it here.
@nyanmisaka I did some testing and `tonemap_cuda` is indeed faster (106s vs 97s), but the resulting colors seem off compared to libplacebo and the source. Do you have any thoughts...
@fyfrey There shouldn't be any other changes to the RKMPP code so feel free to test it whenever you're able! It basically makes the software decoding variant the default, but...
@nyanmisaka Thanks, disabling de-saturation did the trick! The colors in the OpenCL image actually look closer to the HDR video than with libplacebo now. With that change, I think this...
Gotcha, sounds like it's too soon to use Vulkan so extensively. I actually made a branch changing everything (including cpu) to use a Vulkan pipeline before realizing it's so experimental...
Windows support isn't relevant for us, so it doesn't seem that bad for Linux. That being said, the motivation of using Vulkan would be to streamline everything to a single...
Would integration with ORMs be within scope for this? We're working on moving to Prisma for Node.js, but the lack of support for the vector type makes it hard to...
Prisma is split between a JS client and a Rust query engine. The client passes the JS options to the engine, which builds the query, sends it and transforms the...
Probably the most helpful resource is [this](https://github.com/prisma/prisma-engines/pull/4208) PR that adds PostGIS types. It's massive, though, so I'm not sure how big an undertaking this would be.
It does apparently use nclx: ``` Color Representation : nclx 12 16 6 ``` A flag to enable `convert_hdr_to_8bit` sounds good! The only thing this doesn't handle is HDR ->...