pub type Ret = Result<c_int, c_int>;
A wrapper around c_int(return type of many ffmpeg inner libraries functions)
pub enum Ret { Ok(i32), Err(i32), }
Contains the success value
Contains the error value