mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-12 21:26:31 +00:00
Moved connection to ndi logic from sources to a common function
This commit is contained in:
parent
2e9a0242af
commit
e5405a6657
3 changed files with 599 additions and 309 deletions
|
@ -21,21 +21,205 @@ extern crate num_traits;
|
||||||
mod ndivideosrc;
|
mod ndivideosrc;
|
||||||
mod ndiaudiosrc;
|
mod ndiaudiosrc;
|
||||||
pub mod ndilib;
|
pub mod ndilib;
|
||||||
|
pub mod a;
|
||||||
|
|
||||||
|
use std::ptr;
|
||||||
|
use std::{thread, time};
|
||||||
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
use std::ffi::{CStr, CString};
|
||||||
|
use ndilib::*;
|
||||||
|
use gst_plugin::base_src::*;
|
||||||
|
|
||||||
|
|
||||||
// Plugin entry point that should register all elements provided by this plugin,
|
// Plugin entry point that should register all elements provided by this plugin,
|
||||||
// and everything else that this plugin might provide (e.g. typefinders or device providers).
|
// and everything else that this plugin might provide (e.g. typefinders or device providers).
|
||||||
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
||||||
ndivideosrc::register(plugin);
|
ndivideosrc::register(plugin);
|
||||||
ndiaudiosrc::register(plugin);
|
ndiaudiosrc::register(plugin);
|
||||||
|
// a::test(2);
|
||||||
|
// println!("---------------------------------------");
|
||||||
|
// let mut ndistruc = ndi1{
|
||||||
|
// recv : 0
|
||||||
|
// };
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Static plugin metdata that is directly stored in the plugin shared object and read by GStreamer
|
|
||||||
// upon loading.
|
struct ndi1{
|
||||||
// Plugin name, plugin description, plugin entry point function, version number of this plugin,
|
recv: Option<NdiInstance>,
|
||||||
// license of the plugin, source package name, binary package name, origin where it comes from
|
start_pts: Option<u64>,
|
||||||
// and the date/time of release.
|
}
|
||||||
plugin_define!(
|
|
||||||
|
static mut ndi2: ndi1 = ndi1{
|
||||||
|
recv: None,
|
||||||
|
start_pts: None,
|
||||||
|
};
|
||||||
|
|
||||||
|
fn hue(element: &BaseSrc, ip: String, stream_name: String) -> bool{
|
||||||
|
println!("---------------------------------------");
|
||||||
|
unsafe {
|
||||||
|
match ndi2.recv {
|
||||||
|
None => {
|
||||||
|
//gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
||||||
|
//return true;
|
||||||
|
}
|
||||||
|
_ => return true,
|
||||||
|
};
|
||||||
|
//println!("{:?}", ndi2.recv);
|
||||||
|
//ndi2.recv = i;
|
||||||
|
//println!("{:?}", ndi2.recv);
|
||||||
|
if !NDIlib_initialize() {
|
||||||
|
//println!("Cannot run NDI: NDIlib_initialize error.");
|
||||||
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_initialize error"]);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut source: NDIlib_source_t = NDIlib_source_t{p_ndi_name: ptr::null(),
|
||||||
|
p_ip_address: ptr::null()};
|
||||||
|
|
||||||
|
// print!("{:?}", settings.stream_name);
|
||||||
|
// print!("{:?}", settings.ip);
|
||||||
|
|
||||||
|
//TODO default values
|
||||||
|
let NDI_find_create_desc: NDIlib_find_create_t = Default::default();
|
||||||
|
let pNDI_find = NDIlib_find_create_v2(&NDI_find_create_desc);
|
||||||
|
let ip_ptr = CString::new(ip.clone()).unwrap();
|
||||||
|
if (ip_ptr == CString::new("").unwrap()){
|
||||||
|
if pNDI_find.is_null() {
|
||||||
|
//println!("Cannot run NDI: NDIlib_find_create_v2 error.");
|
||||||
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_find_create_v2 error"]);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut total_sources: u32 = 0;
|
||||||
|
let mut p_sources = ptr::null();
|
||||||
|
//TODO Delete while. If not, will loop until a source it's available
|
||||||
|
//while total_sources == 0 {
|
||||||
|
// TODO Sleep 1s to wait for all sources
|
||||||
|
thread::sleep(time::Duration::from_millis(2000));
|
||||||
|
p_sources = NDIlib_find_get_current_sources(pNDI_find, &mut total_sources as *mut u32);
|
||||||
|
//}
|
||||||
|
|
||||||
|
// We need at least one source
|
||||||
|
if p_sources.is_null() {
|
||||||
|
//println!("Error getting NDIlib_find_get_current_sources.");
|
||||||
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Error getting NDIlib_find_get_current_sources"]);
|
||||||
|
return false;
|
||||||
|
//::std::process::exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut no_source: isize = -1;
|
||||||
|
for i in 0..total_sources as isize{
|
||||||
|
if CStr::from_ptr((*p_sources.offset(i)).p_ndi_name)
|
||||||
|
.to_string_lossy()
|
||||||
|
.into_owned() == stream_name{
|
||||||
|
no_source = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if no_source == -1 {
|
||||||
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Stream name not found"]);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
println!(
|
||||||
|
"Total_sources {}: Name '{}' Address '{}'",
|
||||||
|
total_sources,
|
||||||
|
CStr::from_ptr((*p_sources.offset(no_source)).p_ndi_name)
|
||||||
|
.to_string_lossy()
|
||||||
|
.into_owned(),
|
||||||
|
CStr::from_ptr((*p_sources.offset(no_source)).p_ip_address)
|
||||||
|
.to_string_lossy()
|
||||||
|
.into_owned()
|
||||||
|
);
|
||||||
|
source = *p_sources.offset(no_source).clone();
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
source.p_ip_address = ip_ptr.as_ptr();
|
||||||
|
println!(
|
||||||
|
"Address '{}'",
|
||||||
|
CStr::from_ptr(source.p_ip_address)
|
||||||
|
.to_string_lossy()
|
||||||
|
.into_owned()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// We now have at least one source, so we create a receiver to look at it.
|
||||||
|
// We tell it that we prefer YCbCr video since it is more efficient for us. If the source has an alpha channel
|
||||||
|
// it will still be provided in BGRA
|
||||||
|
let p_ndi_name = CString::new("Galicaster NDI Receiver").unwrap();
|
||||||
|
let NDI_recv_create_desc = NDIlib_recv_create_v3_t {
|
||||||
|
source_to_connect_to: source,
|
||||||
|
p_ndi_name: p_ndi_name.as_ptr(),
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let pNDI_recv = NDIlib_recv_create_v3(&NDI_recv_create_desc);
|
||||||
|
if pNDI_recv.is_null() {
|
||||||
|
//println!("Cannot run NDI: NDIlib_recv_create_v3 error.");
|
||||||
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_recv_create_v3 error"]);
|
||||||
|
return false;
|
||||||
|
//::std::process::exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Destroy the NDI finder. We needed to have access to the pointers to p_sources[0]
|
||||||
|
NDIlib_find_destroy(pNDI_find);
|
||||||
|
|
||||||
|
// We are now going to mark this source as being on program output for tally purposes (but not on preview)
|
||||||
|
let tally_state: NDIlib_tally_t = Default::default();
|
||||||
|
NDIlib_recv_set_tally(pNDI_recv, &tally_state);
|
||||||
|
|
||||||
|
// Enable Hardwqre Decompression support if this support has it. Please read the caveats in the documentation
|
||||||
|
// regarding this. There are times in which it might reduce the performance although on small stream numbers
|
||||||
|
// it almost always yields the same or better performance.
|
||||||
|
let data = CString::new("<ndi_hwaccel enabled=\"true\"/>").unwrap();
|
||||||
|
let enable_hw_accel = NDIlib_metadata_frame_t {
|
||||||
|
length: data.to_bytes().len() as i32,
|
||||||
|
timecode: 0,
|
||||||
|
p_data: data.as_ptr(),
|
||||||
|
};
|
||||||
|
|
||||||
|
NDIlib_recv_send_metadata(pNDI_recv, &enable_hw_accel);
|
||||||
|
ndi2.recv = Some(NdiInstance{recv: pNDI_recv});
|
||||||
|
let start = SystemTime::now();
|
||||||
|
let since_the_epoch = start.duration_since(UNIX_EPOCH)
|
||||||
|
.expect("Time went backwards");
|
||||||
|
println!("{:?}", since_the_epoch);
|
||||||
|
ndi2.start_pts = Some(since_the_epoch.as_secs() * 1000000000 +
|
||||||
|
since_the_epoch.subsec_nanos() as u64);
|
||||||
|
//TODO Another way to save NDI_recv variable
|
||||||
|
// *state = State{
|
||||||
|
// info: state.info.clone(),
|
||||||
|
// recv: Some(NdiInstance{recv: pNDI_recv}),
|
||||||
|
// };
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stop_ndi() -> bool{
|
||||||
|
unsafe{
|
||||||
|
let recv = match ndi2.recv{
|
||||||
|
None => {
|
||||||
|
//TODO Update gst_element_error with one more descriptive
|
||||||
|
//println!("pNDI_recv no encontrado");
|
||||||
|
//gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Some(ref recv) => recv.clone(),
|
||||||
|
};
|
||||||
|
let pNDI_recv = recv.recv;
|
||||||
|
NDIlib_recv_destroy(pNDI_recv);
|
||||||
|
ndi2.recv = None;
|
||||||
|
//NDIlib_destroy();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Static plugin metdata that is directly stored in the plugin shared object and read by GStreamer
|
||||||
|
// upon loading.
|
||||||
|
// Plugin name, plugin description, plugin entry point function, version number of this plugin,
|
||||||
|
// license of the plugin, source package name, binary package name, origin where it comes from
|
||||||
|
// and the date/time of release.
|
||||||
|
plugin_define!(
|
||||||
b"ndi\0",
|
b"ndi\0",
|
||||||
b"NewTek NDI Plugin\0",
|
b"NewTek NDI Plugin\0",
|
||||||
plugin_init,
|
plugin_init,
|
||||||
|
@ -45,4 +229,4 @@ plugin_define!(
|
||||||
b"ndi\0",
|
b"ndi\0",
|
||||||
b"https://gitlab.teltek.es/rubenrua/ndi-rs.git\0",
|
b"https://gitlab.teltek.es/rubenrua/ndi-rs.git\0",
|
||||||
b"2018-04-09\0"
|
b"2018-04-09\0"
|
||||||
);
|
);
|
||||||
|
|
|
@ -26,6 +26,9 @@ use byte_slice_cast::FromByteSlice;
|
||||||
use byte_slice_cast::AsSliceOf;
|
use byte_slice_cast::AsSliceOf;
|
||||||
|
|
||||||
use ndilib::*;
|
use ndilib::*;
|
||||||
|
use hue;
|
||||||
|
use ndi2;
|
||||||
|
use stop_ndi;
|
||||||
|
|
||||||
// Property value storage
|
// Property value storage
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
@ -138,8 +141,8 @@ impl NdiAudioSrc {
|
||||||
klass.set_metadata(
|
klass.set_metadata(
|
||||||
"NewTek NDI Audio Source",
|
"NewTek NDI Audio Source",
|
||||||
"Source",
|
"Source",
|
||||||
"NewTek NDI video/audio source",
|
"NewTek NDI audio source",
|
||||||
"Ruben Gonzalez <rubenrua@teltek.es>",
|
"Ruben Gonzalez <rubenrua@teltek.es>, Daniel Vilar <daniel.peiteado@teltek.es>",
|
||||||
);
|
);
|
||||||
|
|
||||||
// On the src pad, we can produce F32/F64 with any sample rate
|
// On the src pad, we can produce F32/F64 with any sample rate
|
||||||
|
@ -288,16 +291,21 @@ impl NdiAudioSrc {
|
||||||
gst_debug!(ndisrc_struct.cat, obj: element, "Received audio frame: {:?}", video_frame);
|
gst_debug!(ndisrc_struct.cat, obj: element, "Received audio frame: {:?}", video_frame);
|
||||||
frame = true;
|
frame = true;
|
||||||
//pts = ((video_frame.timestamp as u64) * 100) - state.start_pts.unwrap();
|
//pts = ((video_frame.timestamp as u64) * 100) - state.start_pts.unwrap();
|
||||||
// println!("{:?}", pts/1000000);
|
//println!("{:?}", *pts/1000000);
|
||||||
*pts = ((audio_frame.timestamp as u64) * 100);
|
// println!("{:?}", audio_frame.timestamp);
|
||||||
|
// println!("{:?}", audio_frame.timecode);
|
||||||
|
// *pts = ((audio_frame.timestamp as u64) * 100);
|
||||||
|
*pts = ((audio_frame.timecode as u64) * 100);
|
||||||
if *pts2 == 0{
|
if *pts2 == 0{
|
||||||
*pts2 = (audio_frame.timestamp as u64) * 100;
|
// *pts2 = (audio_frame.timestamp as u64) * 100;
|
||||||
|
*pts2 = (audio_frame.timecode as u64) * 100;
|
||||||
*pts = 0;
|
*pts = 0;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
// println!("{:?}", video_frame.timecode * 100);
|
// println!("{:?}", video_frame.timecode * 100);
|
||||||
// println!("{:?}", pts2.pts);
|
// println!("{:?}", pts2.pts);
|
||||||
*pts = (((audio_frame.timestamp as u64) * 100) - *pts2);
|
// *pts = (((audio_frame.timestamp as u64) * 100) - *pts2);
|
||||||
|
*pts = (((audio_frame.timecode as u64) * 100) - *pts2);
|
||||||
//println!("{:?}", pts/1000000);
|
//println!("{:?}", pts/1000000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -357,6 +365,7 @@ impl NdiAudioSrc {
|
||||||
|
|
||||||
// Called when starting, so we can initialize all stream-related state to its defaults
|
// Called when starting, so we can initialize all stream-related state to its defaults
|
||||||
fn start(&self, element: &BaseSrc) -> bool {
|
fn start(&self, element: &BaseSrc) -> bool {
|
||||||
|
println!("/*/*/*/*/*/*/*/*/*");
|
||||||
// Reset state
|
// Reset state
|
||||||
*self.state.lock().unwrap() = Default::default();
|
*self.state.lock().unwrap() = Default::default();
|
||||||
self.unlock_stop(element);
|
self.unlock_stop(element);
|
||||||
|
@ -368,151 +377,163 @@ impl NdiAudioSrc {
|
||||||
|
|
||||||
//let mut pNDI_recv = state.recv;
|
//let mut pNDI_recv = state.recv;
|
||||||
unsafe {
|
unsafe {
|
||||||
if !NDIlib_initialize() {
|
return hue(element, settings.ip.clone(), settings.stream_name.clone());
|
||||||
//println!("Cannot run NDI: NDIlib_initialize error.");
|
// if !NDIlib_initialize() {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_initialize error"]);
|
// //println!("Cannot run NDI: NDIlib_initialize error.");
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_initialize error"]);
|
||||||
}
|
// return false;
|
||||||
|
// }
|
||||||
let mut source: NDIlib_source_t = NDIlib_source_t{p_ndi_name: ptr::null(),
|
//
|
||||||
p_ip_address: ptr::null()};
|
// let mut source: NDIlib_source_t = NDIlib_source_t{p_ndi_name: ptr::null(),
|
||||||
|
// p_ip_address: ptr::null()};
|
||||||
// print!("{:?}", settings.stream_name);
|
//
|
||||||
// print!("{:?}", settings.ip);
|
// // print!("{:?}", settings.stream_name);
|
||||||
|
// // print!("{:?}", settings.ip);
|
||||||
//TODO default values
|
//
|
||||||
let NDI_find_create_desc: NDIlib_find_create_t = Default::default();
|
// //TODO default values
|
||||||
let pNDI_find = NDIlib_find_create_v2(&NDI_find_create_desc);
|
// let NDI_find_create_desc: NDIlib_find_create_t = Default::default();
|
||||||
let ip_ptr = CString::new(settings.ip.clone()).unwrap();
|
// let pNDI_find = NDIlib_find_create_v2(&NDI_find_create_desc);
|
||||||
if (ip_ptr == CString::new("").unwrap()){
|
// let ip_ptr = CString::new(settings.ip.clone()).unwrap();
|
||||||
if pNDI_find.is_null() {
|
// if (ip_ptr == CString::new("").unwrap()){
|
||||||
//println!("Cannot run NDI: NDIlib_find_create_v2 error.");
|
// if pNDI_find.is_null() {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_find_create_v2 error"]);
|
// //println!("Cannot run NDI: NDIlib_find_create_v2 error.");
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_find_create_v2 error"]);
|
||||||
}
|
// return false;
|
||||||
|
// }
|
||||||
let mut total_sources: u32 = 0;
|
//
|
||||||
let mut p_sources = ptr::null();
|
// let mut total_sources: u32 = 0;
|
||||||
//TODO Delete while. If not, will loop until a source it's available
|
// let mut p_sources = ptr::null();
|
||||||
//while total_sources == 0 {
|
// //TODO Delete while. If not, will loop until a source it's available
|
||||||
// TODO Sleep 1s to wait for all sources
|
// //while total_sources == 0 {
|
||||||
thread::sleep(time::Duration::from_millis(2000));
|
// // TODO Sleep 1s to wait for all sources
|
||||||
p_sources = NDIlib_find_get_current_sources(pNDI_find, &mut total_sources as *mut u32);
|
// thread::sleep(time::Duration::from_millis(2000));
|
||||||
//}
|
// p_sources = NDIlib_find_get_current_sources(pNDI_find, &mut total_sources as *mut u32);
|
||||||
|
// //}
|
||||||
// We need at least one source
|
//
|
||||||
if p_sources.is_null() {
|
// // We need at least one source
|
||||||
//println!("Error getting NDIlib_find_get_current_sources.");
|
// if p_sources.is_null() {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Error getting NDIlib_find_get_current_sources"]);
|
// //println!("Error getting NDIlib_find_get_current_sources.");
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Error getting NDIlib_find_get_current_sources"]);
|
||||||
//::std::process::exit(1);
|
// return false;
|
||||||
}
|
// //::std::process::exit(1);
|
||||||
|
// }
|
||||||
let mut no_source: isize = -1;
|
//
|
||||||
for i in 0..total_sources as isize{
|
// let mut no_source: isize = -1;
|
||||||
if CStr::from_ptr((*p_sources.offset(i)).p_ndi_name)
|
// for i in 0..total_sources as isize{
|
||||||
.to_string_lossy()
|
// if CStr::from_ptr((*p_sources.offset(i)).p_ndi_name)
|
||||||
.into_owned() == settings.stream_name{
|
// .to_string_lossy()
|
||||||
no_source = i;
|
// .into_owned() == settings.stream_name{
|
||||||
break;
|
// no_source = i;
|
||||||
}
|
// break;
|
||||||
}
|
// }
|
||||||
if no_source == -1 {
|
// }
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Stream name not found"]);
|
// if no_source == -1 {
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Stream name not found"]);
|
||||||
}
|
// return false;
|
||||||
println!(
|
// }
|
||||||
"Total_sources {}: Name '{}' Address '{}'",
|
// println!(
|
||||||
total_sources,
|
// "Total_sources {}: Name '{}' Address '{}'",
|
||||||
CStr::from_ptr((*p_sources.offset(no_source)).p_ndi_name)
|
// total_sources,
|
||||||
.to_string_lossy()
|
// CStr::from_ptr((*p_sources.offset(no_source)).p_ndi_name)
|
||||||
.into_owned(),
|
// .to_string_lossy()
|
||||||
CStr::from_ptr((*p_sources.offset(no_source)).p_ip_address)
|
// .into_owned(),
|
||||||
.to_string_lossy()
|
// CStr::from_ptr((*p_sources.offset(no_source)).p_ip_address)
|
||||||
.into_owned()
|
// .to_string_lossy()
|
||||||
);
|
// .into_owned()
|
||||||
source = *p_sources.offset(no_source).clone();
|
// );
|
||||||
}
|
// source = *p_sources.offset(no_source).clone();
|
||||||
else{
|
// }
|
||||||
source.p_ip_address = ip_ptr.as_ptr();
|
// else{
|
||||||
println!(
|
// source.p_ip_address = ip_ptr.as_ptr();
|
||||||
"Address '{}'",
|
// println!(
|
||||||
CStr::from_ptr(source.p_ip_address)
|
// "Address '{}'",
|
||||||
.to_string_lossy()
|
// CStr::from_ptr(source.p_ip_address)
|
||||||
.into_owned()
|
// .to_string_lossy()
|
||||||
);
|
// .into_owned()
|
||||||
}
|
// );
|
||||||
|
// }
|
||||||
// We now have at least one source, so we create a receiver to look at it.
|
//
|
||||||
// We tell it that we prefer YCbCr video since it is more efficient for us. If the source has an alpha channel
|
// // We now have at least one source, so we create a receiver to look at it.
|
||||||
// it will still be provided in BGRA
|
// // We tell it that we prefer YCbCr video since it is more efficient for us. If the source has an alpha channel
|
||||||
let p_ndi_name = CString::new("Galicaster NDI Receiver").unwrap();
|
// // it will still be provided in BGRA
|
||||||
let NDI_recv_create_desc = NDIlib_recv_create_v3_t {
|
// let p_ndi_name = CString::new("Galicaster NDI Receiver").unwrap();
|
||||||
source_to_connect_to: source,
|
// let NDI_recv_create_desc = NDIlib_recv_create_v3_t {
|
||||||
p_ndi_name: p_ndi_name.as_ptr(),
|
// source_to_connect_to: source,
|
||||||
..Default::default()
|
// p_ndi_name: p_ndi_name.as_ptr(),
|
||||||
};
|
// ..Default::default()
|
||||||
|
|
||||||
let pNDI_recv = NDIlib_recv_create_v3(&NDI_recv_create_desc);
|
|
||||||
if pNDI_recv.is_null() {
|
|
||||||
//println!("Cannot run NDI: NDIlib_recv_create_v3 error.");
|
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_recv_create_v3 error"]);
|
|
||||||
return false;
|
|
||||||
//::std::process::exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Destroy the NDI finder. We needed to have access to the pointers to p_sources[0]
|
|
||||||
NDIlib_find_destroy(pNDI_find);
|
|
||||||
|
|
||||||
// We are now going to mark this source as being on program output for tally purposes (but not on preview)
|
|
||||||
let tally_state: NDIlib_tally_t = Default::default();
|
|
||||||
NDIlib_recv_set_tally(pNDI_recv, &tally_state);
|
|
||||||
|
|
||||||
// Enable Hardwqre Decompression support if this support has it. Please read the caveats in the documentation
|
|
||||||
// regarding this. There are times in which it might reduce the performance although on small stream numbers
|
|
||||||
// it almost always yields the same or better performance.
|
|
||||||
let data = CString::new("<ndi_hwaccel enabled=\"true\"/>").unwrap();
|
|
||||||
let enable_hw_accel = NDIlib_metadata_frame_t {
|
|
||||||
length: data.to_bytes().len() as i32,
|
|
||||||
timecode: 0,
|
|
||||||
p_data: data.as_ptr(),
|
|
||||||
};
|
|
||||||
|
|
||||||
NDIlib_recv_send_metadata(pNDI_recv, &enable_hw_accel);
|
|
||||||
state.recv = Some(NdiInstance{recv: pNDI_recv});
|
|
||||||
let start = SystemTime::now();
|
|
||||||
let since_the_epoch = start.duration_since(UNIX_EPOCH)
|
|
||||||
.expect("Time went backwards");
|
|
||||||
println!("{:?}", since_the_epoch);
|
|
||||||
state.start_pts = Some(since_the_epoch.as_secs() * 1000000000 +
|
|
||||||
since_the_epoch.subsec_nanos() as u64);
|
|
||||||
//TODO Another way to save NDI_recv variable
|
|
||||||
// *state = State{
|
|
||||||
// info: state.info.clone(),
|
|
||||||
// recv: Some(NdiInstance{recv: pNDI_recv}),
|
|
||||||
// };
|
// };
|
||||||
|
//
|
||||||
|
// let pNDI_recv = NDIlib_recv_create_v3(&NDI_recv_create_desc);
|
||||||
|
// if pNDI_recv.is_null() {
|
||||||
|
// //println!("Cannot run NDI: NDIlib_recv_create_v3 error.");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_recv_create_v3 error"]);
|
||||||
|
// return false;
|
||||||
|
// //::std::process::exit(1);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // Destroy the NDI finder. We needed to have access to the pointers to p_sources[0]
|
||||||
|
// NDIlib_find_destroy(pNDI_find);
|
||||||
|
//
|
||||||
|
// // We are now going to mark this source as being on program output for tally purposes (but not on preview)
|
||||||
|
// let tally_state: NDIlib_tally_t = Default::default();
|
||||||
|
// NDIlib_recv_set_tally(pNDI_recv, &tally_state);
|
||||||
|
//
|
||||||
|
// // Enable Hardwqre Decompression support if this support has it. Please read the caveats in the documentation
|
||||||
|
// // regarding this. There are times in which it might reduce the performance although on small stream numbers
|
||||||
|
// // it almost always yields the same or better performance.
|
||||||
|
// let data = CString::new("<ndi_hwaccel enabled=\"true\"/>").unwrap();
|
||||||
|
// let enable_hw_accel = NDIlib_metadata_frame_t {
|
||||||
|
// length: data.to_bytes().len() as i32,
|
||||||
|
// timecode: 0,
|
||||||
|
// p_data: data.as_ptr(),
|
||||||
|
// };
|
||||||
|
//
|
||||||
|
// NDIlib_recv_send_metadata(pNDI_recv, &enable_hw_accel);
|
||||||
|
// state.recv = Some(NdiInstance{recv: pNDI_recv});
|
||||||
|
// let start = SystemTime::now();
|
||||||
|
// let since_the_epoch = start.duration_since(UNIX_EPOCH)
|
||||||
|
// .expect("Time went backwards");
|
||||||
|
// println!("{:?}", since_the_epoch);
|
||||||
|
// state.start_pts = Some(since_the_epoch.as_secs() * 1000000000 +
|
||||||
|
// since_the_epoch.subsec_nanos() as u64);
|
||||||
|
// //TODO Another way to save NDI_recv variable
|
||||||
|
// // *state = State{
|
||||||
|
// // info: state.info.clone(),
|
||||||
|
// // recv: Some(NdiInstance{recv: pNDI_recv}),
|
||||||
|
// // };
|
||||||
}
|
}
|
||||||
|
|
||||||
true
|
//true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called when shutting down the element so we can release all stream-related state
|
// Called when shutting down the element so we can release all stream-related state
|
||||||
fn stop(&self, element: &BaseSrc) -> bool {
|
fn stop(&self, element: &BaseSrc) -> bool {
|
||||||
// Reset state
|
// Reset state
|
||||||
let state = self.state.lock().unwrap();
|
let state = self.state.lock().unwrap();
|
||||||
let recv = match state.recv{
|
// let recv = match state.recv{
|
||||||
None => {
|
// None => {
|
||||||
//println!("pNDI_recv no encontrado");
|
// //println!("pNDI_recv no encontrado");
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
return true;
|
// return true;
|
||||||
}
|
// }
|
||||||
Some(ref recv) => recv.clone(),
|
// Some(ref recv) => recv.clone(),
|
||||||
};
|
// };
|
||||||
let pNDI_recv = recv.recv;
|
// let pNDI_recv = recv.recv;
|
||||||
unsafe{
|
// unsafe{
|
||||||
NDIlib_recv_destroy(pNDI_recv);
|
// let recv = match ndi2.recv{
|
||||||
//NDIlib_destroy();
|
// None => {
|
||||||
}
|
// //TODO Update gst_element_error with one more descriptive
|
||||||
|
// //println!("pNDI_recv no encontrado");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
|
// Some(ref recv) => recv.clone(),
|
||||||
|
// };
|
||||||
|
// let pNDI_recv = recv.recv;
|
||||||
|
// NDIlib_recv_destroy(pNDI_recv);
|
||||||
|
// //NDIlib_destroy();
|
||||||
|
// }
|
||||||
|
stop_ndi();
|
||||||
// Commented because when adding ndi destroy stopped in this line
|
// Commented because when adding ndi destroy stopped in this line
|
||||||
//*self.state.lock().unwrap() = Default::default();
|
//*self.state.lock().unwrap() = Default::default();
|
||||||
self.unlock(element);
|
self.unlock(element);
|
||||||
|
@ -524,12 +545,23 @@ impl NdiAudioSrc {
|
||||||
fn fixate(&self, element: &BaseSrc, caps: gst::Caps) -> gst::Caps {
|
fn fixate(&self, element: &BaseSrc, caps: gst::Caps) -> gst::Caps {
|
||||||
//We need to set the correct caps resolution and framerate
|
//We need to set the correct caps resolution and framerate
|
||||||
let state = self.state.lock().unwrap();
|
let state = self.state.lock().unwrap();
|
||||||
let recv = match state.recv{
|
// let recv = match state.recv{
|
||||||
|
// None => {
|
||||||
|
// //TODO Update gst_element_error with one more descriptive
|
||||||
|
// //println!("pNDI_recv no encontrado");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
// //TODO if none not return anything
|
||||||
|
// return caps;
|
||||||
|
// }
|
||||||
|
// Some(ref recv) => recv.clone(),
|
||||||
|
// };
|
||||||
|
// let pNDI_recv = recv.recv;
|
||||||
|
unsafe{
|
||||||
|
let recv = match ndi2.recv{
|
||||||
None => {
|
None => {
|
||||||
//TODO Update gst_element_error with one more descriptive
|
//TODO Update gst_element_error with one more descriptive
|
||||||
//println!("pNDI_recv no encontrado");
|
//println!("pNDI_recv no encontrado");
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
//TODO if none not return anything
|
|
||||||
return caps;
|
return caps;
|
||||||
}
|
}
|
||||||
Some(ref recv) => recv.clone(),
|
Some(ref recv) => recv.clone(),
|
||||||
|
@ -553,6 +585,7 @@ impl NdiAudioSrc {
|
||||||
// called Caps::fixate() here
|
// called Caps::fixate() here
|
||||||
element.parent_fixate(caps)
|
element.parent_fixate(caps)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//Creates the audio buffers
|
//Creates the audio buffers
|
||||||
fn create(
|
fn create(
|
||||||
|
@ -578,7 +611,18 @@ impl NdiAudioSrc {
|
||||||
};
|
};
|
||||||
//let mut pNDI_recva = ptr::null();
|
//let mut pNDI_recva = ptr::null();
|
||||||
// {
|
// {
|
||||||
let recv = match state.recv{
|
// let recv = match state.recv{
|
||||||
|
// None => {
|
||||||
|
// //TODO Update gst_element_error with one more descriptive
|
||||||
|
// //println!("pNDI_recv no encontrado");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
// return Err(gst::FlowReturn::NotNegotiated);
|
||||||
|
// }
|
||||||
|
// Some(ref recv) => recv.clone(),
|
||||||
|
// };
|
||||||
|
// let pNDI_recv = recv.recv;
|
||||||
|
unsafe{
|
||||||
|
let recv = match ndi2.recv{
|
||||||
None => {
|
None => {
|
||||||
//TODO Update gst_element_error with one more descriptive
|
//TODO Update gst_element_error with one more descriptive
|
||||||
//println!("pNDI_recv no encontrado");
|
//println!("pNDI_recv no encontrado");
|
||||||
|
@ -588,9 +632,18 @@ impl NdiAudioSrc {
|
||||||
Some(ref recv) => recv.clone(),
|
Some(ref recv) => recv.clone(),
|
||||||
};
|
};
|
||||||
let pNDI_recv = recv.recv;
|
let pNDI_recv = recv.recv;
|
||||||
|
|
||||||
|
|
||||||
// }
|
// }
|
||||||
|
|
||||||
let start_pts = match state.start_pts {
|
// let start_pts = match state.start_pts {
|
||||||
|
// None => {
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
||||||
|
// return Err(gst::FlowReturn::NotNegotiated);
|
||||||
|
// }
|
||||||
|
// Some(ref start_pts) => start_pts.clone(),
|
||||||
|
// };
|
||||||
|
let start_pts = match ndi2.start_pts {
|
||||||
None => {
|
None => {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
||||||
return Err(gst::FlowReturn::NotNegotiated);
|
return Err(gst::FlowReturn::NotNegotiated);
|
||||||
|
@ -625,6 +678,7 @@ impl NdiAudioSrc {
|
||||||
Ok(buffer)
|
Ok(buffer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
fn unlock(&self, element: &BaseSrc) -> bool {
|
fn unlock(&self, element: &BaseSrc) -> bool {
|
||||||
|
|
|
@ -21,6 +21,9 @@ use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
use std::ffi::{CStr, CString};
|
use std::ffi::{CStr, CString};
|
||||||
|
|
||||||
use ndilib::*;
|
use ndilib::*;
|
||||||
|
use hue;
|
||||||
|
use ndi2;
|
||||||
|
use stop_ndi;
|
||||||
|
|
||||||
// Property value storage
|
// Property value storage
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
@ -133,8 +136,8 @@ impl NdiVideoSrc {
|
||||||
klass.set_metadata(
|
klass.set_metadata(
|
||||||
"NewTek NDI Video Source",
|
"NewTek NDI Video Source",
|
||||||
"Source",
|
"Source",
|
||||||
"NewTek NDI video/audio source",
|
"NewTek NDI video source",
|
||||||
"Ruben Gonzalez <rubenrua@teltek.es>",
|
"Ruben Gonzalez <rubenrua@teltek.es>, Daniel Vilar <daniel.peiteado@teltek.es>",
|
||||||
);
|
);
|
||||||
|
|
||||||
// On the src pad, we can produce F32/F64 with any sample rate
|
// On the src pad, we can produce F32/F64 with any sample rate
|
||||||
|
@ -273,15 +276,20 @@ impl NdiVideoSrc {
|
||||||
frame = true;
|
frame = true;
|
||||||
//pts = ((video_frame.timestamp as u64) * 100) - state.start_pts.unwrap();
|
//pts = ((video_frame.timestamp as u64) * 100) - state.start_pts.unwrap();
|
||||||
// println!("{:?}", pts/1000000);
|
// println!("{:?}", pts/1000000);
|
||||||
*pts = ((video_frame.timestamp as u64) * 100);
|
// println!("{:?}", video_frame.timestamp);
|
||||||
|
// println!("{:?}", video_frame.timecode);
|
||||||
|
//*pts = ((video_frame.timestamp as u64) * 100);
|
||||||
|
*pts = ((video_frame.timecode as u64) * 100);
|
||||||
if *pts2 == 0{
|
if *pts2 == 0{
|
||||||
*pts2 = (video_frame.timestamp as u64) * 100;
|
// *pts2 = (video_frame.timestamp as u64) * 100;
|
||||||
|
*pts2 = (video_frame.timecode as u64) * 100;
|
||||||
*pts = 0;
|
*pts = 0;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
// println!("{:?}", video_frame.timecode * 100);
|
// println!("{:?}", video_frame.timecode * 100);
|
||||||
// println!("{:?}", pts2.pts);
|
// println!("{:?}", pts2.pts);
|
||||||
*pts = (((video_frame.timestamp as u64) * 100) - *pts2);
|
//*pts = (((video_frame.timestamp as u64) * 100) - *pts2);
|
||||||
|
*pts = (((video_frame.timecode as u64) * 100) - *pts2);
|
||||||
//println!("{:?}", pts/1000000);
|
//println!("{:?}", pts/1000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -356,151 +364,162 @@ impl NdiVideoSrc {
|
||||||
|
|
||||||
//let mut pNDI_recv = state.recv;
|
//let mut pNDI_recv = state.recv;
|
||||||
unsafe {
|
unsafe {
|
||||||
if !NDIlib_initialize() {
|
return hue(element, settings.ip.clone(), settings.stream_name.clone());
|
||||||
//println!("Cannot run NDI: NDIlib_initialize error.");
|
// if !NDIlib_initialize() {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_initialize error"]);
|
// //println!("Cannot run NDI: NDIlib_initialize error.");
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_initialize error"]);
|
||||||
}
|
// return false;
|
||||||
|
// }
|
||||||
let mut source: NDIlib_source_t = NDIlib_source_t{p_ndi_name: ptr::null(),
|
//
|
||||||
p_ip_address: ptr::null()};
|
// let mut source: NDIlib_source_t = NDIlib_source_t{p_ndi_name: ptr::null(),
|
||||||
|
// p_ip_address: ptr::null()};
|
||||||
// print!("{:?}", settings.stream_name);
|
//
|
||||||
// print!("{:?}", settings.ip);
|
// // print!("{:?}", settings.stream_name);
|
||||||
|
// // print!("{:?}", settings.ip);
|
||||||
//TODO default values
|
//
|
||||||
let NDI_find_create_desc: NDIlib_find_create_t = Default::default();
|
// //TODO default values
|
||||||
let pNDI_find = NDIlib_find_create_v2(&NDI_find_create_desc);
|
// let NDI_find_create_desc: NDIlib_find_create_t = Default::default();
|
||||||
let ip_ptr = CString::new(settings.ip.clone()).unwrap();
|
// let pNDI_find = NDIlib_find_create_v2(&NDI_find_create_desc);
|
||||||
if (ip_ptr == CString::new("").unwrap()){
|
// let ip_ptr = CString::new(settings.ip.clone()).unwrap();
|
||||||
if pNDI_find.is_null() {
|
// if (ip_ptr == CString::new("").unwrap()){
|
||||||
//println!("Cannot run NDI: NDIlib_find_create_v2 error.");
|
// if pNDI_find.is_null() {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_find_create_v2 error"]);
|
// //println!("Cannot run NDI: NDIlib_find_create_v2 error.");
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_find_create_v2 error"]);
|
||||||
}
|
// return false;
|
||||||
|
// }
|
||||||
let mut total_sources: u32 = 0;
|
//
|
||||||
let mut p_sources = ptr::null();
|
// let mut total_sources: u32 = 0;
|
||||||
//TODO Delete while. If not, will loop until a source it's available
|
// let mut p_sources = ptr::null();
|
||||||
//while total_sources == 0 {
|
// //TODO Delete while. If not, will loop until a source it's available
|
||||||
// TODO Sleep 1s to wait for all sources
|
// //while total_sources == 0 {
|
||||||
thread::sleep(time::Duration::from_millis(2000));
|
// // TODO Sleep 1s to wait for all sources
|
||||||
p_sources = NDIlib_find_get_current_sources(pNDI_find, &mut total_sources as *mut u32);
|
// thread::sleep(time::Duration::from_millis(2000));
|
||||||
//}
|
// p_sources = NDIlib_find_get_current_sources(pNDI_find, &mut total_sources as *mut u32);
|
||||||
|
// //}
|
||||||
// We need at least one source
|
//
|
||||||
if p_sources.is_null() {
|
// // We need at least one source
|
||||||
//println!("Error getting NDIlib_find_get_current_sources.");
|
// if p_sources.is_null() {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Error getting NDIlib_find_get_current_sources"]);
|
// //println!("Error getting NDIlib_find_get_current_sources.");
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Error getting NDIlib_find_get_current_sources"]);
|
||||||
//::std::process::exit(1);
|
// return false;
|
||||||
}
|
// //::std::process::exit(1);
|
||||||
|
// }
|
||||||
let mut no_source: isize = -1;
|
//
|
||||||
for i in 0..total_sources as isize{
|
// let mut no_source: isize = -1;
|
||||||
if CStr::from_ptr((*p_sources.offset(i)).p_ndi_name)
|
// for i in 0..total_sources as isize{
|
||||||
.to_string_lossy()
|
// if CStr::from_ptr((*p_sources.offset(i)).p_ndi_name)
|
||||||
.into_owned() == settings.stream_name{
|
// .to_string_lossy()
|
||||||
no_source = i;
|
// .into_owned() == settings.stream_name{
|
||||||
break;
|
// no_source = i;
|
||||||
}
|
// break;
|
||||||
}
|
// }
|
||||||
if no_source == -1 {
|
// }
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Stream name not found"]);
|
// if no_source == -1 {
|
||||||
return false;
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Stream name not found"]);
|
||||||
}
|
// return false;
|
||||||
println!(
|
// }
|
||||||
"Total_sources {}: Name '{}' Address '{}'",
|
// println!(
|
||||||
total_sources,
|
// "Total_sources {}: Name '{}' Address '{}'",
|
||||||
CStr::from_ptr((*p_sources.offset(no_source)).p_ndi_name)
|
// total_sources,
|
||||||
.to_string_lossy()
|
// CStr::from_ptr((*p_sources.offset(no_source)).p_ndi_name)
|
||||||
.into_owned(),
|
// .to_string_lossy()
|
||||||
CStr::from_ptr((*p_sources.offset(no_source)).p_ip_address)
|
// .into_owned(),
|
||||||
.to_string_lossy()
|
// CStr::from_ptr((*p_sources.offset(no_source)).p_ip_address)
|
||||||
.into_owned()
|
// .to_string_lossy()
|
||||||
);
|
// .into_owned()
|
||||||
source = *p_sources.offset(no_source).clone();
|
// );
|
||||||
}
|
// source = *p_sources.offset(no_source).clone();
|
||||||
else{
|
// }
|
||||||
source.p_ip_address = ip_ptr.as_ptr();
|
// else{
|
||||||
println!(
|
// source.p_ip_address = ip_ptr.as_ptr();
|
||||||
"Address '{}'",
|
// println!(
|
||||||
CStr::from_ptr(source.p_ip_address)
|
// "Address '{}'",
|
||||||
.to_string_lossy()
|
// CStr::from_ptr(source.p_ip_address)
|
||||||
.into_owned()
|
// .to_string_lossy()
|
||||||
);
|
// .into_owned()
|
||||||
}
|
// );
|
||||||
|
// }
|
||||||
// We now have at least one source, so we create a receiver to look at it.
|
//
|
||||||
// We tell it that we prefer YCbCr video since it is more efficient for us. If the source has an alpha channel
|
// // We now have at least one source, so we create a receiver to look at it.
|
||||||
// it will still be provided in BGRA
|
// // We tell it that we prefer YCbCr video since it is more efficient for us. If the source has an alpha channel
|
||||||
let p_ndi_name = CString::new("Galicaster NDI Receiver").unwrap();
|
// // it will still be provided in BGRA
|
||||||
let NDI_recv_create_desc = NDIlib_recv_create_v3_t {
|
// let p_ndi_name = CString::new("Galicaster NDI Receiver").unwrap();
|
||||||
source_to_connect_to: source,
|
// let NDI_recv_create_desc = NDIlib_recv_create_v3_t {
|
||||||
p_ndi_name: p_ndi_name.as_ptr(),
|
// source_to_connect_to: source,
|
||||||
..Default::default()
|
// p_ndi_name: p_ndi_name.as_ptr(),
|
||||||
};
|
// ..Default::default()
|
||||||
|
|
||||||
let pNDI_recv = NDIlib_recv_create_v3(&NDI_recv_create_desc);
|
|
||||||
if pNDI_recv.is_null() {
|
|
||||||
//println!("Cannot run NDI: NDIlib_recv_create_v3 error.");
|
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_recv_create_v3 error"]);
|
|
||||||
return false;
|
|
||||||
//::std::process::exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Destroy the NDI finder. We needed to have access to the pointers to p_sources[0]
|
|
||||||
NDIlib_find_destroy(pNDI_find);
|
|
||||||
|
|
||||||
// We are now going to mark this source as being on program output for tally purposes (but not on preview)
|
|
||||||
let tally_state: NDIlib_tally_t = Default::default();
|
|
||||||
NDIlib_recv_set_tally(pNDI_recv, &tally_state);
|
|
||||||
|
|
||||||
// Enable Hardwqre Decompression support if this support has it. Please read the caveats in the documentation
|
|
||||||
// regarding this. There are times in which it might reduce the performance although on small stream numbers
|
|
||||||
// it almost always yields the same or better performance.
|
|
||||||
let data = CString::new("<ndi_hwaccel enabled=\"true\"/>").unwrap();
|
|
||||||
let enable_hw_accel = NDIlib_metadata_frame_t {
|
|
||||||
length: data.to_bytes().len() as i32,
|
|
||||||
timecode: 0,
|
|
||||||
p_data: data.as_ptr(),
|
|
||||||
};
|
|
||||||
|
|
||||||
NDIlib_recv_send_metadata(pNDI_recv, &enable_hw_accel);
|
|
||||||
state.recv = Some(NdiInstance{recv: pNDI_recv});
|
|
||||||
let start = SystemTime::now();
|
|
||||||
let since_the_epoch = start.duration_since(UNIX_EPOCH)
|
|
||||||
.expect("Time went backwards");
|
|
||||||
println!("{:?}", since_the_epoch);
|
|
||||||
state.start_pts = Some(since_the_epoch.as_secs() * 1000000000 +
|
|
||||||
since_the_epoch.subsec_nanos() as u64);
|
|
||||||
//TODO Another way to save NDI_recv variable
|
|
||||||
// *state = State{
|
|
||||||
// info: state.info.clone(),
|
|
||||||
// recv: Some(NdiInstance{recv: pNDI_recv}),
|
|
||||||
// };
|
// };
|
||||||
|
//
|
||||||
|
// let pNDI_recv = NDIlib_recv_create_v3(&NDI_recv_create_desc);
|
||||||
|
// if pNDI_recv.is_null() {
|
||||||
|
// //println!("Cannot run NDI: NDIlib_recv_create_v3 error.");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Cannot run NDI: NDIlib_recv_create_v3 error"]);
|
||||||
|
// return false;
|
||||||
|
// //::std::process::exit(1);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // Destroy the NDI finder. We needed to have access to the pointers to p_sources[0]
|
||||||
|
// NDIlib_find_destroy(pNDI_find);
|
||||||
|
//
|
||||||
|
// // We are now going to mark this source as being on program output for tally purposes (but not on preview)
|
||||||
|
// let tally_state: NDIlib_tally_t = Default::default();
|
||||||
|
// NDIlib_recv_set_tally(pNDI_recv, &tally_state);
|
||||||
|
//
|
||||||
|
// // Enable Hardwqre Decompression support if this support has it. Please read the caveats in the documentation
|
||||||
|
// // regarding this. There are times in which it might reduce the performance although on small stream numbers
|
||||||
|
// // it almost always yields the same or better performance.
|
||||||
|
// let data = CString::new("<ndi_hwaccel enabled=\"true\"/>").unwrap();
|
||||||
|
// let enable_hw_accel = NDIlib_metadata_frame_t {
|
||||||
|
// length: data.to_bytes().len() as i32,
|
||||||
|
// timecode: 0,
|
||||||
|
// p_data: data.as_ptr(),
|
||||||
|
// };
|
||||||
|
//
|
||||||
|
// NDIlib_recv_send_metadata(pNDI_recv, &enable_hw_accel);
|
||||||
|
// state.recv = Some(NdiInstance{recv: pNDI_recv});
|
||||||
|
// let start = SystemTime::now();
|
||||||
|
// let since_the_epoch = start.duration_since(UNIX_EPOCH)
|
||||||
|
// .expect("Time went backwards");
|
||||||
|
// println!("{:?}", since_the_epoch);
|
||||||
|
// state.start_pts = Some(since_the_epoch.as_secs() * 1000000000 +
|
||||||
|
// since_the_epoch.subsec_nanos() as u64);
|
||||||
|
// //TODO Another way to save NDI_recv variable
|
||||||
|
// // *state = State{
|
||||||
|
// // info: state.info.clone(),
|
||||||
|
// // recv: Some(NdiInstance{recv: pNDI_recv}),
|
||||||
|
// // };
|
||||||
}
|
}
|
||||||
|
|
||||||
true
|
// true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called when shutting down the element so we can release all stream-related state
|
// Called when shutting down the element so we can release all stream-related state
|
||||||
fn stop(&self, element: &BaseSrc) -> bool {
|
fn stop(&self, element: &BaseSrc) -> bool {
|
||||||
// Reset state
|
// Reset state
|
||||||
let state = self.state.lock().unwrap();
|
let state = self.state.lock().unwrap();
|
||||||
let recv = match state.recv{
|
// let recv = match state.recv{
|
||||||
None => {
|
// None => {
|
||||||
//println!("pNDI_recv no encontrado");
|
// //println!("pNDI_recv no encontrado");
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
return true;
|
// return true;
|
||||||
}
|
// }
|
||||||
Some(ref recv) => recv.clone(),
|
// Some(ref recv) => recv.clone(),
|
||||||
};
|
// };
|
||||||
let pNDI_recv = recv.recv;
|
// let pNDI_recv = recv.recv;
|
||||||
unsafe{
|
// unsafe{
|
||||||
NDIlib_recv_destroy(pNDI_recv);
|
// let recv = match ndi2.recv{
|
||||||
//NDIlib_destroy();
|
// None => {
|
||||||
}
|
// //println!("pNDI_recv no encontrado");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
|
// Some(ref recv) => recv.clone(),
|
||||||
|
// };
|
||||||
|
// let pNDI_recv = recv.recv;
|
||||||
|
// NDIlib_recv_destroy(pNDI_recv);
|
||||||
|
// //NDIlib_destroy();
|
||||||
|
// }
|
||||||
|
stop_ndi();
|
||||||
// Commented because when adding ndi destroy stopped in this line
|
// Commented because when adding ndi destroy stopped in this line
|
||||||
//*self.state.lock().unwrap() = Default::default();
|
//*self.state.lock().unwrap() = Default::default();
|
||||||
self.unlock(element);
|
self.unlock(element);
|
||||||
|
@ -512,7 +531,20 @@ impl NdiVideoSrc {
|
||||||
fn fixate(&self, element: &BaseSrc, caps: gst::Caps) -> gst::Caps {
|
fn fixate(&self, element: &BaseSrc, caps: gst::Caps) -> gst::Caps {
|
||||||
//We need to set the correct caps resolution and framerate
|
//We need to set the correct caps resolution and framerate
|
||||||
let state = self.state.lock().unwrap();
|
let state = self.state.lock().unwrap();
|
||||||
let recv = match state.recv{
|
// let recv = match state.recv{
|
||||||
|
// None => {
|
||||||
|
// //TODO Update gst_element_error with one more descriptive
|
||||||
|
// //println!("pNDI_recv no encontrado");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
// //TODO if none not return anything
|
||||||
|
// return caps;
|
||||||
|
// }
|
||||||
|
// Some(ref recv) => recv.clone(),
|
||||||
|
// };
|
||||||
|
//
|
||||||
|
// let pNDI_recv = recv.recv;
|
||||||
|
unsafe{
|
||||||
|
let recv = match ndi2.recv{
|
||||||
None => {
|
None => {
|
||||||
//TODO Update gst_element_error with one more descriptive
|
//TODO Update gst_element_error with one more descriptive
|
||||||
//println!("pNDI_recv no encontrado");
|
//println!("pNDI_recv no encontrado");
|
||||||
|
@ -544,6 +576,7 @@ impl NdiVideoSrc {
|
||||||
// called Caps::fixate() here
|
// called Caps::fixate() here
|
||||||
element.parent_fixate(caps)
|
element.parent_fixate(caps)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//Creates the audio buffers
|
//Creates the audio buffers
|
||||||
fn create(
|
fn create(
|
||||||
|
@ -569,7 +602,18 @@ impl NdiVideoSrc {
|
||||||
};
|
};
|
||||||
//let mut pNDI_recva = ptr::null();
|
//let mut pNDI_recva = ptr::null();
|
||||||
// {
|
// {
|
||||||
let recv = match state.recv{
|
// let recv = match state.recv{
|
||||||
|
// None => {
|
||||||
|
// //TODO Update gst_element_error with one more descriptive
|
||||||
|
// //println!("pNDI_recv no encontrado");
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["No encontramos ndi recv"]);
|
||||||
|
// return Err(gst::FlowReturn::NotNegotiated);
|
||||||
|
// }
|
||||||
|
// Some(ref recv) => recv.clone(),
|
||||||
|
// };
|
||||||
|
// let pNDI_recv = recv.recv;
|
||||||
|
unsafe{
|
||||||
|
let recv = match ndi2.recv{
|
||||||
None => {
|
None => {
|
||||||
//TODO Update gst_element_error with one more descriptive
|
//TODO Update gst_element_error with one more descriptive
|
||||||
//println!("pNDI_recv no encontrado");
|
//println!("pNDI_recv no encontrado");
|
||||||
|
@ -581,7 +625,15 @@ impl NdiVideoSrc {
|
||||||
let pNDI_recv = recv.recv;
|
let pNDI_recv = recv.recv;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
let start_pts = match state.start_pts {
|
// let start_pts = match state.start_pts {
|
||||||
|
// None => {
|
||||||
|
// gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
||||||
|
// return Err(gst::FlowReturn::NotNegotiated);
|
||||||
|
// }
|
||||||
|
// Some(ref start_pts) => start_pts.clone(),
|
||||||
|
// };
|
||||||
|
|
||||||
|
let start_pts = match ndi2.start_pts {
|
||||||
None => {
|
None => {
|
||||||
gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
gst_element_error!(element, gst::CoreError::Negotiation, ["Have no caps yet"]);
|
||||||
return Err(gst::FlowReturn::NotNegotiated);
|
return Err(gst::FlowReturn::NotNegotiated);
|
||||||
|
@ -705,7 +757,7 @@ impl NdiVideoSrc {
|
||||||
Ok(buffer)
|
Ok(buffer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue