mlt-core 0.12.2

MapLibre Tile library code
Documentation
use crate::decoder::{RawStream, StreamMeta};
use crate::{Analyze, StatType};

impl Analyze for RawStream<'_> {
    fn collect_statistic(&self, stat: StatType) -> usize {
        self.data.collect_statistic(stat)
    }

    fn for_each_stream(&self, cb: &mut dyn FnMut(StreamMeta)) {
        cb(self.meta);
    }
}

impl Analyze for StreamMeta {
    fn collect_statistic(&self, stat: StatType) -> usize {
        if stat == StatType::DecodedMetaSize {
            size_of::<Self>()
        } else {
            0
        }
    }
}