oxideav-basic 0.0.6

Simple standard codecs and containers for oxideav (PCM, WAV, ...)
Documentation
//! Bundled simple formats: codecs and containers that are small and standard
//! enough to share one crate. Anything larger gets its own crate.

pub mod pcm;
pub mod slin;
pub mod wav;
pub mod y4m;

use oxideav_core::CodecRegistry;
use oxideav_core::ContainerRegistry;

/// Register every codec provided by `oxideav-basic` in a [`CodecRegistry`].
pub fn register_codecs(reg: &mut CodecRegistry) {
    pcm::register(reg);
}

/// Register every container provided by `oxideav-basic` in a [`ContainerRegistry`].
pub fn register_containers(reg: &mut ContainerRegistry) {
    wav::register(reg);
    slin::register(reg);
    y4m::register(reg);
}