init
This commit is contained in:
commit
687d79f44c
7 changed files with 24 additions and 0 deletions
8
Cargo.toml
Normal file
8
Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "hls-transcoder-2"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
0
src/decode/mod.rs
Normal file
0
src/decode/mod.rs
Normal file
0
src/demux/mod.rs
Normal file
0
src/demux/mod.rs
Normal file
0
src/encode/mod.rs
Normal file
0
src/encode/mod.rs
Normal file
16
src/main.rs
Normal file
16
src/main.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
mod util;
|
||||
mod demux;
|
||||
mod decode;
|
||||
mod encode;
|
||||
mod muxer;
|
||||
|
||||
fn init() {
|
||||
}
|
||||
|
||||
fn process() {
|
||||
}
|
||||
|
||||
fn main() {
|
||||
init();
|
||||
process();
|
||||
}
|
0
src/muxer/mod.rs
Normal file
0
src/muxer/mod.rs
Normal file
0
src/util/mod.rs
Normal file
0
src/util/mod.rs
Normal file
Loading…
Reference in a new issue