├── .gitignore ├── Cargo.toml ├── README.md └── src ├── bitstream.rs ├── codec.rs ├── frame.rs ├── lib.rs └── testdata ├── tears_of_steel_12130.tif └── tears_of_steel_12209.tif /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/README.md -------------------------------------------------------------------------------- /src/bitstream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/src/bitstream.rs -------------------------------------------------------------------------------- /src/codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/src/codec.rs -------------------------------------------------------------------------------- /src/frame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/src/frame.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/testdata/tears_of_steel_12130.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/src/testdata/tears_of_steel_12130.tif -------------------------------------------------------------------------------- /src/testdata/tears_of_steel_12209.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempus-ex/hello-video-codec/HEAD/src/testdata/tears_of_steel_12209.tif --------------------------------------------------------------------------------