gstreamer-rs/gstreamer/src/lib.rs
Sebastian Dröge ceed45cfd7 gstreamer: Optimize Buffer / Memory from_slice() to have fewer allocations
Instead of using `gst_memory_new_wrapped_full()` and boxing the data,
create an GstAllocator subclass that allows allocating memories that
store the data inline.

By avoiding the box, one additional heap allocation per memory is
avoided.

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/issues/498

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1357>
2023-12-05 10:51:28 +02:00

356 lines
9.7 KiB
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
#![cfg_attr(docsrs, feature(doc_cfg))]
#![recursion_limit = "256"]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::manual_range_contains)]
#![doc = include_str!("../README.md")]
// Re-exported for the subclass gst_plugin_define! macro
pub use ffi;
pub use glib;
pub use paste;
#[doc(hidden)]
pub static INITIALIZED: std::sync::atomic::AtomicBool = std::sync::atomic::AtomicBool::new(false);
#[cold]
#[inline(never)]
#[track_caller]
pub fn assert_initialized() {
#[allow(unused_unsafe)]
if unsafe { ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
crate::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
}
macro_rules! assert_initialized_main_thread {
() => {
if !crate::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
$crate::assert_initialized();
}
};
}
macro_rules! skip_assert_initialized {
() => {};
}
#[allow(clippy::needless_borrow)]
#[allow(clippy::let_unit_value)]
mod auto;
pub use crate::auto::*;
#[macro_use]
#[cfg(feature = "serde")]
mod serde_macros;
#[cfg(feature = "serde")]
pub use crate::serde_macros::*;
#[macro_use]
pub mod log;
pub use crate::log::{
DebugCategory, DebugLogFunction, DebugMessage, LoggedObject, CAT_BUFFER, CAT_BUFFER_LIST,
CAT_BUS, CAT_CALL_TRACE, CAT_CAPS, CAT_CLOCK, CAT_CONTEXT, CAT_DEFAULT, CAT_ELEMENT_PADS,
CAT_ERROR_SYSTEM, CAT_EVENT, CAT_GST_INIT, CAT_LOCKING, CAT_MEMORY, CAT_MESSAGE, CAT_META,
CAT_NEGOTIATION, CAT_PADS, CAT_PARAMS, CAT_PARENTAGE, CAT_PERFORMANCE, CAT_PIPELINE,
CAT_PLUGIN_INFO, CAT_PLUGIN_LOADING, CAT_PROBE, CAT_PROPERTIES, CAT_QOS, CAT_REFCOUNTING,
CAT_REGISTRY, CAT_RUST, CAT_SCHEDULING, CAT_SIGNAL, CAT_STATES,
};
#[macro_use]
mod error;
pub use crate::error::*;
#[macro_use]
pub mod miniobject;
pub use miniobject::{MiniObject, MiniObjectRef};
pub mod message;
pub use crate::message::{Message, MessageErrorDomain, MessageRef, MessageView};
mod value;
pub use crate::value::{
Array, ArrayRef, Bitmask, Fraction, FractionRange, IntRange, List, ListRef,
};
#[cfg(feature = "serde")]
#[macro_use]
mod value_serde;
#[cfg(feature = "serde")]
mod flag_serde;
pub mod structure;
pub use crate::structure::{Structure, StructureRef};
#[cfg(feature = "serde")]
mod structure_serde;
pub mod caps;
pub use crate::caps::{Caps, CapsFilterMapAction, CapsRef};
mod caps_features;
#[cfg(feature = "serde")]
mod caps_serde;
pub use crate::caps_features::{
CapsFeatures, CapsFeaturesRef, CAPS_FEATURES_MEMORY_SYSTEM_MEMORY,
CAPS_FEATURE_MEMORY_SYSTEM_MEMORY,
};
#[cfg(feature = "serde")]
mod caps_features_serde;
pub mod tags;
pub use crate::tags::{
tag_exists, tag_get_description, tag_get_flag, tag_get_nick, tag_get_type, Tag, TagList,
TagListRef,
};
#[cfg(feature = "serde")]
mod tags_serde;
pub mod meta;
#[cfg(feature = "v1_16")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
pub use crate::meta::MetaSeqnum;
pub use crate::meta::{
Meta, MetaAPI, MetaAPIExt, MetaRef, MetaRefMut, ParentBufferMeta, ProtectionMeta,
ReferenceTimestampMeta,
};
pub mod buffer;
pub use crate::buffer::{
Buffer, BufferMap, BufferRef, MappedBuffer, BUFFER_COPY_ALL, BUFFER_COPY_METADATA,
};
mod buffer_cursor;
pub use crate::buffer_cursor::{BufferCursor, BufferRefCursor};
pub mod memory;
mod memory_wrapped;
pub use crate::memory::{MappedMemory, Memory, MemoryMap, MemoryRef};
#[cfg(feature = "serde")]
mod buffer_serde;
pub mod sample;
pub use crate::sample::{Sample, SampleRef};
#[cfg(feature = "serde")]
mod sample_serde;
pub mod bufferlist;
pub use crate::bufferlist::{BufferList, BufferListRef};
#[cfg(feature = "serde")]
mod bufferlist_serde;
pub mod query;
pub use crate::query::{Query, QueryRef, QueryView, QueryViewMut};
pub mod event;
pub use crate::event::{Event, EventRef, EventView, GroupId, Seqnum};
pub mod context;
pub use crate::context::{Context, ContextRef};
mod rank;
pub use crate::rank::Rank;
mod static_caps;
pub use crate::static_caps::*;
mod static_pad_template;
pub use crate::static_pad_template::*;
pub mod promise;
pub use promise::{Promise, PromiseError};
pub mod bus;
mod element;
pub mod element_factory;
mod bin;
pub use bin::BinBuilder;
mod pipeline;
pub use pipeline::PipelineBuilder;
mod allocation_params;
pub use self::allocation_params::AllocationParams;
mod allocator;
mod element_factory_type;
pub use element_factory_type::*;
mod tracer;
mod tracer_factory;
// OS dependent Bus extensions (also import the other platform mod for doc)
#[cfg(any(unix, docsrs))]
mod bus_unix;
#[cfg(any(windows, docsrs))]
mod bus_windows;
mod child_proxy;
mod date_time;
#[cfg(feature = "serde")]
mod date_time_serde;
mod device_monitor;
mod device_provider;
mod device_provider_factory;
mod enums;
mod ghost_pad;
mod gobject;
mod iterator;
mod object;
mod pad;
pub use pad::{
EventForeachAction, PadBuilder, PadGetRangeSuccess, PadProbeData, PadProbeId, PadProbeInfo,
StreamLock,
};
mod control_binding;
mod control_source;
mod parse_context;
mod proxy_pad;
mod registry;
mod tag_setter;
pub mod task;
pub use task::{TaskLock, TaskLockGuard};
mod task_pool;
pub use self::iterator::{Iterator, IteratorError, IteratorImpl, StdIterator};
pub use crate::{
device_monitor::DeviceMonitorFilterId,
element::{
ElementMessageType, NotifyWatchId, ELEMENT_METADATA_AUTHOR, ELEMENT_METADATA_DESCRIPTION,
ELEMENT_METADATA_DOC_URI, ELEMENT_METADATA_ICON_NAME, ELEMENT_METADATA_KLASS,
ELEMENT_METADATA_LONGNAME,
},
enums::{
ClockError, ClockSuccess, FlowError, FlowReturn, FlowSuccess, MessageType, PadLinkError,
PadLinkReturn, PadLinkSuccess, StateChangeError, StateChangeSuccess, TagError,
},
parse_context::ParseContext,
task_pool::{TaskHandle, TaskPoolTaskHandle},
};
mod plugin_feature;
mod plugin;
pub mod stream;
pub mod stream_collection;
mod typefind;
pub use crate::typefind::*;
mod typefind_factory;
pub mod format;
pub use crate::format::{ClockTime, GenericFormattedValue, GenericSignedFormattedValue, Signed};
mod segment;
pub use crate::segment::*;
#[cfg(feature = "serde")]
mod segment_serde;
pub mod toc;
pub use crate::toc::{Toc, TocEntry, TocEntryRef, TocRef};
#[cfg(feature = "serde")]
mod toc_serde;
mod clock;
pub use crate::clock::{AtomicClockReturn, ClockId, PeriodicClockId, SingleShotClockId};
mod buffer_pool;
pub use crate::buffer_pool::{BufferPoolAcquireParams, BufferPoolConfig, BufferPoolConfigRef};
mod pad_template;
pub use pad_template::PadTemplateBuilder;
pub mod param_spec;
pub use crate::param_spec::{ParamSpecArray, ParamSpecFraction};
mod functions;
pub use crate::functions::*;
mod utils;
pub use crate::utils::ObjectLockGuard;
pub mod parse;
#[cfg(feature = "v1_18")]
mod gtype;
use std::ptr;
#[doc(alias = "gst_init_check")]
pub fn init() -> Result<(), glib::Error> {
unsafe {
use glib::translate::*;
let mut error = ptr::null_mut();
if from_glib(ffi::gst_init_check(
ptr::null_mut(),
ptr::null_mut(),
&mut error,
)) {
crate::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
Ok(())
} else {
Err(from_glib_full(error))
}
}
}
// rustdoc-stripper-ignore-next
/// Deinitialize GStreamer
///
/// # Safety
///
/// This must only be called once during the lifetime of the process, once no GStreamer threads
/// are running anymore and all GStreamer resources are released.
pub unsafe fn deinit() {
crate::INITIALIZED.store(false, std::sync::atomic::Ordering::SeqCst);
ffi::gst_deinit();
}
pub const PARAM_FLAG_CONTROLLABLE: glib::ParamFlags = glib::ParamFlags::USER_1;
pub const PARAM_FLAG_MUTABLE_READY: glib::ParamFlags = glib::ParamFlags::USER_2;
pub const PARAM_FLAG_MUTABLE_PAUSED: glib::ParamFlags = glib::ParamFlags::USER_3;
pub const PARAM_FLAG_MUTABLE_PLAYING: glib::ParamFlags = glib::ParamFlags::USER_4;
#[cfg(feature = "v1_18")]
pub const PARAM_FLAG_DOC_SHOW_DEFAULT: glib::ParamFlags = glib::ParamFlags::USER_5;
#[cfg(feature = "v1_18")]
pub const PARAM_FLAG_CONDITIONALLY_AVAILABLE: glib::ParamFlags = glib::ParamFlags::USER_6;
// Re-export all the traits in a prelude module, so that applications
// can always "use gst::prelude::*" without getting conflicts
pub mod prelude {
#[doc(hidden)]
pub use glib::prelude::*;
pub use muldiv::MulDiv;
pub use opt_ops::prelude::*;
// OS dependent Bus extensions (also import the other platform trait for doc)
#[cfg(any(unix, docsrs))]
pub use crate::bus_unix::UnixBusExtManual;
#[cfg(any(windows, docsrs))]
pub use crate::bus_windows::WindowsBusExtManual;
#[cfg(feature = "v1_18")]
pub use crate::gtype::PluginApiExt;
pub use crate::{
auto::traits::*,
bin::GstBinExtManual,
buffer_pool::BufferPoolExtManual,
child_proxy::ChildProxyExtManual,
clock::ClockExtManual,
device_monitor::DeviceMonitorExtManual,
device_provider::{DeviceProviderClassExt, DeviceProviderExtManual},
element::{ElementClassExt, ElementExtManual},
format::prelude::*,
gobject::GObjectExtManualGst,
memory::MemoryType,
message::MessageErrorDomain,
meta::{MetaAPI, MetaAPIExt},
miniobject::IsMiniObject,
object::GstObjectExtManual,
pad::PadExtManual,
param_spec::GstParamSpecBuilderExt,
pipeline::GstPipelineExtManual,
plugin_feature::PluginFeatureExtManual,
tag_setter::TagSetterExtManual,
tags::{CustomTag, Tag},
task_pool::{TaskHandle, TaskPoolExtManual},
typefind::TypeFindImpl,
utils::Displayable,
value::GstValueExt,
};
}
#[macro_use]
pub mod subclass;