From 2b63ebd6287e0ef5bed17630df6f136f5345a8e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Soul=20Reaper=20=E3=81=86=E3=81=A1=E3=81=AF=E3=82=A4?= =?UTF-8?q?=E3=82=BF=E3=83=81?= <59177122+soulr344@users.noreply.github.com> Date: Mon, 7 Jun 2021 16:37:57 +0545 Subject: [PATCH] Create README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f897f15 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# OMCDecoder +Samsung OMC Decoder implementation in C++ from CSC apk. + +# Usage +``` +cscdecoder [options] input.xml output.xml + +Options: + -d/--decode Decodes input.xml and saves to output.xml (default) + -e/--encode Encodes input.xml and saves to output.xml + -i/--in-place Save output to input.xml (output.xml is ignored) +``` + +# How to Compile +```clang++ -lz -I./include decoder.cpp -o cscdecoder``` + +# Credits + +### [@mapbox](https://github.com/mapbox/gzip-hpp)