//! MPEG-2 PSI section CRC-32 variant (ISO/IEC 13818-1 Annex A / ITU-T H.222.0):
//! polynomial `0x04C11DB7`, MSB-first, no input/output reflection, init
//! `0xFFFFFFFF`, no final XOR. Same polynomial as Ogg's CRC (`ogg` crate) but a
//! **different init value** — the two are not interchangeable.
const POLY: u32 = 0x04C1_1DB7;
/// Compute the MPEG-2 PSI section CRC-32 over `data` (the section bytes up to
/// but not including the trailing 4-byte CRC field itself).
pub