2015-05-13 09:45:11 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
|
|
|
* COPYING file).
|
|
|
|
*
|
|
|
|
* Kvazaar is free software: you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2.1 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* Kvazaar is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* \file
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
#include "cli.h"
|
2015-05-13 09:45:11 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-07-03 12:04:36 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <getopt.h>
|
2015-07-29 16:07:27 +00:00
|
|
|
#include <ctype.h>
|
2015-05-13 09:45:11 +00:00
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
static const char short_options[] = "i:o:d:w:h:n:q:p:r:";
|
|
|
|
static const struct option long_options[] = {
|
|
|
|
{ "input", required_argument, NULL, 'i' },
|
|
|
|
{ "output", required_argument, NULL, 'o' },
|
|
|
|
{ "debug", required_argument, NULL, 'd' },
|
|
|
|
{ "width", required_argument, NULL, 'w' },
|
|
|
|
{ "height", required_argument, NULL, 'h' }, // deprecated
|
|
|
|
{ "frames", required_argument, NULL, 'n' }, // deprecated
|
|
|
|
{ "qp", required_argument, NULL, 'q' },
|
|
|
|
{ "period", required_argument, NULL, 'p' },
|
|
|
|
{ "ref", required_argument, NULL, 'r' },
|
|
|
|
{ "vps-period", required_argument, NULL, 0 },
|
|
|
|
{ "input-res", required_argument, NULL, 0 },
|
|
|
|
{ "input-fps", required_argument, NULL, 0 },
|
2015-11-13 12:20:27 +00:00
|
|
|
{ "deblock", required_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "no-deblock", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "sao", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "no-sao", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "rdoq", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "no-rdoq", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "signhide", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "no-signhide", no_argument, NULL, 0 },
|
2015-12-15 05:57:38 +00:00
|
|
|
{ "smp", no_argument, NULL, 0 },
|
|
|
|
{ "no-smp", no_argument, NULL, 0 },
|
2015-12-01 12:37:58 +00:00
|
|
|
{ "amp", no_argument, NULL, 0 },
|
|
|
|
{ "no-amp", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "rd", required_argument, NULL, 0 },
|
|
|
|
{ "full-intra-search", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "no-full-intra-search", no_argument, NULL, 0 },
|
|
|
|
{ "transform-skip", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "no-transform-skip", no_argument, NULL, 0 },
|
|
|
|
{ "tr-depth-intra", required_argument, NULL, 0 },
|
|
|
|
{ "me", required_argument, NULL, 0 },
|
|
|
|
{ "subme", required_argument, NULL, 0 },
|
2015-08-13 09:53:14 +00:00
|
|
|
{ "source-scan-type", required_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "sar", required_argument, NULL, 0 },
|
|
|
|
{ "overscan", required_argument, NULL, 0 },
|
|
|
|
{ "videoformat", required_argument, NULL, 0 },
|
|
|
|
{ "range", required_argument, NULL, 0 },
|
|
|
|
{ "colorprim", required_argument, NULL, 0 },
|
|
|
|
{ "transfer", required_argument, NULL, 0 },
|
|
|
|
{ "colormatrix", required_argument, NULL, 0 },
|
|
|
|
{ "chromaloc", required_argument, NULL, 0 },
|
|
|
|
{ "aud", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "no-aud", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "cqmfile", required_argument, NULL, 0 },
|
|
|
|
{ "seek", required_argument, NULL, 0 },
|
2016-03-07 13:54:35 +00:00
|
|
|
{ "tiles", required_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "tiles-width-split", required_argument, NULL, 0 },
|
|
|
|
{ "tiles-height-split", required_argument, NULL, 0 },
|
|
|
|
{ "wpp", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "no-wpp", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "owf", required_argument, NULL, 0 },
|
|
|
|
{ "slice-addresses", required_argument, NULL, 0 },
|
|
|
|
{ "threads", required_argument, NULL, 0 },
|
|
|
|
{ "cpuid", required_argument, NULL, 0 },
|
|
|
|
{ "pu-depth-inter", required_argument, NULL, 0 },
|
|
|
|
{ "pu-depth-intra", required_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "info", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "no-info", no_argument, NULL, 0 },
|
|
|
|
{ "gop", required_argument, NULL, 0 },
|
|
|
|
{ "bipred", no_argument, NULL, 0 },
|
2015-11-03 15:30:16 +00:00
|
|
|
{ "no-bipred", no_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{ "bitrate", required_argument, NULL, 0 },
|
2015-11-03 10:04:22 +00:00
|
|
|
{ "preset", required_argument, NULL, 0 },
|
2015-11-05 11:59:30 +00:00
|
|
|
{ "mv-rdo", no_argument, NULL, 0 },
|
|
|
|
{ "no-mv-rdo", no_argument, NULL, 0 },
|
2016-01-21 13:08:34 +00:00
|
|
|
{ "psnr", no_argument, NULL, 0 },
|
|
|
|
{ "no-psnr", no_argument, NULL, 0 },
|
2016-02-04 11:22:17 +00:00
|
|
|
{ "version", no_argument, NULL, 0 },
|
|
|
|
{ "help", no_argument, NULL, 0 },
|
2016-02-18 17:27:14 +00:00
|
|
|
{ "loop-input", no_argument, NULL, 0 },
|
2016-02-24 10:10:51 +00:00
|
|
|
{ "mv-constraint", required_argument, NULL, 0 },
|
2016-03-17 15:00:43 +00:00
|
|
|
{ "hash", required_argument, NULL, 0 },
|
2016-05-10 11:15:41 +00:00
|
|
|
{"cu-split-termination",required_argument, NULL, 0 },
|
2016-06-07 07:55:26 +00:00
|
|
|
{ "crypto", required_argument, NULL, 0 },
|
2016-06-06 12:47:31 +00:00
|
|
|
{ "me-early-termination",required_argument, NULL, 0 },
|
2016-05-26 07:38:45 +00:00
|
|
|
{ "lossless", no_argument, NULL, 0 },
|
|
|
|
{ "no-lossless", no_argument, NULL, 0 },
|
2016-08-10 08:58:15 +00:00
|
|
|
{ "tmvp", no_argument, NULL, 0 },
|
|
|
|
{ "no-tmvp", no_argument, NULL, 0 },
|
2016-08-17 07:07:40 +00:00
|
|
|
{ "rdoq-skip", no_argument, NULL, 0 },
|
2016-08-16 16:03:21 +00:00
|
|
|
{ "input-bitdepth", required_argument, NULL, 0 },
|
|
|
|
{ "input-format", required_argument, NULL, 0 },
|
2015-07-03 12:04:36 +00:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
2015-07-29 16:07:27 +00:00
|
|
|
/**
|
|
|
|
* \brief Try to detect resolution from file name automatically
|
|
|
|
*
|
|
|
|
* \param file_name file name to get dimensions from
|
|
|
|
* \param out_width detected width
|
|
|
|
* \param out_height detected height
|
|
|
|
* \return 1 if the resolution is set, 0 on fail
|
|
|
|
*/
|
|
|
|
static int select_input_res_auto(const char *file_name, int32_t *out_width, int32_t *out_height)
|
|
|
|
{
|
|
|
|
if (!file_name) return 0;
|
|
|
|
|
|
|
|
// Find the last delimiter char ( / or \ ). Hope the other kind is not used in the name.
|
|
|
|
// If delim is not found, set pointer to the beginning.
|
2015-07-31 15:44:36 +00:00
|
|
|
unsigned char* sub_str = (unsigned char*)MAX(strrchr(file_name, '/'), strrchr(file_name, '\\'));
|
|
|
|
if (!sub_str) sub_str = (unsigned char*)file_name;
|
2015-07-29 16:07:27 +00:00
|
|
|
|
|
|
|
int success = 0;
|
|
|
|
// Try if the substring starts with "<int>x<int>" without either of them being 0
|
|
|
|
do {
|
2015-07-31 15:44:36 +00:00
|
|
|
success = (sscanf((char*)sub_str, "%dx%d%*s", out_width, out_height) == 2);
|
2015-07-29 16:07:27 +00:00
|
|
|
success &= (*out_width > 0 && *out_height > 0);
|
|
|
|
// Move to the next char until a digit is found or the string ends
|
|
|
|
do{
|
|
|
|
++sub_str;
|
|
|
|
} while (*sub_str != 0 && !isdigit(*sub_str));
|
|
|
|
// Continue until "<int>x<int>" is found or the string ends
|
|
|
|
} while (*sub_str != 0 && !success);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
/**
|
|
|
|
* \brief Parse command line arguments.
|
|
|
|
* \param argc Number of arguments
|
|
|
|
* \param argv Argument list
|
|
|
|
* \return Pointer to the parsed options, or NULL on failure.
|
|
|
|
*/
|
|
|
|
cmdline_opts_t* cmdline_opts_parse(const kvz_api *const api, int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ok = 1;
|
|
|
|
cmdline_opts_t *opts = calloc(1, sizeof(cmdline_opts_t));
|
|
|
|
if (!opts) {
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
opts->config = api->config_alloc();
|
|
|
|
if (!opts->config || !api->config_init(opts->config)) {
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse command line options
|
|
|
|
for (optind = 0;;) {
|
|
|
|
int long_options_index = -1;
|
|
|
|
|
|
|
|
int c = getopt_long(argc, argv, short_options, long_options, &long_options_index);
|
|
|
|
if (c == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (long_options_index < 0) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; long_options[i].name; i++)
|
|
|
|
if (long_options[i].val == c) {
|
|
|
|
long_options_index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (long_options_index < 0) {
|
|
|
|
// getopt_long already printed an error message
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* name = long_options[long_options_index].name;
|
|
|
|
if (!strcmp(name, "input")) {
|
|
|
|
if (opts->input) {
|
|
|
|
fprintf(stderr, "Input error: More than one input file given.\n");
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
opts->input = strdup(optarg);
|
|
|
|
} else if (!strcmp(name, "output")) {
|
|
|
|
if (opts->output) {
|
|
|
|
fprintf(stderr, "Input error: More than one output file given.\n");
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
opts->output = strdup(optarg);
|
|
|
|
} else if (!strcmp(name, "debug")) {
|
|
|
|
if (opts->debug) {
|
|
|
|
fprintf(stderr, "Input error: More than one debug output file given.\n");
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
opts->debug = strdup(optarg);
|
|
|
|
} else if (!strcmp(name, "seek")) {
|
|
|
|
opts->seek = atoi(optarg);
|
|
|
|
} else if (!strcmp(name, "frames")) {
|
|
|
|
opts->frames = atoi(optarg);
|
2016-02-04 11:22:17 +00:00
|
|
|
} else if (!strcmp(name, "version")) {
|
|
|
|
opts->version = true;
|
|
|
|
goto done;
|
|
|
|
} else if (!strcmp(name, "help")) {
|
|
|
|
opts->help = true;
|
|
|
|
goto done;
|
2016-02-18 17:27:14 +00:00
|
|
|
} else if (!strcmp(name, "loop-input")) {
|
|
|
|
opts->loop_input = true;
|
2015-11-09 11:57:28 +00:00
|
|
|
} else if (!api->config_parse(opts->config, name, optarg)) {
|
2015-07-03 12:04:36 +00:00
|
|
|
fprintf(stderr, "invalid argument: %s=%s\n", name, optarg);
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-13 11:55:23 +00:00
|
|
|
// Check for extra arguments.
|
|
|
|
if (argc - optind > 0) {
|
|
|
|
fprintf(stderr, "Input error: Extra argument found: \"%s\"\n", argv[optind]);
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
// Check that the required files were defined
|
|
|
|
if (opts->input == NULL || opts->output == NULL) {
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-10-15 12:23:40 +00:00
|
|
|
if (opts->config->vps_period < 0) {
|
|
|
|
// Disabling parameter sets is only possible when using Kvazaar as
|
|
|
|
// a library.
|
|
|
|
fprintf(stderr, "Input error: vps_period must be non-negative\n");
|
|
|
|
ok = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-07-29 16:07:27 +00:00
|
|
|
// Set resolution automatically if necessary
|
2016-06-20 05:16:58 +00:00
|
|
|
if (opts->config->width == 0 && opts->config->height == 0) {
|
2015-07-29 16:07:27 +00:00
|
|
|
ok = select_input_res_auto(opts->input, &opts->config->width, &opts->config->height);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
done:
|
|
|
|
if (!ok) {
|
|
|
|
cmdline_opts_free(api, opts);
|
|
|
|
opts = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Deallocate a cmdline_opts_t structure.
|
|
|
|
*/
|
|
|
|
void cmdline_opts_free(const kvz_api *const api, cmdline_opts_t *opts)
|
|
|
|
{
|
|
|
|
if (opts) {
|
|
|
|
FREE_POINTER(opts->input);
|
|
|
|
FREE_POINTER(opts->output);
|
|
|
|
FREE_POINTER(opts->debug);
|
|
|
|
api->config_destroy(opts->config);
|
|
|
|
opts->config = NULL;
|
|
|
|
}
|
|
|
|
FREE_POINTER(opts);
|
|
|
|
}
|
2015-05-14 15:33:57 +00:00
|
|
|
|
2015-05-13 09:45:11 +00:00
|
|
|
|
2016-02-04 11:22:17 +00:00
|
|
|
void print_usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stdout,
|
|
|
|
"Kvazaar usage: -i and --input-res to set input, -o to set output\n"
|
|
|
|
" --help for more information\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-13 09:45:11 +00:00
|
|
|
void print_version(void)
|
|
|
|
{
|
2016-02-04 11:22:17 +00:00
|
|
|
fprintf(stdout,
|
|
|
|
"Kvazaar " VERSION_STRING "\n"
|
|
|
|
"Kvazaar license: LGPL version 2\n");
|
2015-05-13 09:45:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void print_help(void)
|
|
|
|
{
|
2016-02-04 11:22:17 +00:00
|
|
|
fprintf(stdout,
|
2015-05-13 09:45:11 +00:00
|
|
|
"Usage:\n"
|
|
|
|
"kvazaar -i <input> --input-res <width>x<height> -o <output>\n"
|
|
|
|
"\n"
|
|
|
|
"Optional parameters:\n"
|
2016-02-05 12:53:25 +00:00
|
|
|
" --help : Print this help message and exit\n"
|
|
|
|
" --version : Print version information and exit\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" -n, --frames <integer> : Number of frames to code [all]\n"
|
|
|
|
" --seek <integer> : First frame to code [0]\n"
|
2015-07-29 16:07:27 +00:00
|
|
|
" --input-res <int>x<int> : Input resolution (width x height) or\n"
|
|
|
|
" auto : try to detect from file name [auto]\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --input-fps <num>/<denom> : Framerate of the input video [25.0]\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" -q, --qp <integer> : Quantization Parameter [32]\n"
|
|
|
|
" -p, --period <integer> : Period of intra pictures [0]\n"
|
|
|
|
" 0: only first picture is intra\n"
|
|
|
|
" 1: all pictures are intra\n"
|
|
|
|
" 2-N: every Nth picture is intra\n"
|
|
|
|
" --vps-period <integer> : Specify how often the video parameter set is\n"
|
|
|
|
" re-sent. [0]\n"
|
|
|
|
" 0: only send VPS with the first frame\n"
|
|
|
|
" 1: send VPS with every intra frame\n"
|
|
|
|
" N: send VPS with every Nth intra frame\n"
|
|
|
|
" -r, --ref <integer> : Reference frames, range 1..15 [3]\n"
|
|
|
|
" --no-deblock : Disable deblocking filter\n"
|
|
|
|
" --deblock <beta:tc> : Deblocking filter parameters\n"
|
|
|
|
" beta and tc range is -6..6 [0:0]\n"
|
|
|
|
" --no-sao : Disable sample adaptive offset\n"
|
|
|
|
" --no-rdoq : Disable RDO quantization\n"
|
|
|
|
" --no-signhide : Disable sign hiding in quantization\n"
|
2015-12-15 05:57:38 +00:00
|
|
|
" --smp : Enable Symmetric Motion Partition\n"
|
2015-12-01 12:37:58 +00:00
|
|
|
" --amp : Enable Asymmetric Motion Partition\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" --rd <integer> : Rate-Distortion Optimization level [1]\n"
|
|
|
|
" 0: no RDO\n"
|
|
|
|
" 1: estimated RDO\n"
|
|
|
|
" 2: full RDO\n"
|
2015-11-05 11:59:30 +00:00
|
|
|
" --mv-rdo : Enable Rate-Distortion Optimized motion vector costs\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" --full-intra-search : Try all intra modes.\n"
|
|
|
|
" --no-transform-skip : Disable transform skip\n"
|
|
|
|
" --aud : Use access unit delimiters\n"
|
|
|
|
" --cqmfile <string> : Custom Quantization Matrices from a file\n"
|
|
|
|
" --debug <string> : Output encoders reconstruction.\n"
|
|
|
|
" --cpuid <integer> : Disable runtime cpu optimizations with value 0.\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --me <string> : Set integer motion estimation algorithm [\"hexbs\"]\n"
|
|
|
|
" \"hexbs\": Hexagon Based Search (faster)\n"
|
|
|
|
" \"tz\": Test Zone Search (better quality)\n"
|
|
|
|
" \"full\": Full Search (super slow)\n"
|
2016-07-12 12:39:01 +00:00
|
|
|
" --subme <integer> : Set fractional pixel motion estimation level [4].\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" 0: only integer motion estimation\n"
|
2016-07-12 12:39:01 +00:00
|
|
|
" 1: + 1/2-pixel horizontal and vertical\n"
|
|
|
|
" 2: + 1/2-pixel diagonal\n"
|
|
|
|
" 3: + 1/4-pixel horizontal and vertical\n"
|
|
|
|
" 4: + 1/4-pixel diagonal\n"
|
2015-08-13 09:53:14 +00:00
|
|
|
" --source-scan-type <string> : Set source scan type [\"progressive\"].\n"
|
|
|
|
" \"progressive\": progressive scan\n"
|
|
|
|
" \"tff\": top field first\n"
|
|
|
|
" \"bff\": bottom field first\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" --pu-depth-inter <int>-<int> : Range for sizes of inter prediction units to try.\n"
|
|
|
|
" 0: 64x64, 1: 32x32, 2: 16x16, 3: 8x8\n"
|
|
|
|
" --pu-depth-intra <int>-<int> : Range for sizes of intra prediction units to try.\n"
|
|
|
|
" 0: 64x64, 1: 32x32, 2: 16x16, 3: 8x8, 4: 4x4\n"
|
|
|
|
" --no-info : Don't add information about the encoder to settings.\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --gop <string> : Definition of GOP structure [0]\n"
|
|
|
|
" \"0\": disabled\n"
|
|
|
|
" \"8\": B-frame pyramid of length 8\n"
|
|
|
|
" \"lp-<string>\": lp-gop definition (e.g. lp-g8d4r3t2)\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" --bipred : Enable bi-prediction search\n"
|
|
|
|
" --bitrate <integer> : Target bitrate. [0]\n"
|
|
|
|
" 0: disable rate-control\n"
|
|
|
|
" N: target N bits per second\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --preset <string> : Use preset. This will override previous options.\n"
|
2016-08-03 04:27:02 +00:00
|
|
|
" ultrafast, superfast, veryfast, faster,\n"
|
2015-11-03 10:04:22 +00:00
|
|
|
" fast, medium, slow, slower, veryslow, placebo\n"
|
2016-01-21 13:08:34 +00:00
|
|
|
" --no-psnr : Don't calculate PSNR for frames\n"
|
2016-02-18 17:27:14 +00:00
|
|
|
" --loop-input : Re-read input file forever\n"
|
2016-02-24 10:10:51 +00:00
|
|
|
" --mv-constraint : Constrain movement vectors\n"
|
|
|
|
" \"none\": no constraint\n"
|
|
|
|
" \"frametile\": constrain within the tile\n"
|
2016-02-29 16:39:21 +00:00
|
|
|
" \"frametilemargin\": constrain even more\n"
|
2016-03-17 15:00:43 +00:00
|
|
|
" --hash : Specify which decoded picture hash to use [checksum]\n"
|
2016-05-11 12:03:43 +00:00
|
|
|
" \"none\": 0 bytes\n"
|
|
|
|
" \"checksum\": 18 bytes\n"
|
|
|
|
" \"md5\": 56 bytes\n"
|
2016-05-10 11:15:41 +00:00
|
|
|
" --cu-split-termination : Specify the cu split termination behaviour\n"
|
|
|
|
" \"zero\": Terminate when splitting gives little\n"
|
|
|
|
" improvement.\n"
|
|
|
|
" \"off\": Don't terminate splitting early\n"
|
2016-08-03 04:27:02 +00:00
|
|
|
" --me-early-termination : Specify the me early termination behaviour\n"
|
2016-06-06 12:47:31 +00:00
|
|
|
" \"off\": Early termination is off\n"
|
|
|
|
" \"on\": Early termination is on\n"
|
|
|
|
" \"sensitive\": Sensitive early termination is on\n"
|
2016-05-26 07:38:45 +00:00
|
|
|
" --lossless : Use lossless coding\n"
|
2016-08-10 08:58:15 +00:00
|
|
|
" --no-tmvp : Disable Temporal Motion Vector Prediction\n"
|
2016-09-09 07:26:07 +00:00
|
|
|
" --rdoq-skip : Skips RDOQ for 4x4 blocks\n"
|
2016-08-16 16:03:21 +00:00
|
|
|
" --input-format : P420 or P400\n"
|
|
|
|
" --input-bitdepth : 8-16\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
"\n"
|
|
|
|
" Video Usability Information:\n"
|
|
|
|
" --sar <width:height> : Specify Sample Aspect Ratio\n"
|
|
|
|
" --overscan <string> : Specify crop overscan setting [\"undef\"]\n"
|
|
|
|
" - undef, show, crop\n"
|
|
|
|
" --videoformat <string> : Specify video format [\"undef\"]\n"
|
|
|
|
" - component, pal, ntsc, secam, mac, undef\n"
|
|
|
|
" --range <string> : Specify color range [\"tv\"]\n"
|
|
|
|
" - tv, pc\n"
|
|
|
|
" --colorprim <string> : Specify color primaries [\"undef\"]\n"
|
|
|
|
" - undef, bt709, bt470m, bt470bg,\n"
|
|
|
|
" smpte170m, smpte240m, film, bt2020\n"
|
|
|
|
" --transfer <string> : Specify transfer characteristics [\"undef\"]\n"
|
|
|
|
" - undef, bt709, bt470m, bt470bg,\n"
|
|
|
|
" smpte170m, smpte240m, linear, log100,\n"
|
|
|
|
" log316, iec61966-2-4, bt1361e,\n"
|
|
|
|
" iec61966-2-1, bt2020-10, bt2020-12\n"
|
|
|
|
" --colormatrix <string> : Specify color matrix setting [\"undef\"]\n"
|
|
|
|
" - undef, bt709, fcc, bt470bg, smpte170m,\n"
|
|
|
|
" smpte240m, GBR, YCgCo, bt2020nc, bt2020c\n"
|
|
|
|
" --chromaloc <integer> : Specify chroma sample location (0 to 5) [0]\n"
|
|
|
|
"\n"
|
|
|
|
" Parallel processing:\n"
|
|
|
|
" --threads <integer> : Maximum number of threads to use.\n"
|
|
|
|
" Disable threads if set to 0.\n"
|
|
|
|
"\n"
|
|
|
|
" Tiles:\n"
|
2016-08-03 04:27:02 +00:00
|
|
|
" --tiles <int>x<int> : Split picture into width x height uniform tiles.\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --tiles-width-split <string>|u<int> :\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" Specifies a comma separated list of pixel\n"
|
|
|
|
" positions of tiles columns separation coordinates.\n"
|
|
|
|
" Can also be u followed by and a single int n,\n"
|
|
|
|
" in which case it produces columns of uniform width.\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --tiles-height-split <string>|u<int> :\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" Specifies a comma separated list of pixel\n"
|
|
|
|
" positions of tiles rows separation coordinates.\n"
|
|
|
|
" Can also be u followed by and a single int n,\n"
|
|
|
|
" in which case it produces rows of uniform height.\n"
|
|
|
|
"\n"
|
|
|
|
" Wpp:\n"
|
|
|
|
" --wpp : Enable wavefront parallel processing\n"
|
|
|
|
" --owf <integer>|auto : Number of parallel frames to process. 0 to disable.\n"
|
|
|
|
"\n"
|
2016-09-10 17:57:44 +00:00
|
|
|
/*" Slices:\n"
|
2016-02-05 14:16:18 +00:00
|
|
|
" --slice-addresses <string>|u<int> :\n"
|
2015-05-13 09:45:11 +00:00
|
|
|
" Specifies a comma separated list of LCU\n"
|
|
|
|
" positions in tile scan order of tile separations.\n"
|
|
|
|
" Can also be u followed by and a single int n,\n"
|
|
|
|
" in which case it produces uniform slice length.\n"
|
2016-09-10 17:57:44 +00:00
|
|
|
"\n"*/
|
2015-05-13 09:45:11 +00:00
|
|
|
" Deprecated parameters: (might be removed at some point)\n"
|
|
|
|
" Use --input-res:\n"
|
|
|
|
" -w, --width : Width of input in pixels\n"
|
|
|
|
" -h, --height : Height of input in pixels\n");
|
|
|
|
}
|
2015-05-14 15:33:57 +00:00
|
|
|
|
|
|
|
|
2015-09-09 07:28:45 +00:00
|
|
|
void print_frame_info(const kvz_frame_info *const info,
|
|
|
|
const double frame_psnr[3],
|
|
|
|
const uint32_t bytes)
|
2015-05-14 15:33:57 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "POC %4d QP %2d (%c-frame) %10d bits PSNR: %2.4f %2.4f %2.4f",
|
2015-09-09 07:28:45 +00:00
|
|
|
info->poc,
|
|
|
|
info->qp,
|
|
|
|
"BPI"[info->slice_type % 3],
|
|
|
|
bytes << 3,
|
2015-05-14 15:33:57 +00:00
|
|
|
frame_psnr[0], frame_psnr[1], frame_psnr[2]);
|
|
|
|
|
2015-09-09 07:28:45 +00:00
|
|
|
if (info->slice_type != KVZ_SLICE_I) {
|
2015-09-09 07:01:02 +00:00
|
|
|
// Print reference picture lists
|
2015-05-14 15:33:57 +00:00
|
|
|
fprintf(stderr, " [L0 ");
|
2015-09-09 07:28:45 +00:00
|
|
|
for (int j = info->ref_list_len[0] - 1; j >= 0; j--) {
|
|
|
|
fprintf(stderr, "%d ", info->ref_list[0][j]);
|
2015-05-14 15:33:57 +00:00
|
|
|
}
|
|
|
|
fprintf(stderr, "] [L1 ");
|
2015-09-09 07:28:45 +00:00
|
|
|
for (int j = 0; j < info->ref_list_len[1]; j++) {
|
|
|
|
fprintf(stderr, "%d ", info->ref_list[1][j]);
|
2015-05-14 15:33:57 +00:00
|
|
|
}
|
|
|
|
fprintf(stderr, "]");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|