Merge branch 'send'
commit
c37c697d57
|
@ -31,6 +31,8 @@ pub struct Instance {
|
|||
|
||||
}
|
||||
|
||||
unsafe impl Send for Instance {}
|
||||
|
||||
impl Instance {
|
||||
/// Create and initialize a libvlc instance with specified args.
|
||||
/// Note: args.len() has to be less or equal to i32::MAX
|
||||
|
|
|
@ -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> {
|
||||
|
|
|
@ -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> {
|
||||
|
|
Loading…
Reference in New Issue