160 lines
5.1 KiB
Rust
160 lines
5.1 KiB
Rust
// Copyright (c) 2015 T. Okubo
|
|
// This file is part of vlc-rs.
|
|
// Licensed under the MIT license, see the LICENSE file.
|
|
|
|
use crate::enums::VideoAdjustOption;
|
|
use crate::tools::{from_cstr, to_cstr};
|
|
use crate::MediaPlayer;
|
|
use crate::TrackDescription;
|
|
use libc::c_void;
|
|
use vlc_sys as sys;
|
|
|
|
pub trait MediaPlayerVideoEx {
|
|
fn toggle_fullscreen(&self);
|
|
fn set_fullscreen(&self, fullscreen: bool);
|
|
fn get_fullscreen(&self) -> bool;
|
|
fn set_key_input(&self, on: bool);
|
|
fn set_mouse_input(&self, on: bool);
|
|
fn get_size(&self, num: u32) -> Option<(u32, u32)>;
|
|
fn get_video_track(&self) -> Option<i32>;
|
|
fn set_video_track(&self, track: i32);
|
|
fn get_cursor(&self, num: u32) -> Option<(i32, i32)>;
|
|
fn get_scale(&self) -> f32;
|
|
fn set_scale(&self, factor: f32);
|
|
fn get_aspect_ratio(&self) -> Option<String>;
|
|
fn set_aspect_ratio(&self, aspect: Option<&str>);
|
|
fn get_video_track_description(&self) -> Option<Vec<TrackDescription>>;
|
|
fn get_adjust_int(&self, option: VideoAdjustOption) -> i32;
|
|
fn set_adjust_int(&self, option: VideoAdjustOption, value: i32);
|
|
fn get_adjust_float(&self, option: VideoAdjustOption) -> f32;
|
|
fn set_adjust_float(&self, option: VideoAdjustOption, value: f32);
|
|
}
|
|
|
|
impl MediaPlayerVideoEx for MediaPlayer {
|
|
fn toggle_fullscreen(&self) {
|
|
unsafe {
|
|
sys::libvlc_toggle_fullscreen(self.ptr);
|
|
}
|
|
}
|
|
fn set_fullscreen(&self, fullscreen: bool) {
|
|
unsafe {
|
|
sys::libvlc_set_fullscreen(self.ptr, if fullscreen { 1 } else { 0 });
|
|
}
|
|
}
|
|
fn get_fullscreen(&self) -> bool {
|
|
unsafe { sys::libvlc_get_fullscreen(self.ptr) != 0 }
|
|
}
|
|
fn set_key_input(&self, on: bool) {
|
|
unsafe {
|
|
sys::libvlc_video_set_key_input(self.ptr, if on { 1 } else { 0 });
|
|
}
|
|
}
|
|
fn set_mouse_input(&self, on: bool) {
|
|
unsafe {
|
|
sys::libvlc_video_set_mouse_input(self.ptr, if on { 1 } else { 0 });
|
|
}
|
|
}
|
|
fn get_size(&self, num: u32) -> Option<(u32, u32)> {
|
|
unsafe {
|
|
let mut x = 0;
|
|
let mut y = 0;
|
|
let res = sys::libvlc_video_get_size(self.ptr, num, &mut x, &mut y);
|
|
if res == -1 {
|
|
None
|
|
} else {
|
|
Some((x, y))
|
|
}
|
|
}
|
|
}
|
|
fn get_cursor(&self, num: u32) -> Option<(i32, i32)> {
|
|
unsafe {
|
|
let mut x = 0;
|
|
let mut y = 0;
|
|
let res = sys::libvlc_video_get_cursor(self.ptr, num, &mut x, &mut y);
|
|
if res == -1 {
|
|
None
|
|
} else {
|
|
Some((x, y))
|
|
}
|
|
}
|
|
}
|
|
fn get_scale(&self) -> f32 {
|
|
unsafe { sys::libvlc_video_get_scale(self.ptr) }
|
|
}
|
|
fn set_scale(&self, factor: f32) {
|
|
unsafe {
|
|
sys::libvlc_video_set_scale(self.ptr, factor);
|
|
}
|
|
}
|
|
fn get_video_track(&self) -> Option<i32> {
|
|
unsafe {
|
|
let track = sys::libvlc_video_get_track(self.ptr);
|
|
if track == -1 {
|
|
None
|
|
} else {
|
|
Some(track)
|
|
}
|
|
}
|
|
}
|
|
fn set_video_track(&self, track: i32) {
|
|
unsafe {
|
|
sys::libvlc_video_set_track(self.ptr, track);
|
|
}
|
|
}
|
|
fn get_aspect_ratio(&self) -> Option<String> {
|
|
unsafe {
|
|
let p = sys::libvlc_video_get_aspect_ratio(self.ptr);
|
|
let s = from_cstr(p);
|
|
if !p.is_null() {
|
|
sys::libvlc_free(p as *mut c_void);
|
|
}
|
|
s
|
|
}
|
|
}
|
|
fn set_aspect_ratio(&self, aspect: Option<&str>) {
|
|
unsafe {
|
|
if let Some(a) = aspect {
|
|
sys::libvlc_video_set_aspect_ratio(self.ptr, to_cstr(a).as_ptr());
|
|
} else {
|
|
sys::libvlc_video_set_aspect_ratio(self.ptr, ::std::ptr::null());
|
|
}
|
|
}
|
|
}
|
|
fn get_video_track_description(&self) -> Option<Vec<TrackDescription>> {
|
|
unsafe {
|
|
let p0 = sys::libvlc_video_get_track_description(self.ptr);
|
|
if p0.is_null() {
|
|
return None;
|
|
}
|
|
let mut td = Vec::new();
|
|
let mut p = p0;
|
|
|
|
while !(*p).p_next.is_null() {
|
|
td.push(TrackDescription {
|
|
id: (*p).i_id,
|
|
name: from_cstr((*p).psz_name),
|
|
});
|
|
p = (*p).p_next;
|
|
}
|
|
sys::libvlc_track_description_list_release(p0);
|
|
Some(td)
|
|
}
|
|
}
|
|
fn get_adjust_int(&self, option: VideoAdjustOption) -> i32 {
|
|
unsafe { sys::libvlc_video_get_adjust_int(self.ptr, option as u32) }
|
|
}
|
|
fn set_adjust_int(&self, option: VideoAdjustOption, value: i32) {
|
|
unsafe {
|
|
sys::libvlc_video_set_adjust_int(self.ptr, option as u32, value);
|
|
}
|
|
}
|
|
fn get_adjust_float(&self, option: VideoAdjustOption) -> f32 {
|
|
unsafe { sys::libvlc_video_get_adjust_float(self.ptr, option as u32) }
|
|
}
|
|
fn set_adjust_float(&self, option: VideoAdjustOption, value: f32) {
|
|
unsafe {
|
|
sys::libvlc_video_set_adjust_float(self.ptr, option as u32, value);
|
|
}
|
|
}
|
|
}
|