// Copyright (C) 2017 Sebastian Dröge // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use crate::PlayerGMainContextSignalDispatcher; use glib::translate::*; impl PlayerGMainContextSignalDispatcher { pub fn new( application_context: Option<&glib::MainContext>, ) -> PlayerGMainContextSignalDispatcher { assert_initialized_main_thread!(); let application_context = application_context.to_glib_none(); unsafe { from_glib_full(ffi::gst_player_g_main_context_signal_dispatcher_new( application_context.0, ) as *mut ffi::GstPlayerGMainContextSignalDispatcher) } } }