Module media_task

Source
Expand description

Task Abstractions

Modules§

tests

Enums§

MediaTaskError

Traits§

MediaTask
MediaTasks represent a media stream being actively processed (sent or received from a peer). They are are created by MediaTaskRunner::start. Typically a MediaTask will run a background task that is active until dropped or MediaTask::stop is called.
MediaTaskBuilder
MediaTaskRunners are configured with information about the media codec when either peer in a conversation configures a stream endpoint. When successfully configured, they can start MediaTasks by accepting a MediaStream, which will provide or consume media on that stream until dropped or stopped.
MediaTaskRunner
MediaTaskRunners represent an ability of the media system to start streaming media. They are configured for a specific codec by MediaTaskBuilder::configure Typically a MediaTaskRunner can start multiple streams without needing to be reconfigured, although possibly not simultaneously.