//! Ogg's CRC-32 variant (RFC 3533 §6): polynomial `0x04C11DB7`, MSB-first, no
//! input/output reflection, init `0`, no final XOR — **not** the same variant as
//! zlib/PNG `crc32` (which is bit-reflected).
const POLY: u32 = 0x04C1_1DB7;
/// Compute the Ogg page CRC over `data` (caller must zero the page's own CRC
/// field before calling, per RFC 3533).
pub