util/frame: avoid using ffmpeg frame refs

This commit is contained in:
meh 2015-05-28 14:09:06 +02:00
parent b57bff3e61
commit 823f4a7ef4

View File

@ -41,20 +41,6 @@ impl Frame {
} }
} }
pub fn make_unique(&mut self) -> &mut Self {
unsafe {
av_frame_make_writable(self.ptr);
}
self
}
pub fn is_unique(&self) -> bool {
unsafe {
av_frame_is_writable(self.ptr) == 0
}
}
pub fn is_key(&self) -> bool { pub fn is_key(&self) -> bool {
unsafe { unsafe {
(*self.ptr).key_frame == 1 (*self.ptr).key_frame == 1
@ -154,9 +140,10 @@ unsafe impl Send for Frame { }
impl Clone for Frame { impl Clone for Frame {
fn clone(&self) -> Self { fn clone(&self) -> Self {
unsafe { let mut frame = Frame::new();
Frame { ptr: av_frame_clone(self.ptr) } frame.clone_from(self);
}
frame
} }
fn clone_from(&mut self, source: &Self) { fn clone_from(&mut self, source: &Self) {