2017-08-11 09:29:23 +00:00
|
|
|
// Copyright (C) 2017 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 ffi;
|
|
|
|
use glib_ffi;
|
|
|
|
use gobject_ffi;
|
|
|
|
|
|
|
|
use glib;
|
|
|
|
use glib::translate::{from_glib, from_glib_full, from_glib_none, FromGlib, FromGlibPtrNone,
|
|
|
|
ToGlib, ToGlibPtr, ToGlibPtrMut};
|
2018-04-01 08:30:03 +00:00
|
|
|
use gst;
|
|
|
|
use gst::prelude::*;
|
2017-08-11 09:29:23 +00:00
|
|
|
|
2018-04-01 08:30:03 +00:00
|
|
|
use std::fmt;
|
2017-08-11 09:29:23 +00:00
|
|
|
use std::mem;
|
|
|
|
use std::ptr;
|
|
|
|
use std::str;
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
|
|
|
|
pub enum VideoColorRange {
|
|
|
|
Unknown,
|
|
|
|
Range0255,
|
|
|
|
Range16235,
|
2018-02-22 10:18:37 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
__Unknown(i32),
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl ToGlib for VideoColorRange {
|
|
|
|
type GlibType = ffi::GstVideoColorRange;
|
|
|
|
|
|
|
|
fn to_glib(&self) -> ffi::GstVideoColorRange {
|
|
|
|
match *self {
|
|
|
|
VideoColorRange::Unknown => ffi::GST_VIDEO_COLOR_RANGE_UNKNOWN,
|
|
|
|
VideoColorRange::Range0255 => ffi::GST_VIDEO_COLOR_RANGE_0_255,
|
|
|
|
VideoColorRange::Range16235 => ffi::GST_VIDEO_COLOR_RANGE_16_235,
|
2017-11-26 22:13:29 +00:00
|
|
|
VideoColorRange::__Unknown(value) => value,
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl FromGlib<ffi::GstVideoColorRange> for VideoColorRange {
|
|
|
|
fn from_glib(value: ffi::GstVideoColorRange) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
match value as i32 {
|
|
|
|
0 => VideoColorRange::Unknown,
|
|
|
|
1 => VideoColorRange::Range0255,
|
|
|
|
2 => VideoColorRange::Range16235,
|
|
|
|
value => VideoColorRange::__Unknown(value),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::StaticType for VideoColorRange {
|
|
|
|
fn static_type() -> glib::Type {
|
|
|
|
unsafe { from_glib(ffi::gst_video_color_range_get_type()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> glib::value::FromValueOptional<'a> for VideoColorRange {
|
|
|
|
unsafe fn from_value_optional(value: &glib::value::Value) -> Option<Self> {
|
|
|
|
Some(glib::value::FromValue::from_value(value))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> glib::value::FromValue<'a> for VideoColorRange {
|
|
|
|
unsafe fn from_value(value: &glib::value::Value) -> Self {
|
2017-11-26 22:13:29 +00:00
|
|
|
from_glib(gobject_ffi::g_value_get_enum(value.to_glib_none().0))
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::value::SetValue for VideoColorRange {
|
|
|
|
unsafe fn set_value(value: &mut glib::value::Value, this: &Self) {
|
|
|
|
gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, this.to_glib() as i32)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct VideoColorimetry(ffi::GstVideoColorimetry);
|
|
|
|
|
|
|
|
impl VideoColorimetry {
|
|
|
|
pub fn new(
|
|
|
|
range: VideoColorRange,
|
|
|
|
matrix: ::VideoColorMatrix,
|
|
|
|
transfer: ::VideoTransferFunction,
|
|
|
|
primaries: ::VideoColorPrimaries,
|
|
|
|
) -> Self {
|
2017-08-30 09:48:01 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-08-11 09:29:23 +00:00
|
|
|
|
|
|
|
let colorimetry = unsafe {
|
|
|
|
let mut colorimetry: ffi::GstVideoColorimetry = mem::zeroed();
|
|
|
|
|
|
|
|
colorimetry.range = range.to_glib();
|
|
|
|
colorimetry.matrix = matrix.to_glib();
|
|
|
|
colorimetry.transfer = transfer.to_glib();
|
|
|
|
colorimetry.primaries = primaries.to_glib();
|
|
|
|
|
|
|
|
colorimetry
|
|
|
|
};
|
|
|
|
|
|
|
|
VideoColorimetry(colorimetry)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_string(&self) -> String {
|
|
|
|
unsafe { from_glib_full(ffi::gst_video_colorimetry_to_string(&self.0)) }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_string(s: &str) -> Option<Self> {
|
2017-08-30 09:48:01 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-08-11 09:29:23 +00:00
|
|
|
unsafe {
|
|
|
|
let mut colorimetry = mem::zeroed();
|
|
|
|
let valid: bool = from_glib(ffi::gst_video_colorimetry_from_string(
|
|
|
|
&mut colorimetry,
|
|
|
|
s.to_glib_none().0,
|
|
|
|
));
|
|
|
|
if valid {
|
|
|
|
Some(VideoColorimetry(colorimetry))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for VideoColorimetry {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
unsafe { VideoColorimetry(ptr::read(&self.0)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for VideoColorimetry {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
unsafe { from_glib(ffi::gst_video_colorimetry_is_equal(&self.0, &other.0)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for VideoColorimetry {}
|
|
|
|
|
|
|
|
impl str::FromStr for ::VideoColorimetry {
|
|
|
|
type Err = ();
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, ()> {
|
2017-08-30 09:48:01 +00:00
|
|
|
skip_assert_initialized!();
|
2017-08-11 09:29:23 +00:00
|
|
|
Self::from_string(s).ok_or(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for ::VideoColorimetry {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
2017-12-16 09:41:48 +00:00
|
|
|
f.debug_struct("VideoColorimetry")
|
|
|
|
.field("range", &self.0.range)
|
|
|
|
.field("matrix", &self.0.matrix)
|
|
|
|
.field("transfer", &self.0.transfer)
|
|
|
|
.field("primaries", &self.0.primaries)
|
|
|
|
.finish()
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for ::VideoColorimetry {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
|
|
f.write_str(&self.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 08:56:19 +00:00
|
|
|
impl From<::VideoMultiviewFramePacking> for ::VideoMultiviewMode {
|
|
|
|
fn from(v: ::VideoMultiviewFramePacking) -> Self {
|
|
|
|
from_glib(v.to_glib())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ::VideoMultiviewFramePacking {
|
2017-12-16 09:41:48 +00:00
|
|
|
pub fn try_from(
|
|
|
|
v: ::VideoMultiviewMode,
|
|
|
|
) -> Result<::VideoMultiviewFramePacking, ::VideoMultiviewMode> {
|
2017-12-16 08:56:19 +00:00
|
|
|
let v2 = from_glib(v.to_glib());
|
|
|
|
|
|
|
|
if let ::VideoMultiviewFramePacking::__Unknown(_) = v2 {
|
|
|
|
Err(v)
|
|
|
|
} else {
|
|
|
|
Ok(v2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 11:55:31 +00:00
|
|
|
pub struct VideoInfo(pub(crate) ffi::GstVideoInfo);
|
2017-08-11 09:29:23 +00:00
|
|
|
|
|
|
|
pub struct VideoInfoBuilder<'a> {
|
|
|
|
format: ::VideoFormat,
|
|
|
|
width: u32,
|
|
|
|
height: u32,
|
|
|
|
interlace_mode: Option<::VideoInterlaceMode>,
|
|
|
|
flags: Option<::VideoFlags>,
|
|
|
|
size: Option<usize>,
|
|
|
|
views: Option<u32>,
|
|
|
|
chroma_site: Option<::VideoChromaSite>,
|
|
|
|
colorimetry: Option<&'a ::VideoColorimetry>,
|
|
|
|
par: Option<gst::Fraction>,
|
|
|
|
fps: Option<gst::Fraction>,
|
|
|
|
offset: Option<&'a [usize]>,
|
|
|
|
stride: Option<&'a [i32]>,
|
|
|
|
multiview_mode: Option<::VideoMultiviewMode>,
|
|
|
|
multiview_flags: Option<::VideoMultiviewFlags>,
|
2018-02-22 10:18:37 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
|
|
|
field_order: Option<::VideoFieldOrder>,
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> VideoInfoBuilder<'a> {
|
|
|
|
pub fn build(self) -> Option<VideoInfo> {
|
|
|
|
unsafe {
|
|
|
|
let mut info = mem::uninitialized();
|
|
|
|
|
|
|
|
ffi::gst_video_info_set_format(
|
|
|
|
&mut info,
|
|
|
|
self.format.to_glib(),
|
|
|
|
self.width,
|
|
|
|
self.height,
|
|
|
|
);
|
|
|
|
|
|
|
|
if info.finfo.is_null() || info.width <= 0 || info.width <= 0 {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(interlace_mode) = self.interlace_mode {
|
|
|
|
info.interlace_mode = interlace_mode.to_glib();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(flags) = self.flags {
|
|
|
|
info.flags = flags.to_glib();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(size) = self.size {
|
|
|
|
info.size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(views) = self.views {
|
|
|
|
info.views = views as i32;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(chroma_site) = self.chroma_site {
|
|
|
|
info.chroma_site = chroma_site.to_glib();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(colorimetry) = self.colorimetry {
|
|
|
|
ptr::write(&mut info.colorimetry, ptr::read(&colorimetry.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(par) = self.par {
|
|
|
|
info.par_n = *par.numer();
|
|
|
|
info.par_d = *par.denom();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(fps) = self.fps {
|
|
|
|
info.fps_n = *fps.numer();
|
|
|
|
info.fps_d = *fps.denom();
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(offset) = self.offset {
|
|
|
|
if offset.len() != ((*info.finfo).n_planes as usize) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-09-10 11:27:00 +00:00
|
|
|
let n_planes = (*info.finfo).n_planes as usize;
|
|
|
|
info.offset[..n_planes].copy_from_slice(&offset[..n_planes]);
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(stride) = self.stride {
|
|
|
|
if stride.len() != ((*info.finfo).n_planes as usize) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2017-09-10 11:27:00 +00:00
|
|
|
let n_planes = (*info.finfo).n_planes as usize;
|
|
|
|
info.stride[..n_planes].copy_from_slice(&stride[..n_planes]);
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(multiview_mode) = self.multiview_mode {
|
2018-02-07 16:53:12 +00:00
|
|
|
let ptr = &mut info.ABI._gst_reserved as *mut _ as *mut i32;
|
2017-11-26 22:13:29 +00:00
|
|
|
ptr::write(ptr.offset(0), multiview_mode.to_glib());
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(multiview_flags) = self.multiview_flags {
|
2018-02-07 16:53:12 +00:00
|
|
|
let ptr = &mut info.ABI._gst_reserved as *mut _ as *mut u32;
|
2017-08-11 09:29:23 +00:00
|
|
|
ptr::write(ptr.offset(1), multiview_flags.to_glib().bits());
|
|
|
|
}
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 09:29:23 +00:00
|
|
|
{
|
|
|
|
if let Some(field_order) = self.field_order {
|
2018-02-07 16:53:12 +00:00
|
|
|
let ptr = &mut info.ABI._gst_reserved as *mut _ as *mut i32;
|
2017-11-26 22:13:29 +00:00
|
|
|
ptr::write(ptr.offset(2), field_order.to_glib());
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(VideoInfo(info))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn interlace_mode(self, interlace_mode: ::VideoInterlaceMode) -> VideoInfoBuilder<'a> {
|
|
|
|
Self {
|
|
|
|
interlace_mode: Some(interlace_mode),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn flags(self, flags: ::VideoFlags) -> Self {
|
|
|
|
Self {
|
|
|
|
flags: Some(flags),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn size(self, size: usize) -> Self {
|
|
|
|
Self {
|
|
|
|
size: Some(size),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn views(self, views: u32) -> Self {
|
|
|
|
Self {
|
|
|
|
views: Some(views),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn chroma_site(self, chroma_site: ::VideoChromaSite) -> Self {
|
|
|
|
Self {
|
|
|
|
chroma_site: Some(chroma_site),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn colorimetry(self, colorimetry: &'a ::VideoColorimetry) -> VideoInfoBuilder<'a> {
|
|
|
|
Self {
|
|
|
|
colorimetry: Some(colorimetry),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-14 06:54:32 +00:00
|
|
|
pub fn par<T: Into<gst::Fraction>>(self, par: T) -> Self {
|
2017-08-11 09:29:23 +00:00
|
|
|
Self {
|
2017-08-14 06:54:32 +00:00
|
|
|
par: Some(par.into()),
|
2017-08-11 09:29:23 +00:00
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-14 06:54:32 +00:00
|
|
|
pub fn fps<T: Into<gst::Fraction>>(self, fps: T) -> Self {
|
2017-08-11 09:29:23 +00:00
|
|
|
Self {
|
2017-08-14 06:54:32 +00:00
|
|
|
fps: Some(fps.into()),
|
2017-08-11 09:29:23 +00:00
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn offset(self, offset: &'a [usize]) -> VideoInfoBuilder<'a> {
|
|
|
|
Self {
|
|
|
|
offset: Some(offset),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stride(self, stride: &'a [i32]) -> VideoInfoBuilder<'a> {
|
|
|
|
Self {
|
|
|
|
stride: Some(stride),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn multiview_mode(self, multiview_mode: ::VideoMultiviewMode) -> Self {
|
|
|
|
Self {
|
|
|
|
multiview_mode: Some(multiview_mode),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn multiview_flags(self, multiview_flags: ::VideoMultiviewFlags) -> Self {
|
|
|
|
Self {
|
|
|
|
multiview_flags: Some(multiview_flags),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 09:29:23 +00:00
|
|
|
pub fn field_order(self, field_order: ::VideoFieldOrder) -> Self {
|
|
|
|
Self {
|
|
|
|
field_order: Some(field_order),
|
|
|
|
..self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VideoInfo {
|
|
|
|
pub fn new<'a>(format: ::VideoFormat, width: u32, height: u32) -> VideoInfoBuilder<'a> {
|
2017-08-30 09:48:01 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(not(any(feature = "v1_12", feature = "dox")))]
|
2017-08-11 09:29:23 +00:00
|
|
|
{
|
|
|
|
VideoInfoBuilder {
|
|
|
|
format: format,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
interlace_mode: None,
|
|
|
|
flags: None,
|
|
|
|
size: None,
|
|
|
|
views: None,
|
|
|
|
chroma_site: None,
|
|
|
|
colorimetry: None,
|
|
|
|
par: None,
|
|
|
|
fps: None,
|
|
|
|
offset: None,
|
|
|
|
stride: None,
|
|
|
|
multiview_mode: None,
|
|
|
|
multiview_flags: None,
|
|
|
|
}
|
|
|
|
}
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 09:29:23 +00:00
|
|
|
{
|
|
|
|
VideoInfoBuilder {
|
|
|
|
format: format,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
interlace_mode: None,
|
|
|
|
flags: None,
|
|
|
|
size: None,
|
|
|
|
views: None,
|
|
|
|
chroma_site: None,
|
|
|
|
colorimetry: None,
|
|
|
|
par: None,
|
|
|
|
fps: None,
|
|
|
|
offset: None,
|
|
|
|
stride: None,
|
|
|
|
multiview_mode: None,
|
|
|
|
multiview_flags: None,
|
|
|
|
field_order: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 08:56:19 +00:00
|
|
|
pub fn from_caps(caps: &gst::CapsRef) -> Option<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2017-08-30 09:48:01 +00:00
|
|
|
|
2017-08-11 09:29:23 +00:00
|
|
|
unsafe {
|
|
|
|
let mut info = mem::uninitialized();
|
|
|
|
if from_glib(ffi::gst_video_info_from_caps(&mut info, caps.as_ptr())) {
|
|
|
|
Some(VideoInfo(info))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_caps(&self) -> Option<gst::Caps> {
|
2017-12-16 09:41:48 +00:00
|
|
|
unsafe { from_glib_full(ffi::gst_video_info_to_caps(&self.0 as *const _ as *mut _)) }
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn format(&self) -> ::VideoFormat {
|
|
|
|
unsafe { from_glib((*self.0.finfo).format) }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn format_info(&self) -> ::VideoFormatInfo {
|
|
|
|
::VideoFormatInfo::from_format(self.format())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn width(&self) -> u32 {
|
|
|
|
self.0.width as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn height(&self) -> u32 {
|
|
|
|
self.0.height as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn interlace_mode(&self) -> ::VideoInterlaceMode {
|
|
|
|
from_glib(self.0.interlace_mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn flags(&self) -> ::VideoFlags {
|
|
|
|
from_glib(self.0.flags)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn size(&self) -> usize {
|
|
|
|
self.0.size
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn views(&self) -> u32 {
|
|
|
|
self.0.views as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn chroma_site(&self) -> ::VideoChromaSite {
|
|
|
|
from_glib(self.0.chroma_site)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn colorimetry(&self) -> VideoColorimetry {
|
|
|
|
unsafe { VideoColorimetry(ptr::read(&self.0.colorimetry)) }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn par(&self) -> gst::Fraction {
|
|
|
|
gst::Fraction::new(self.0.par_n, self.0.par_d)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn fps(&self) -> gst::Fraction {
|
|
|
|
gst::Fraction::new(self.0.fps_n, self.0.fps_d)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn offset(&self) -> &[usize] {
|
|
|
|
&self.0.offset[0..(self.format_info().n_planes() as usize)]
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stride(&self) -> &[i32] {
|
|
|
|
&self.0.stride[0..(self.format_info().n_planes() as usize)]
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn multiview_mode(&self) -> ::VideoMultiviewMode {
|
|
|
|
unsafe {
|
2018-02-07 16:53:12 +00:00
|
|
|
let ptr = &self.0.ABI._gst_reserved as *const _ as *const i32;
|
2017-11-26 22:13:29 +00:00
|
|
|
from_glib(ptr::read(ptr.offset(0)))
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn multiview_flags(&self) -> ::VideoMultiviewFlags {
|
|
|
|
unsafe {
|
2018-02-07 16:53:12 +00:00
|
|
|
let ptr = &self.0.ABI._gst_reserved as *const _ as *const u32;
|
2017-12-20 17:30:14 +00:00
|
|
|
from_glib(ffi::GstVideoMultiviewFlags::from_bits_truncate(ptr::read(
|
|
|
|
ptr.offset(1),
|
|
|
|
)))
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 09:29:23 +00:00
|
|
|
pub fn field_order(&self) -> ::VideoFieldOrder {
|
|
|
|
unsafe {
|
2018-02-07 16:53:12 +00:00
|
|
|
let ptr = &self.0.ABI._gst_reserved as *const _ as *const i32;
|
2017-11-26 22:13:29 +00:00
|
|
|
from_glib(ptr::read(ptr.offset(2)))
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-11 09:51:27 +00:00
|
|
|
|
|
|
|
pub fn has_alpha(&self) -> bool {
|
|
|
|
self.format_info().has_alpha()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_gray(&self) -> bool {
|
|
|
|
self.format_info().is_gray()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_rgb(&self) -> bool {
|
|
|
|
self.format_info().is_rgb()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_yuv(&self) -> bool {
|
|
|
|
self.format_info().is_yuv()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_interlaced(&self) -> bool {
|
|
|
|
self.interlace_mode() != ::VideoInterlaceMode::Progressive
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn n_planes(&self) -> u32 {
|
|
|
|
self.format_info().n_planes()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn n_components(&self) -> u32 {
|
|
|
|
self.format_info().n_components()
|
|
|
|
}
|
2017-08-11 09:54:01 +00:00
|
|
|
|
2017-12-09 16:20:21 +00:00
|
|
|
pub fn convert<V: Into<gst::GenericFormattedValue>, U: gst::SpecificFormattedValue>(
|
2017-08-11 09:54:01 +00:00
|
|
|
&self,
|
2017-11-11 10:21:55 +00:00
|
|
|
src_val: V,
|
2017-12-09 16:20:21 +00:00
|
|
|
) -> Option<U> {
|
2017-08-30 09:48:01 +00:00
|
|
|
skip_assert_initialized!();
|
|
|
|
|
2017-11-11 10:21:55 +00:00
|
|
|
let src_val = src_val.into();
|
2017-12-09 16:20:21 +00:00
|
|
|
unsafe {
|
|
|
|
let mut dest_val = mem::uninitialized();
|
|
|
|
if from_glib(ffi::gst_video_info_convert(
|
|
|
|
&self.0 as *const _ as *mut _,
|
|
|
|
src_val.get_format().to_glib(),
|
2017-12-10 10:10:25 +00:00
|
|
|
src_val.to_raw_value(),
|
2017-12-09 16:20:21 +00:00
|
|
|
U::get_default_format().to_glib(),
|
|
|
|
&mut dest_val,
|
|
|
|
)) {
|
2017-12-10 10:10:25 +00:00
|
|
|
Some(U::from_raw(U::get_default_format(), dest_val))
|
2017-12-09 16:20:21 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-11 10:21:55 +00:00
|
|
|
|
2017-12-09 16:20:21 +00:00
|
|
|
pub fn convert_generic<V: Into<gst::GenericFormattedValue>>(
|
|
|
|
&self,
|
|
|
|
src_val: V,
|
|
|
|
dest_fmt: gst::Format,
|
|
|
|
) -> Option<gst::GenericFormattedValue> {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
|
|
|
|
let src_val = src_val.into();
|
2017-08-11 09:54:01 +00:00
|
|
|
unsafe {
|
|
|
|
let mut dest_val = mem::uninitialized();
|
|
|
|
if from_glib(ffi::gst_video_info_convert(
|
|
|
|
&self.0 as *const _ as *mut _,
|
2017-12-09 16:20:21 +00:00
|
|
|
src_val.get_format().to_glib(),
|
2017-12-10 10:10:25 +00:00
|
|
|
src_val.to_raw_value(),
|
2017-08-11 09:54:01 +00:00
|
|
|
dest_fmt.to_glib(),
|
|
|
|
&mut dest_val,
|
|
|
|
)) {
|
2017-12-09 16:20:21 +00:00
|
|
|
Some(gst::GenericFormattedValue::new(dest_fmt, dest_val))
|
2017-08-11 09:54:01 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for VideoInfo {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
unsafe { VideoInfo(ptr::read(&self.0)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for VideoInfo {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
unsafe { from_glib(ffi::gst_video_info_is_equal(&self.0, &other.0)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for VideoInfo {}
|
|
|
|
|
2017-08-15 14:34:32 +00:00
|
|
|
unsafe impl Send for VideoInfo {}
|
|
|
|
|
2017-08-11 09:29:23 +00:00
|
|
|
impl glib::types::StaticType for VideoInfo {
|
|
|
|
fn static_type() -> glib::types::Type {
|
|
|
|
unsafe { glib::translate::from_glib(ffi::gst_video_info_get_type()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl<'a> glib::value::FromValueOptional<'a> for VideoInfo {
|
|
|
|
unsafe fn from_value_optional(value: &glib::Value) -> Option<Self> {
|
2018-02-22 10:18:37 +00:00
|
|
|
Option::<VideoInfo>::from_glib_none(gobject_ffi::g_value_get_boxed(value.to_glib_none().0) as *mut ffi::GstVideoInfo)
|
2017-08-11 09:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl glib::value::SetValue for VideoInfo {
|
|
|
|
unsafe fn set_value(value: &mut glib::Value, this: &Self) {
|
|
|
|
gobject_ffi::g_value_set_boxed(
|
|
|
|
value.to_glib_none_mut().0,
|
2017-10-17 09:06:51 +00:00
|
|
|
glib::translate::ToGlibPtr::<*const ffi::GstVideoInfo>::to_glib_none(this).0
|
|
|
|
as glib_ffi::gpointer,
|
2017-08-11 09:29:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl glib::value::SetValueOptional for VideoInfo {
|
|
|
|
unsafe fn set_value_optional(value: &mut glib::Value, this: Option<&Self>) {
|
|
|
|
gobject_ffi::g_value_set_boxed(
|
|
|
|
value.to_glib_none_mut().0,
|
2017-10-17 09:06:51 +00:00
|
|
|
glib::translate::ToGlibPtr::<*const ffi::GstVideoInfo>::to_glib_none(&this).0
|
|
|
|
as glib_ffi::gpointer,
|
2017-08-11 09:29:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl glib::translate::Uninitialized for VideoInfo {
|
|
|
|
unsafe fn uninitialized() -> Self {
|
|
|
|
mem::zeroed()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl glib::translate::GlibPtrDefault for VideoInfo {
|
|
|
|
type GlibType = *mut ffi::GstVideoInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl<'a> glib::translate::ToGlibPtr<'a, *const ffi::GstVideoInfo> for VideoInfo {
|
|
|
|
type Storage = &'a VideoInfo;
|
|
|
|
|
|
|
|
fn to_glib_none(&'a self) -> glib::translate::Stash<'a, *const ffi::GstVideoInfo, Self> {
|
|
|
|
glib::translate::Stash(&self.0, self)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_glib_full(&self) -> *const ffi::GstVideoInfo {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl glib::translate::FromGlibPtrNone<*mut ffi::GstVideoInfo> for VideoInfo {
|
|
|
|
#[inline]
|
|
|
|
unsafe fn from_glib_none(ptr: *mut ffi::GstVideoInfo) -> Self {
|
|
|
|
VideoInfo(ptr::read(ptr))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
impl glib::translate::FromGlibPtrFull<*mut ffi::GstVideoInfo> for VideoInfo {
|
|
|
|
#[inline]
|
|
|
|
unsafe fn from_glib_full(ptr: *mut ffi::GstVideoInfo) -> Self {
|
|
|
|
let info = from_glib_none(ptr);
|
|
|
|
glib_ffi::g_free(ptr as *mut _);
|
|
|
|
info
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 11:55:31 +00:00
|
|
|
impl ::VideoFieldOrder {
|
|
|
|
pub fn to_string(&self) -> String {
|
|
|
|
unsafe { from_glib_full(ffi::gst_video_field_order_to_string(self.to_glib())) }
|
|
|
|
}
|
|
|
|
|
2017-08-15 10:46:16 +00:00
|
|
|
pub fn from_string(s: &str) -> Self {
|
2017-08-30 09:48:01 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-08-11 11:55:31 +00:00
|
|
|
unsafe { from_glib(ffi::gst_video_field_order_from_string(s.to_glib_none().0)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 11:55:31 +00:00
|
|
|
impl str::FromStr for ::VideoFieldOrder {
|
|
|
|
type Err = ();
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, ()> {
|
2017-08-30 09:48:01 +00:00
|
|
|
skip_assert_initialized!();
|
2017-08-15 10:46:16 +00:00
|
|
|
Ok(Self::from_string(s))
|
2017-08-11 11:55:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-12 12:33:02 +00:00
|
|
|
#[cfg(any(feature = "v1_12", feature = "dox"))]
|
2017-08-11 11:55:31 +00:00
|
|
|
impl fmt::Display for ::VideoFieldOrder {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
|
|
f.write_str(&self.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ::VideoInterlaceMode {
|
|
|
|
pub fn to_string(&self) -> String {
|
|
|
|
unsafe { from_glib_full(ffi::gst_video_interlace_mode_to_string(self.to_glib())) }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_string(s: &str) -> Self {
|
2017-08-30 09:48:01 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-08-11 11:55:31 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_video_interlace_mode_from_string(
|
|
|
|
s.to_glib_none().0,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl str::FromStr for ::VideoInterlaceMode {
|
|
|
|
type Err = ();
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, ()> {
|
2017-08-30 09:48:01 +00:00
|
|
|
skip_assert_initialized!();
|
2017-08-11 11:55:31 +00:00
|
|
|
Ok(Self::from_string(s))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for ::VideoInterlaceMode {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
|
|
f.write_str(&self.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 09:29:23 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use gst;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_new() {
|
|
|
|
gst::init().unwrap();
|
|
|
|
|
|
|
|
let info = VideoInfo::new(::VideoFormat::I420, 320, 240)
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(info.format(), ::VideoFormat::I420);
|
|
|
|
assert_eq!(info.width(), 320);
|
|
|
|
assert_eq!(info.height(), 240);
|
|
|
|
assert_eq!(info.size(), 320 * 240 + 2 * 160 * 120);
|
|
|
|
assert_eq!(info.multiview_mode(), ::VideoMultiviewMode::None);
|
|
|
|
assert_eq!(&info.offset(), &[0, 320 * 240, 320 * 240 + 160 * 120]);
|
|
|
|
assert_eq!(&info.stride(), &[320, 160, 160]);
|
|
|
|
|
|
|
|
let offsets = [0, 640 * 240 + 16, 640 * 240 + 16 + 320 * 120 + 16];
|
|
|
|
let strides = [640, 320, 320];
|
|
|
|
let info = VideoInfo::new(::VideoFormat::I420, 320, 240)
|
|
|
|
.offset(&offsets)
|
|
|
|
.stride(&strides)
|
|
|
|
.size(640 * 240 + 16 + 320 * 120 + 16 + 320 * 120 + 16)
|
|
|
|
.multiview_mode(::VideoMultiviewMode::SideBySide)
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(info.format(), ::VideoFormat::I420);
|
|
|
|
assert_eq!(info.width(), 320);
|
|
|
|
assert_eq!(info.height(), 240);
|
|
|
|
assert_eq!(
|
|
|
|
info.size(),
|
|
|
|
640 * 240 + 16 + 320 * 120 + 16 + 320 * 120 + 16
|
|
|
|
);
|
|
|
|
assert_eq!(info.multiview_mode(), ::VideoMultiviewMode::SideBySide);
|
|
|
|
assert_eq!(
|
|
|
|
&info.offset(),
|
|
|
|
&[0, 640 * 240 + 16, 640 * 240 + 16 + 320 * 120 + 16]
|
|
|
|
);
|
|
|
|
assert_eq!(&info.stride(), &[640, 320, 320]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from_to_caps() {
|
|
|
|
gst::init().unwrap();
|
|
|
|
|
|
|
|
let caps = gst::Caps::new_simple(
|
|
|
|
"video/x-raw",
|
|
|
|
&[
|
|
|
|
("format", &"I420"),
|
|
|
|
("width", &320),
|
|
|
|
("height", &240),
|
|
|
|
("framerate", &gst::Fraction::new(30, 1)),
|
|
|
|
("pixel-aspect-ratio", &gst::Fraction::new(1, 1)),
|
|
|
|
("interlace-mode", &"progressive"),
|
|
|
|
("chroma-site", &"mpeg2"),
|
|
|
|
("colorimetry", &"bt709"),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
let info = VideoInfo::from_caps(&caps).unwrap();
|
|
|
|
assert_eq!(info.format(), ::VideoFormat::I420);
|
|
|
|
assert_eq!(info.width(), 320);
|
|
|
|
assert_eq!(info.height(), 240);
|
|
|
|
assert_eq!(info.fps(), gst::Fraction::new(30, 1));
|
|
|
|
assert_eq!(info.interlace_mode(), ::VideoInterlaceMode::Progressive);
|
2017-10-01 14:02:29 +00:00
|
|
|
assert_eq!(info.chroma_site(), ::VideoChromaSite::MPEG2);
|
2017-08-11 09:29:23 +00:00
|
|
|
assert_eq!(info.colorimetry(), "bt709".parse().unwrap());
|
|
|
|
|
|
|
|
let caps2 = info.to_caps().unwrap();
|
|
|
|
assert_eq!(caps, caps2);
|
|
|
|
|
|
|
|
let info2 = VideoInfo::from_caps(&caps2).unwrap();
|
|
|
|
assert!(info == info2);
|
|
|
|
}
|
|
|
|
}
|