forked from mirrors/gstreamer-rs
audio/video: Fix more unused imports
TODO: How about use glib::translate::*;?
This commit is contained in:
parent
82b4726bb7
commit
bb8e7c3e8f
2 changed files with 3 additions and 2 deletions
|
@ -9,7 +9,8 @@
|
|||
use std::ffi::CStr;
|
||||
use std::str;
|
||||
|
||||
use glib::translate::{from_glib, FromGlib, ToGlib, ToGlibPtr};
|
||||
use glib::translate::{from_glib, ToGlib};
|
||||
|
||||
use once_cell::sync::Lazy;
|
||||
|
||||
#[cfg(feature = "v1_18")]
|
||||
|
|
|
@ -10,7 +10,7 @@ use once_cell::sync::Lazy;
|
|||
use std::ffi::CStr;
|
||||
use std::str;
|
||||
|
||||
use glib::translate::{from_glib, FromGlib, ToGlib, ToGlibPtr};
|
||||
use glib::translate::{from_glib, FromGlib, ToGlib};
|
||||
|
||||
#[cfg(feature = "v1_18")]
|
||||
pub static VIDEO_FORMATS_ALL: Lazy<Box<[crate::VideoFormat]>> = Lazy::new(|| unsafe {
|
||||
|
|
Loading…
Reference in a new issue