2017-09-10 11:20:35 +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 glib;
|
|
|
|
use glib::translate::*;
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_player_sys;
|
2018-04-25 08:10:06 +00:00
|
|
|
use PlayerGMainContextSignalDispatcher;
|
2017-09-10 11:20:35 +00:00
|
|
|
|
|
|
|
impl PlayerGMainContextSignalDispatcher {
|
2019-05-23 18:19:24 +00:00
|
|
|
pub fn new(
|
|
|
|
application_context: Option<&glib::MainContext>,
|
2017-09-10 11:55:29 +00:00
|
|
|
) -> PlayerGMainContextSignalDispatcher {
|
2017-09-10 11:20:35 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
let application_context = application_context.to_glib_none();
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib_full(
|
|
|
|
gst_player_sys::gst_player_g_main_context_signal_dispatcher_new(
|
|
|
|
application_context.0,
|
|
|
|
) as *mut gst_player_sys::GstPlayerGMainContextSignalDispatcher,
|
2017-09-10 11:55:29 +00:00
|
|
|
)
|
2017-09-10 11:20:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|