use crate::encoder::PredictionStructure;
use crate::Resolution;
pub struct VP8;
#[derive(Clone)]
pub struct EncoderConfig {
pub resolution: Resolution,
pub pred_structure: PredictionStructure,
}
impl Default for EncoderConfig {
fn default() -> Self {
Self {
resolution: Resolution { width: 320, height: 240 },
pred_structure: PredictionStructure::LowDelay { limit: 2048 },
}
}
}