From 3061aaa97727e39464de924274a437a04e44971c Mon Sep 17 00:00:00 2001
From: Alexandre Janniaux <alexandre.janniaux@gmail.com>
Date: Fri, 15 Nov 2019 13:31:53 +0100
Subject: [PATCH] video: fix crate path

---
 src/video.rs | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/video.rs b/src/video.rs
index ea25162..a71bd82 100644
--- a/src/video.rs
+++ b/src/video.rs
@@ -2,12 +2,12 @@
 // This file is part of vlc-rs.
 // Licensed under the MIT license, see the LICENSE file.
 
-use sys;
-use ::MediaPlayer;
-use ::TrackDescription;
-use ::enums::VideoAdjustOption;
-use ::tools::{to_cstr, from_cstr};
-use ::libc::c_void;
+use crate::sys;
+use crate::MediaPlayer;
+use crate::TrackDescription;
+use crate::enums::VideoAdjustOption;
+use crate::tools::{to_cstr, from_cstr};
+use libc::c_void;
 
 pub trait MediaPlayerVideoEx {
     fn toggle_fullscreen(&self);