You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a HEIC, you can be guaranteed that any items that share the same codec config can reuse the same decode sessions since the HEVC codec config box basically contains all details needed to configure the decoder.
This is not true for the AV1 codec config box. Some crucial details missing that I've noticed so far:
Dimensions (present with ispe)
Full-range/video-range (present with nclx)
Multi-layering details
MIAF tries to enforce that all tiles in a grid should be able to use the same decoder setup. IIRC it does this by saying that the codec config, color info and bit-depth needs to be shared by all tiles. But for AV1, I don't see anything that would disallow one of the tiles being a multi-layer stream, while the other tiles are single-layer streams. Maybe we don't care?
The text was updated successfully, but these errors were encountered:
When creating a HEIC, you can be guaranteed that any items that share the same codec config can reuse the same decode sessions since the HEVC codec config box basically contains all details needed to configure the decoder.
This is not true for the AV1 codec config box. Some crucial details missing that I've noticed so far:
ispe
)nclx
)MIAF tries to enforce that all tiles in a
grid
should be able to use the same decoder setup. IIRC it does this by saying that the codec config, color info and bit-depth needs to be shared by all tiles. But for AV1, I don't see anything that would disallow one of the tiles being a multi-layer stream, while the other tiles are single-layer streams. Maybe we don't care?The text was updated successfully, but these errors were encountered: