video: fix crate path
parent
7b60a12911
commit
3061aaa977
12
src/video.rs
12
src/video.rs
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue