linux-media 0.2.0

A Rust library providing access to the Linux Media Subsystem.
Documentation
1
2
3
4
5
6
7
8
9
use autocfg;

fn main() {
    let cfg = autocfg::new();
    cfg.emit_has_path("linux_media_sys::MEDIA_LNK_FL_ANCILLARY_LINK");
    cfg.emit_has_path("linux_media_sys::MEDIA_ENT_F_CONN_RF");
    cfg.emit_has_path("linux_media_sys::MEDIA_ENT_F_CONN_SVIDEO");
    cfg.emit_has_path("linux_media_sys::MEDIA_ENT_F_CONN_COMPOSITE");
}