// Copyright (c) 2026 Christoph Gaffga
// SPDX-License-Identifier: GPL-3.0-only
// https://github.com/cgaffga/phasmcore
//! Video steganography.
//!
//! Phase 4a: the production pipeline is H.264 Baseline CAVLC
//! ([`h264_pipeline`]). The legacy HEVC/H.265 pipeline + its supporting
//! `capacity`, `gop`, `cbib`, and `pipeline` modules are archived behind
//! the `hevc-archive` feature flag (off by default). Source stays in tree
//! for future reference; re-enable with `--features hevc-archive`.
// H.264 (production) re-exports.
pub use ;
pub use crateis_mp4;
// HEVC (archived) re-exports — only visible when `hevc-archive` is enabled.