opentalk-compositor 0.18.0

Compositor for the OpenTalk Recorder and Obelisk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

use anyhow::Result;

pub(crate) mod matroskas3sink;

/// # Errors
///
/// Returns an error if Gstreamer is not initialized or this function was already called in this proccess.
pub fn register_all() -> Result<()> {
    matroskas3sink::register()
}