aboutsummaryrefslogtreecommitdiff
path: root/evc/src/bin/encode.rs
blob: 88023b3f8c7793f407c436413f45dbd4b48a3911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use std::io::BufReader;

use clap::Parser;
use evc::ser::Source;

#[derive(Parser)]
#[clap(about, version)]
pub struct EncodeArgs {
    #[arg(short, long)]
    width: usize,
    #[arg(short, long)]
    height: usize,
}

fn main() {
    let mut input = BufReader::new(std::io::stdin());

        

}