[x264-devel] commit: Minor fixes/cosmeticcs in commandling parsing (Anton Mitrofanov )
git at videolan.org
git at videolan.org
Sat Sep 4 01:24:49 CEST 2010
x264 | branch: master | Anton Mitrofanov <BugMaster at narod.ru> | Fri Sep 3 13:33:44 2010 -0700| [7bb60b1503acebcee8fae9c6d7ab6e3f55095150] | committer: Jason Garrett-Glaser
Minor fixes/cosmeticcs in commandling parsing
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=7bb60b1503acebcee8fae9c6d7ab6e3f55095150
---
x264.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/x264.c b/x264.c
index 7d98518..c1f98c0 100644
--- a/x264.c
+++ b/x264.c
@@ -806,7 +806,7 @@ static struct option long_options[] =
{ "mixed-refs", no_argument, NULL, 0 },
{ "no-mixed-refs", no_argument, NULL, 0 },
{ "no-chroma-me", no_argument, NULL, 0 },
- { "8x8dct", no_argument, NULL, 0 },
+ { "8x8dct", no_argument, NULL, '8' },
{ "no-8x8dct", no_argument, NULL, 0 },
{ "trellis", required_argument, NULL, 't' },
{ "fast-pskip", no_argument, NULL, 0 },
@@ -814,8 +814,8 @@ static struct option long_options[] =
{ "no-dct-decimate", no_argument, NULL, 0 },
{ "aq-strength", required_argument, NULL, 0 },
{ "aq-mode", required_argument, NULL, 0 },
- { "deadzone-inter", required_argument, NULL, '0' },
- { "deadzone-intra", required_argument, NULL, '0' },
+ { "deadzone-inter", required_argument, NULL, 0 },
+ { "deadzone-intra", required_argument, NULL, 0 },
{ "level", required_argument, NULL, 0 },
{ "ratetol", required_argument, NULL, 0 },
{ "vbv-maxrate", required_argument, NULL, 0 },
More information about the x264-devel
mailing list