audio: fix crate path

merge-requests/7/merge
Alexandre Janniaux 2019-11-15 13:20:24 +01:00
parent 56fc69eb3e
commit 7b60a12911
1 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@
// This file is part of vlc-rs. // This file is part of vlc-rs.
// Licensed under the MIT license, see the LICENSE file. // Licensed under the MIT license, see the LICENSE file.
use sys; use crate::sys;
use ::MediaPlayer; use crate::MediaPlayer;
use ::TrackDescription; use crate::TrackDescription;
use ::tools::from_cstr; use crate::tools::from_cstr;
pub trait MediaPlayerAudioEx { pub trait MediaPlayerAudioEx {
fn get_mute(&self) -> Option<bool>; fn get_mute(&self) -> Option<bool>;