Brad Hards
Brad Hards
Looks fine for me. @dukesook anything more?
Have you built de265? A bit more context might help us to help you - configuration, steps, fault finding / debugging you've already done could all be helpful.
Do you mean in the C++ bindings? If so, it looks like it already is: https://github.com/strukturag/libheif/blob/33e00a4ec54e6fffca3febe3054017b1b81a0c49/libheif/heif_cxx.h#L34-L36 Can you show a small example of the problem?
> https://github.com/strukturag/libheif/blob/33e00a4ec54e6fffca3febe3054017b1b81a0c49/libheif/error.h#L70 > > This `Error` class is not in the heif namespace. That isn't part of the public API AFAICT - it isn't an installed header. Edit: are you...
Sorry, I meant what is going into the cmake step, rather than what is coming out. There is a CMake flag "WITH_REDUCED_VISIBILITY" which should default to ON. That said, I'm...
Can you check what happens if you use cmake without the magick script ? I'm trying to work out if this is a libheif issue or a problem in that...
I tried this with an AVIF file I'd previously created with libheif. ``` gdalinfo ~/testbed20/silvereye/smalltiles_2024-06-29/complex_osm_tile_aom_q100.avif Driver: AVIF/AV1 Image File Format Files: /home/bradh/testbed20/silvereye/smalltiles_2024-06-29/complex_osm_tile_aom_q100.avif Size is 256, 256 Image Structure Metadata: YUV_SUBSAMPLING=420...
> From the error message, I would assume that your libavif build has been done without any codec at all (aom, dav1d or libgav1), which is quite surprising that its...
> Image Grid has a maximum of 256 tile rows/columns, stored in uint16. Ah, indeed. Mixed up the image size and the tile limits.
> I suggest that we limit the total number of tiles instead of width/height separately, as was recently implemented in #1204 Sounds reasonable. > I.e. `MAX_NUMBER_OF_TILES` = 32768*32768; Is this...