forked from mirrors/gstreamer-rs
GstPlayer: Expose PlayerVisualization name and description
The name is the identifier of the visualization that has to be passed to gstreamer_player::Player::set_visualization(). Fixes #111
This commit is contained in:
parent
b6a5686798
commit
3451d5702d
2 changed files with 31 additions and 0 deletions
|
@ -51,6 +51,7 @@ mod player_video_info;
|
||||||
|
|
||||||
mod player_g_main_context_signal_dispatcher;
|
mod player_g_main_context_signal_dispatcher;
|
||||||
mod player_video_overlay_video_renderer;
|
mod player_video_overlay_video_renderer;
|
||||||
|
mod player_visualization;
|
||||||
|
|
||||||
// Re-export all the traits in a prelude module, so that applications
|
// Re-export all the traits in a prelude module, so that applications
|
||||||
// can always "use gst::prelude::*" without getting conflicts
|
// can always "use gst::prelude::*" without getting conflicts
|
||||||
|
|
30
gstreamer-player/src/player_visualization.rs
Normal file
30
gstreamer-player/src/player_visualization.rs
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
// Copyright (C) 2018 Philippe Normand <philn@igalia.com>
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
use glib::translate::*;
|
||||||
|
use std::ffi::CStr;
|
||||||
|
|
||||||
|
use PlayerVisualization;
|
||||||
|
|
||||||
|
impl PlayerVisualization {
|
||||||
|
pub fn name(&self) -> &str {
|
||||||
|
unsafe {
|
||||||
|
CStr::from_ptr((*self.to_glib_none().0).name)
|
||||||
|
.to_str()
|
||||||
|
.unwrap()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn description(&self) -> &str {
|
||||||
|
unsafe {
|
||||||
|
CStr::from_ptr((*self.to_glib_none().0).description)
|
||||||
|
.to_str()
|
||||||
|
.unwrap()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue