neoffmpeg-rs 1.0.2

Safe FFmpeg wrapper (fork of rust-ffmpeg formerly known as ffmpeg-next)
Documentation
1
2
3
4
5
6
7
8
9
use ffi::*;

pub trait Ref {
    fn as_ptr(&self) -> *const AVPacket;
}

pub trait Mut {
    fn as_mut_ptr(&mut self) -> *mut AVPacket;
}