2020-01-30 21:15:08 +00:00
|
|
|
// Copyright (C) 2020 Sebastian Dröge <sebastian@centricular.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::ToGlibPtr;
|
|
|
|
|
2020-05-26 15:35:35 +00:00
|
|
|
use std::convert;
|
2020-01-30 21:15:08 +00:00
|
|
|
use std::ops;
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
2020-11-22 09:53:17 +00:00
|
|
|
pub struct VideoConverter(ptr::NonNull<ffi::GstVideoConverter>);
|
2020-01-30 21:15:08 +00:00
|
|
|
|
|
|
|
impl Drop for VideoConverter {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
2020-11-22 09:53:17 +00:00
|
|
|
ffi::gst_video_converter_free(self.0.as_ptr());
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Send for VideoConverter {}
|
|
|
|
unsafe impl Sync for VideoConverter {}
|
|
|
|
|
|
|
|
impl VideoConverter {
|
|
|
|
pub fn new(
|
2020-11-22 09:53:17 +00:00
|
|
|
in_info: &crate::VideoInfo,
|
|
|
|
out_info: &crate::VideoInfo,
|
2020-01-30 21:15:08 +00:00
|
|
|
config: Option<VideoConverterConfig>,
|
|
|
|
) -> Result<Self, glib::BoolError> {
|
2020-03-22 14:18:47 +00:00
|
|
|
assert_initialized_main_thread!();
|
2020-01-30 21:15:08 +00:00
|
|
|
if in_info.fps() != out_info.fps() {
|
2020-11-22 09:53:17 +00:00
|
|
|
return Err(glib::glib_bool_error!("Can't do framerate conversion"));
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if in_info.interlace_mode() != out_info.interlace_mode() {
|
2020-11-22 09:53:17 +00:00
|
|
|
return Err(glib::glib_bool_error!("Can't do interlacing conversion"));
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe {
|
2020-11-22 09:53:17 +00:00
|
|
|
let ptr = ffi::gst_video_converter_new(
|
2020-01-30 21:15:08 +00:00
|
|
|
in_info.to_glib_none().0 as *mut _,
|
|
|
|
out_info.to_glib_none().0 as *mut _,
|
|
|
|
config.map(|s| s.0.into_ptr()).unwrap_or(ptr::null_mut()),
|
|
|
|
);
|
|
|
|
if ptr.is_null() {
|
2020-11-22 09:53:17 +00:00
|
|
|
Err(glib::glib_bool_error!("Failed to create video converter"))
|
2020-01-30 21:15:08 +00:00
|
|
|
} else {
|
|
|
|
Ok(VideoConverter(ptr::NonNull::new_unchecked(ptr)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_config(&self) -> VideoConverterConfig {
|
|
|
|
unsafe {
|
|
|
|
VideoConverterConfig(
|
2020-11-22 09:53:17 +00:00
|
|
|
gst::StructureRef::from_glib_borrow(ffi::gst_video_converter_get_config(
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.as_ptr(),
|
|
|
|
))
|
|
|
|
.to_owned(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_config(&mut self, config: VideoConverterConfig) {
|
|
|
|
unsafe {
|
2020-11-22 09:53:17 +00:00
|
|
|
ffi::gst_video_converter_set_config(self.0.as_ptr(), config.0.into_ptr());
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn frame<T>(
|
|
|
|
&self,
|
2020-11-22 09:53:17 +00:00
|
|
|
src: &crate::VideoFrame<T>,
|
|
|
|
dest: &mut crate::VideoFrame<crate::video_frame::Writable>,
|
2020-01-30 21:15:08 +00:00
|
|
|
) {
|
|
|
|
unsafe {
|
2020-11-22 09:53:17 +00:00
|
|
|
ffi::gst_video_converter_frame(self.0.as_ptr(), src.as_ptr(), dest.as_mut_ptr());
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn frame_ref<T>(
|
|
|
|
&self,
|
2020-11-22 09:53:17 +00:00
|
|
|
src: &crate::VideoFrameRef<T>,
|
|
|
|
dest: &mut crate::VideoFrameRef<&mut gst::BufferRef>,
|
2020-01-30 21:15:08 +00:00
|
|
|
) {
|
|
|
|
unsafe {
|
2020-11-22 09:53:17 +00:00
|
|
|
ffi::gst_video_converter_frame(self.0.as_ptr(), src.as_ptr(), dest.as_mut_ptr());
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct VideoConverterConfig(gst::Structure);
|
|
|
|
|
|
|
|
impl ops::Deref for VideoConverterConfig {
|
|
|
|
type Target = gst::StructureRef;
|
|
|
|
|
|
|
|
fn deref(&self) -> &gst::StructureRef {
|
|
|
|
self.0.deref()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::DerefMut for VideoConverterConfig {
|
|
|
|
fn deref_mut(&mut self) -> &mut gst::StructureRef {
|
|
|
|
self.0.deref_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<gst::StructureRef> for VideoConverterConfig {
|
|
|
|
fn as_ref(&self) -> &gst::StructureRef {
|
|
|
|
self.0.as_ref()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsMut<gst::StructureRef> for VideoConverterConfig {
|
|
|
|
fn as_mut(&mut self) -> &mut gst::StructureRef {
|
|
|
|
self.0.as_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for VideoConverterConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
VideoConverterConfig::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-26 15:35:35 +00:00
|
|
|
impl convert::TryFrom<gst::Structure> for VideoConverterConfig {
|
|
|
|
type Error = glib::BoolError;
|
|
|
|
|
|
|
|
fn try_from(v: gst::Structure) -> Result<VideoConverterConfig, Self::Error> {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
if v.get_name() == "GstVideoConverter" {
|
|
|
|
Ok(VideoConverterConfig(v))
|
|
|
|
} else {
|
2020-11-22 09:53:17 +00:00
|
|
|
Err(glib::glib_bool_error!(
|
|
|
|
"Structure is no VideoConverterConfig"
|
|
|
|
))
|
2020-05-26 15:35:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> convert::TryFrom<&'a gst::StructureRef> for VideoConverterConfig {
|
|
|
|
type Error = glib::BoolError;
|
|
|
|
|
|
|
|
fn try_from(v: &'a gst::StructureRef) -> Result<VideoConverterConfig, Self::Error> {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
VideoConverterConfig::try_from(v.to_owned())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<VideoConverterConfig> for gst::Structure {
|
|
|
|
fn from(v: VideoConverterConfig) -> gst::Structure {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
v.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-30 21:15:08 +00:00
|
|
|
impl VideoConverterConfig {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
VideoConverterConfig(gst::Structure::new_empty("GstVideoConverter"))
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_resampler_method(&mut self, v: crate::VideoResamplerMethod) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.resampler-method", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_resampler_method(&self) -> crate::VideoResamplerMethod {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.resampler-method")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoResamplerMethod::Cubic)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_chroma_resampler_method(&mut self, v: crate::VideoResamplerMethod) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.chroma-resampler-method", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_chroma_resampler_method(&self) -> crate::VideoResamplerMethod {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.chroma-resampler-method")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoResamplerMethod::Linear)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_resampler_taps(&mut self, v: u32) {
|
|
|
|
self.0.set("GstVideoConverter.resampler-taps", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_resampler_taps(&self) -> u32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.resampler-taps")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(0)
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_dither_method(&mut self, v: crate::VideoDitherMethod) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.dither-method", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_dither_method(&self) -> crate::VideoDitherMethod {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.dither-method")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoDitherMethod::Bayer)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_dither_quantization(&mut self, v: u32) {
|
|
|
|
self.0.set("GstVideoConverter.dither-quantization", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_dither_quantization(&self) -> u32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.dither-quantization")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_src_x(&mut self, v: i32) {
|
|
|
|
self.0.set("GstVideoConverter.src-x", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_src_x(&self) -> i32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.src-x")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_src_y(&mut self, v: i32) {
|
|
|
|
self.0.set("GstVideoConverter.src-y", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_src_y(&self) -> i32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.src-y")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_src_width(&mut self, v: Option<i32>) {
|
|
|
|
if let Some(v) = v {
|
|
|
|
self.0.set("GstVideoConverter.src-width", &v);
|
|
|
|
} else {
|
|
|
|
self.0.remove_field("GstVideoConverter.src-width");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_src_width(&self) -> Option<i32> {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.src-width")
|
|
|
|
.expect("Wrong type")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_src_height(&mut self, v: Option<i32>) {
|
|
|
|
if let Some(v) = v {
|
|
|
|
self.0.set("GstVideoConverter.src-height", &v);
|
|
|
|
} else {
|
|
|
|
self.0.remove_field("GstVideoConverter.src-height");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_src_height(&self) -> Option<i32> {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.src-height")
|
|
|
|
.expect("Wrong type")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_dest_x(&mut self, v: i32) {
|
|
|
|
self.0.set("GstVideoConverter.dest-x", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_dest_x(&self) -> i32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.dest-x")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_dest_y(&mut self, v: i32) {
|
|
|
|
self.0.set("GstVideoConverter.dest-y", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_dest_y(&self) -> i32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.dest-y")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_dest_width(&mut self, v: Option<i32>) {
|
|
|
|
if let Some(v) = v {
|
|
|
|
self.0.set("GstVideoConverter.dest-width", &v);
|
|
|
|
} else {
|
|
|
|
self.0.remove_field("GstVideoConverter.dest-width");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_dest_width(&self) -> Option<i32> {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.dest-width")
|
|
|
|
.expect("Wrong type")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_dest_height(&mut self, v: Option<i32>) {
|
|
|
|
if let Some(v) = v {
|
|
|
|
self.0.set("GstVideoConverter.dest-height", &v);
|
|
|
|
} else {
|
|
|
|
self.0.remove_field("GstVideoConverter.dest-height");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_dest_height(&self) -> Option<i32> {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.dest-height")
|
|
|
|
.expect("Wrong type")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_fill_border(&mut self, v: bool) {
|
|
|
|
self.0.set("GstVideoConverter.fill-border", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_fill_border(&self) -> bool {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.fill-border")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_alpha_value(&mut self, v: f64) {
|
|
|
|
self.0.set("GstVideoConverter.alpha-value", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_alpha_value(&self) -> f64 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.alpha-value")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(1.0)
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_alpha_mode(&mut self, v: crate::VideoAlphaMode) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.alpha-mode", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_alpha_mode(&self) -> crate::VideoAlphaMode {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.alpha-mode")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoAlphaMode::Copy)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_border_argb(&mut self, v: u32) {
|
|
|
|
self.0.set("GstVideoConverter.border-argb", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_border_argb(&self) -> u32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.border-argb")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(0xff_00_00_00)
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_chroma_mode(&mut self, v: crate::VideoChromaMode) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.chroma-mode", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_chroma_mode(&self) -> crate::VideoChromaMode {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.chroma-mode")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoChromaMode::Full)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_matrix_mode(&mut self, v: crate::VideoMatrixMode) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.matrix-mode", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_matrix_mode(&self) -> crate::VideoMatrixMode {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.matrix-mode")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoMatrixMode::Full)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_gamma_mode(&mut self, v: crate::VideoGammaMode) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.gamma-mode", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_gamma_mode(&self) -> crate::VideoGammaMode {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.gamma-mode")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoGammaMode::None)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn set_primaries_mode(&mut self, v: crate::VideoPrimariesMode) {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0.set("GstVideoConverter.primaries-mode", &v);
|
|
|
|
}
|
|
|
|
|
2020-11-22 09:53:17 +00:00
|
|
|
pub fn get_primaries_mode(&self) -> crate::VideoPrimariesMode {
|
2020-01-30 21:15:08 +00:00
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.primaries-mode")
|
|
|
|
.expect("Wrong type")
|
2020-11-22 09:53:17 +00:00
|
|
|
.unwrap_or(crate::VideoPrimariesMode::None)
|
2020-01-30 21:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_threads(&mut self, v: u32) {
|
|
|
|
self.0.set("GstVideoConverter.threads", &v);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_threads(&self) -> u32 {
|
|
|
|
self.0
|
|
|
|
.get_optional("GstVideoConverter.threads")
|
|
|
|
.expect("Wrong type")
|
|
|
|
.unwrap_or(1)
|
|
|
|
}
|
|
|
|
}
|