pub trait VideoStreamDecoderManager:
Send
+ Sync
+ 'static {
// Required method
fn create_stream_decoder(
&self,
component_id: &str,
) -> Result<Box<dyn VideoStreamDecoderHandle>, PlatformError>;
}pub trait VideoStreamDecoderManager:
Send
+ Sync
+ 'static {
// Required method
fn create_stream_decoder(
&self,
component_id: &str,
) -> Result<Box<dyn VideoStreamDecoderHandle>, PlatformError>;
}