phaneron-plugin 0.1.2

Interfaces for implementing Phaneron plugins in Rust
Documentation
use super::ColourSpec;

/// Colour space transformation for BT.601 (625 lines).
/// Reference: <https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.601-7-201103-I!!PDF-E.pdf>
pub const COLOUR_SPEC_BT_601_625: ColourSpec = ColourSpec {
    kR: 0.299,
    kB: 0.114,
    rx: 0.64,
    ry: 0.33,
    gx: 0.29,
    gy: 0.6,
    bx: 0.15,
    by: 0.06,
    wx: 0.3127,
    wy: 0.329,
    alpha: 1.099,
    beta: 0.018,
    gamma: 0.45,
    delta: 4.5,
};