Skip to content

Commit

Permalink
Increment version number and update usage information.
Browse files Browse the repository at this point in the history
  • Loading branch information
ari-koivula committed Mar 12, 2014
1 parent 34d4e74 commit 3191742
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ meant to be user configurable later.
--no-rdoq : Disable RDO quantiztion
--aud : Use access unit delimiters
--cqmfile <string> : Custom Quantization Matrices from a file
--debug <string> : Output encoders reconstruction.

Video Usability Information:
--sar <width:height> : Specify Sample Aspect Ratio
Expand Down
1 change: 1 addition & 0 deletions src/encmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ int main(int argc, char *argv[])
" --no-rdoq : Disable RDO quantiztion\n"
" --aud : Use access unit delimiters\n"
" --cqmfile <string> : Custom Quantization Matrices from a file\n"
" --debug <string> : Output encoders reconstruction.\n"
"\n"
" Video Usability Information:\n"
" --sar <width:height> : Specify Sample Aspect Ratio\n"
Expand Down
2 changes: 1 addition & 1 deletion src/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3191742

Please sign in to comment.