opus 0.3.0

Safe Rust bindings for libopus
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate opus;

fn main() {
    let mut rp = opus::Repacketizer::new().unwrap();
    let mut wip = rp.begin().cat_move(
        &[1, 2, 3]
        //~^ ERROR borrowed value does not live long enough
    ).unwrap();
    wip.out(&mut []);
}