mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-03-29 22:56:45 +08:00
27 lines
788 B
Rust
27 lines
788 B
Rust
//! Video capture and streaming module
|
|
//!
|
|
//! This module provides V4L2 video capture, encoding, and streaming functionality.
|
|
|
|
pub mod codec_constraints;
|
|
pub mod convert;
|
|
pub mod decoder;
|
|
pub mod device;
|
|
pub mod encoder;
|
|
pub mod format;
|
|
pub mod frame;
|
|
pub mod shared_video_pipeline;
|
|
pub mod stream_manager;
|
|
pub mod streamer;
|
|
pub mod v4l2r_capture;
|
|
|
|
pub use convert::{PixelConverter, Yuv420pBuffer};
|
|
pub use device::{VideoDevice, VideoDeviceInfo};
|
|
pub use encoder::{H264Encoder, H264EncoderType, JpegEncoder};
|
|
pub use format::PixelFormat;
|
|
pub use frame::VideoFrame;
|
|
pub use shared_video_pipeline::{
|
|
EncodedVideoFrame, SharedVideoPipeline, SharedVideoPipelineConfig, SharedVideoPipelineStats,
|
|
};
|
|
pub use stream_manager::VideoStreamManager;
|
|
pub use streamer::{Streamer, StreamerState};
|