//! HEIF/HEIC/AVIF metadata writer.
//!
//! HEIF uses ISOBMFF (same as MP4) with additional item property boxes.
//! Metadata is stored in meta/iprp/ipco boxes.
//! We delegate to the MP4 writer for the common atom structure.
use crateResult;
use cratemp4_writer;
/// Write metadata to HEIF/HEIC/AVIF files.
/// These use the same ISOBMFF container as MP4.