video: fix crate path

merge-requests/7/merge
Alexandre Janniaux 2019-11-15 13:31:53 +01:00
parent 7b60a12911
commit 3061aaa977
1 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,12 @@
// 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 ::enums::VideoAdjustOption; use crate::enums::VideoAdjustOption;
use ::tools::{to_cstr, from_cstr}; use crate::tools::{to_cstr, from_cstr};
use ::libc::c_void; use libc::c_void;
pub trait MediaPlayerVideoEx { pub trait MediaPlayerVideoEx {
fn toggle_fullscreen(&self); fn toggle_fullscreen(&self);