phaneron_plugin/
video.rs

1use abi_stable::StableAbi;
2
3/// Supported interlacing modes.
4#[repr(C)]
5#[derive(StableAbi)]
6pub enum InterlaceMode {
7    Progressive,
8    TopField,
9    BottomField,
10}
11
12/// Supported pixel packing formats.
13#[repr(C)]
14#[derive(StableAbi)]
15pub enum VideoFormat {
16    BGRA8,
17    RGBA8,
18    V210,
19    YUV420p,
20    YUV422p8,
21    YUV422p10,
22}