diff --git a/README.md b/README.md index 058893cc5..ab4e449dc 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ meant to be user configurable later. --no-rdoq : Disable RDO quantiztion --aud : Use access unit delimiters --cqmfile : Custom Quantization Matrices from a file + --debug : Output encoders reconstruction. Video Usability Information: --sar : Specify Sample Aspect Ratio diff --git a/src/encmain.c b/src/encmain.c index 9740cbb7b..1d4c9b7d8 100644 --- a/src/encmain.c +++ b/src/encmain.c @@ -105,6 +105,7 @@ int main(int argc, char *argv[]) " --no-rdoq : Disable RDO quantiztion\n" " --aud : Use access unit delimiters\n" " --cqmfile : Custom Quantization Matrices from a file\n" + " --debug : Output encoders reconstruction.\n" "\n" " Video Usability Information:\n" " --sar : Specify Sample Aspect Ratio\n" diff --git a/src/global.h b/src/global.h index a9a47d585..07e23958a 100644 --- a/src/global.h +++ b/src/global.h @@ -108,7 +108,7 @@ typedef int16_t coefficient; //#define SIGN3(x) ((x) > 0) ? +1 : ((x) == 0 ? 0 : -1) #define SIGN3(x) (((x) > 0) - ((x) < 0)) -#define VERSION_STRING "0.2.4" +#define VERSION_STRING "0.3.0" //#define VERBOSE 1