From fba0675965616f10e5f4df71155830fe959f85fa Mon Sep 17 00:00:00 2001 From: Franklin Mvoi Date: Wed, 22 Jan 2025 13:47:22 +0300 Subject: [PATCH] readme updates fixed the cli args initialization --- src/README.md | 2 +- test_c/first_iter/vid_codec.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/README.md b/src/README.md index f3bd643..5bfa05b 100644 --- a/src/README.md +++ b/src/README.md @@ -1,4 +1,4 @@ -## Codec translated into python +## Codec in python

The codec compresses a video in a encoded.bin file andn then decodes it into teh decoded.rgb24 file.

Here are the key features: diff --git a/test_c/first_iter/vid_codec.c b/test_c/first_iter/vid_codec.c index 6dffb7e..a6f5bc2 100644 --- a/test_c/first_iter/vid_codec.c +++ b/test_c/first_iter/vid_codec.c @@ -8,7 +8,7 @@ * * Return: 0 on success, 1 on failure */ -int main(int argc, char *argv) +int main(int argc, char **argv) { encoder_context ctx; video_frame *frames;