util/frame: make it Sync

This commit is contained in:
meh 2015-09-29 01:11:14 +02:00
parent 572f0f2045
commit a544f0827c

View File

@ -32,6 +32,7 @@ pub struct Frame {
}
unsafe impl Send for Frame { }
unsafe impl Sync for Frame { }
impl Frame {
pub unsafe fn wrap(ptr: *mut AVFrame) -> Self {