Implement Send to allow for shared state

Signed-off-by: Aron Heinecke <aron.heinecke@t-online.de>
merge-requests/7/merge
Aron Heinecke 2018-11-25 03:19:01 +01:00
parent 43d6f46d34
commit 7238e34869
No known key found for this signature in database
GPG Key ID: 395630FB41D3CC71
3 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,8 @@ pub struct Instance {
pub(crate) ptr: *mut sys::libvlc_instance_t,
}
unsafe impl Send for Instance {}
impl Instance {
/// Create and initialize a libvlc instance.
pub fn new() -> Option<Instance> {

View File

@ -12,6 +12,8 @@ pub struct Media {
pub(crate) ptr: *mut sys::libvlc_media_t,
}
unsafe impl Send for Media {}
impl Media {
/// Create a media with a certain given media resource location, for instance a valid URL.
pub fn new_location(instance: &Instance, mrl: &str) -> Option<Media> {

View File

@ -15,6 +15,8 @@ pub struct MediaPlayer {
pub(crate) ptr: *mut sys::libvlc_media_player_t,
}
unsafe impl Send for MediaPlayer {}
impl MediaPlayer {
/// Create an empty Media Player object
pub fn new(instance: &Instance) -> Option<MediaPlayer> {