2019-05-11 10:13:33 +00:00
|
|
|
// Copyright (c) 2019 Vivia Nikolaidou <vivia@ahiru.eu>
|
|
|
|
//
|
|
|
|
// 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 glib::IsA;
|
|
|
|
|
2020-11-21 13:46:48 +00:00
|
|
|
use crate::PipelineFlags;
|
2019-05-11 10:13:33 +00:00
|
|
|
|
|
|
|
pub trait GstPipelineExtManual: 'static {
|
|
|
|
fn set_pipeline_flags(&self, flags: PipelineFlags);
|
|
|
|
|
2019-05-11 12:51:33 +00:00
|
|
|
fn unset_pipeline_flags(&self, flags: PipelineFlags);
|
|
|
|
|
2019-05-11 10:13:33 +00:00
|
|
|
fn get_pipeline_flags(&self) -> PipelineFlags;
|
|
|
|
}
|
|
|
|
|
2020-11-21 13:46:48 +00:00
|
|
|
impl<O: IsA<crate::Pipeline>> GstPipelineExtManual for O {
|
2019-05-11 10:13:33 +00:00
|
|
|
fn set_pipeline_flags(&self, flags: PipelineFlags) {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
let ptr: *mut ffi::GstObject = self.as_ptr() as *mut _;
|
|
|
|
let _guard = crate::utils::MutexGuard::lock(&(*ptr).lock);
|
2019-05-11 10:13:33 +00:00
|
|
|
(*ptr).flags |= flags.to_glib();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-11 12:51:33 +00:00
|
|
|
fn unset_pipeline_flags(&self, flags: PipelineFlags) {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
let ptr: *mut ffi::GstObject = self.as_ptr() as *mut _;
|
|
|
|
let _guard = crate::utils::MutexGuard::lock(&(*ptr).lock);
|
2019-05-11 12:51:33 +00:00
|
|
|
(*ptr).flags &= !flags.to_glib();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-11 10:13:33 +00:00
|
|
|
fn get_pipeline_flags(&self) -> PipelineFlags {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
let ptr: *mut ffi::GstObject = self.as_ptr() as *mut _;
|
|
|
|
let _guard = crate::utils::MutexGuard::lock(&(*ptr).lock);
|
2019-05-11 10:13:33 +00:00
|
|
|
from_glib((*ptr).flags)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|