*: update to 2.7

This commit is contained in:
meh
2015-06-19 01:04:49 +02:00
parent e95c55dbf5
commit 1e5d77816a
6 changed files with 80 additions and 6 deletions

View File

@ -217,6 +217,12 @@ impl Video {
(*self.as_mut_ptr()).mb_decision = value.into();
}
}
pub fn set_intra_dc_precision(&mut self, value: u8) {
unsafe {
(*self.as_mut_ptr()).intra_dc_precision = value as c_int;
}
}
}
impl Deref for Video {