1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::NetTimeProvider;

use glib::prelude::*;
use glib::translate::*;

impl NetTimeProvider {
    /// Allows network clients to get the current time of `clock`.
    /// ## `clock`
    /// a [`crate::gst::Clock`] to export over the network
    /// ## `address`
    /// an address to bind on as a dotted quad
    ///  (xxx.xxx.xxx.xxx), IPv6 address, or NULL to bind to all addresses
    /// ## `port`
    /// a port to bind on, or 0 to let the kernel choose
    ///
    /// # Returns
    ///
    /// the new [`crate::NetTimeProvider`], or NULL on error
    pub fn new<P: IsA<gst::Clock>>(clock: &P, address: Option<&str>, port: i32) -> NetTimeProvider {
        assert_initialized_main_thread!();
        let address = address.to_glib_none();

        let (major, minor, _, _) = gst::version();
        if (major, minor) > (1, 12) {
            unsafe {
                from_glib_full(ffi::gst_net_time_provider_new(
                    clock.as_ref().to_glib_none().0,
                    address.0,
                    port,
                ))
            }
        } else {
            // Workaround for bad floating reference handling in 1.12. This issue was fixed for 1.13
            unsafe {
                from_glib_none(ffi::gst_net_time_provider_new(
                    clock.as_ref().to_glib_none().0,
                    address.0,
                    port,
                ))
            }
        }
    }
}