2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2016-09-02 00:32:49 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2016-09-02 00:32:49 +03:00
|
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "./aomenc.h"
|
|
|
|
#include "./aom_config.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-11-15 00:37:42 +04:00
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
2013-11-08 09:28:45 +04:00
|
|
|
#include <math.h>
|
2013-11-15 00:37:42 +04:00
|
|
|
#include <stdarg.h>
|
2010-05-18 19:58:33 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-11-15 00:37:42 +04:00
|
|
|
|
2014-08-16 08:00:31 +04:00
|
|
|
#if CONFIG_LIBYUV
|
|
|
|
#include "third_party/libyuv/include/libyuv/scale.h"
|
|
|
|
#endif
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "aom/aom_encoder.h"
|
2017-05-17 01:01:54 +03:00
|
|
|
#if CONFIG_AV1_DECODER
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "aom/aom_decoder.h"
|
2012-12-23 19:20:10 +04:00
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2013-11-15 00:37:42 +04:00
|
|
|
#include "./args.h"
|
|
|
|
#include "./ivfenc.h"
|
2014-02-11 02:55:25 +04:00
|
|
|
#include "./tools_common.h"
|
2017-04-21 03:56:27 +03:00
|
|
|
#include "examples/encoder_util.h"
|
2013-11-05 22:02:18 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
|
|
|
#include "aom/aomcx.h"
|
2012-11-07 00:02:42 +04:00
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_DECODER
|
|
|
|
#include "aom/aomdx.h"
|
2012-11-07 00:02:42 +04:00
|
|
|
#endif
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "./aomstats.h"
|
2016-02-26 04:23:17 +03:00
|
|
|
#include "./rate_hist.h"
|
2013-11-26 00:05:19 +04:00
|
|
|
#include "./warnings.h"
|
2016-02-26 04:23:17 +03:00
|
|
|
#include "aom/aom_integer.h"
|
2017-05-17 04:01:25 +03:00
|
|
|
#include "aom_dsp/aom_dsp_common.h"
|
2016-02-26 04:23:17 +03:00
|
|
|
#include "aom_ports/aom_timer.h"
|
|
|
|
#include "aom_ports/mem_ops.h"
|
2014-05-11 04:44:12 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2013-11-08 09:28:45 +04:00
|
|
|
#include "./webmenc.h"
|
2014-05-11 04:44:12 +04:00
|
|
|
#endif
|
2013-11-08 09:28:45 +04:00
|
|
|
#include "./y4minput.h"
|
2013-11-05 22:02:18 +04:00
|
|
|
|
2012-06-20 08:05:36 +04:00
|
|
|
/* Swallow warnings about unused results of fread/fwrite */
|
2016-08-09 05:03:30 +03:00
|
|
|
static size_t wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *stream) {
|
2012-11-07 00:02:42 +04:00
|
|
|
return fread(ptr, size, nmemb, stream);
|
2012-06-20 08:05:36 +04:00
|
|
|
}
|
|
|
|
#define fread wrap_fread
|
|
|
|
|
|
|
|
static size_t wrap_fwrite(const void *ptr, size_t size, size_t nmemb,
|
2012-11-07 00:02:42 +04:00
|
|
|
FILE *stream) {
|
|
|
|
return fwrite(ptr, size, nmemb, stream);
|
2012-06-20 08:05:36 +04:00
|
|
|
}
|
|
|
|
#define fwrite wrap_fwrite
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
static const char *exec_name;
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static void warn_or_exit_on_errorv(aom_codec_ctx_t *ctx, int fatal,
|
2013-02-16 04:31:02 +04:00
|
|
|
const char *s, va_list ap) {
|
2012-07-14 02:21:29 +04:00
|
|
|
if (ctx->err) {
|
2016-08-31 00:01:10 +03:00
|
|
|
const char *detail = aom_codec_error_detail(ctx);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
vfprintf(stderr, s, ap);
|
2016-08-31 00:01:10 +03:00
|
|
|
fprintf(stderr, ": %s\n", aom_codec_error(ctx));
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (detail) fprintf(stderr, " %s\n", detail);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (fatal) exit(EXIT_FAILURE);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static void ctx_exit_on_error(aom_codec_ctx_t *ctx, const char *s, ...) {
|
2013-02-16 04:31:02 +04:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, s);
|
|
|
|
warn_or_exit_on_errorv(ctx, 1, s, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static void warn_or_exit_on_error(aom_codec_ctx_t *ctx, int fatal,
|
2013-02-16 04:31:02 +04:00
|
|
|
const char *s, ...) {
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, s);
|
|
|
|
warn_or_exit_on_errorv(ctx, fatal, s, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static int read_frame(struct AvxInputContext *input_ctx, aom_image_t *img) {
|
2013-11-15 00:37:42 +04:00
|
|
|
FILE *f = input_ctx->file;
|
|
|
|
y4m_input *y4m = &input_ctx->y4m;
|
2012-07-14 02:21:29 +04:00
|
|
|
int shortread = 0;
|
|
|
|
|
2013-11-15 00:37:42 +04:00
|
|
|
if (input_ctx->file_type == FILE_TYPE_Y4M) {
|
2016-08-09 05:03:30 +03:00
|
|
|
if (y4m_input_fetch_frame(y4m, f, img) < 1) return 0;
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
2013-11-15 00:37:42 +04:00
|
|
|
shortread = read_yuv_frame(input_ctx, img);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return !shortread;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2015-05-09 20:42:58 +03:00
|
|
|
static int file_is_y4m(const char detect[4]) {
|
2012-07-14 02:21:29 +04:00
|
|
|
if (memcmp(detect, "YUV4", 4) == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2010-05-27 02:27:51 +04:00
|
|
|
}
|
|
|
|
|
2015-05-09 20:42:58 +03:00
|
|
|
static int fourcc_is_ivf(const char detect[4]) {
|
2014-01-07 04:29:09 +04:00
|
|
|
if (memcmp(detect, "DKIF", 4) == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2010-10-20 20:05:48 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t debugmode =
|
|
|
|
ARG_DEF("D", "debug", 0, "Debug mode (makes output deterministic)");
|
|
|
|
static const arg_def_t outputfile =
|
|
|
|
ARG_DEF("o", "output", 1, "Output filename");
|
|
|
|
static const arg_def_t use_yv12 =
|
|
|
|
ARG_DEF(NULL, "yv12", 0, "Input file is YV12 ");
|
|
|
|
static const arg_def_t use_i420 =
|
|
|
|
ARG_DEF(NULL, "i420", 0, "Input file is I420 (default)");
|
|
|
|
static const arg_def_t use_i422 =
|
|
|
|
ARG_DEF(NULL, "i422", 0, "Input file is I422");
|
|
|
|
static const arg_def_t use_i444 =
|
|
|
|
ARG_DEF(NULL, "i444", 0, "Input file is I444");
|
|
|
|
static const arg_def_t use_i440 =
|
|
|
|
ARG_DEF(NULL, "i440", 0, "Input file is I440");
|
|
|
|
static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use");
|
|
|
|
static const arg_def_t passes =
|
|
|
|
ARG_DEF("p", "passes", 1, "Number of passes (1/2)");
|
|
|
|
static const arg_def_t pass_arg =
|
|
|
|
ARG_DEF(NULL, "pass", 1, "Pass to execute (1/2)");
|
|
|
|
static const arg_def_t fpf_name =
|
|
|
|
ARG_DEF(NULL, "fpf", 1, "First pass statistics file name");
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t fpmbf_name =
|
|
|
|
ARG_DEF(NULL, "fpmbf", 1, "First pass block statistics file name");
|
2014-07-14 20:13:38 +04:00
|
|
|
#endif
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t limit =
|
|
|
|
ARG_DEF(NULL, "limit", 1, "Stop encoding after n input frames");
|
|
|
|
static const arg_def_t skip =
|
|
|
|
ARG_DEF(NULL, "skip", 1, "Skip the first n input frames");
|
|
|
|
static const arg_def_t deadline =
|
|
|
|
ARG_DEF("d", "deadline", 1, "Deadline per frame (usec)");
|
|
|
|
static const arg_def_t good_dl =
|
|
|
|
ARG_DEF(NULL, "good", 0, "Use Good Quality Deadline");
|
|
|
|
static const arg_def_t quietarg =
|
|
|
|
ARG_DEF("q", "quiet", 0, "Do not print encode progress");
|
|
|
|
static const arg_def_t verbosearg =
|
|
|
|
ARG_DEF("v", "verbose", 0, "Show encoder parameters");
|
|
|
|
static const arg_def_t psnrarg =
|
|
|
|
ARG_DEF(NULL, "psnr", 0, "Show PSNR in status line");
|
2013-11-22 04:46:40 +04:00
|
|
|
|
2013-02-16 04:31:02 +04:00
|
|
|
static const struct arg_enum_list test_decode_enum[] = {
|
2016-08-09 05:03:30 +03:00
|
|
|
{ "off", TEST_DECODE_OFF },
|
|
|
|
{ "fatal", TEST_DECODE_FATAL },
|
|
|
|
{ "warn", TEST_DECODE_WARN },
|
|
|
|
{ NULL, 0 }
|
2013-02-16 04:31:02 +04:00
|
|
|
};
|
2014-10-14 01:27:53 +04:00
|
|
|
static const arg_def_t recontest = ARG_DEF_ENUM(
|
|
|
|
NULL, "test-decode", 1, "Test encode/decode mismatch", test_decode_enum);
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t framerate =
|
|
|
|
ARG_DEF(NULL, "fps", 1, "Stream frame rate (rate/scale)");
|
|
|
|
static const arg_def_t use_webm =
|
|
|
|
ARG_DEF(NULL, "webm", 0, "Output WebM (default when WebM IO is enabled)");
|
|
|
|
static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0, "Output IVF");
|
|
|
|
static const arg_def_t out_part =
|
|
|
|
ARG_DEF("P", "output-partitions", 0,
|
|
|
|
"Makes encoder output partitions. Requires IVF output!");
|
|
|
|
static const arg_def_t q_hist_n =
|
|
|
|
ARG_DEF(NULL, "q-hist", 1, "Show quantizer histogram (n-buckets)");
|
|
|
|
static const arg_def_t rate_hist_n =
|
|
|
|
ARG_DEF(NULL, "rate-hist", 1, "Show rate histogram (n-buckets)");
|
|
|
|
static const arg_def_t disable_warnings =
|
|
|
|
ARG_DEF(NULL, "disable-warnings", 0,
|
|
|
|
"Disable warnings about potentially incorrect encode settings.");
|
|
|
|
static const arg_def_t disable_warning_prompt =
|
|
|
|
ARG_DEF("y", "disable-warning-prompt", 0,
|
|
|
|
"Display warnings, but do not prompt user to continue.");
|
2014-02-21 22:52:09 +04:00
|
|
|
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2014-08-26 23:35:15 +04:00
|
|
|
static const arg_def_t test16bitinternalarg = ARG_DEF(
|
|
|
|
NULL, "test-16bit-internal", 0, "Force use of 16 bit internal buffer");
|
2016-07-13 01:03:18 +03:00
|
|
|
|
|
|
|
static const struct arg_enum_list bitdepth_enum[] = {
|
|
|
|
{ "8", AOM_BITS_8 }, { "10", AOM_BITS_10 }, { "12", AOM_BITS_12 }, { NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const arg_def_t bitdeptharg = ARG_DEF_ENUM(
|
|
|
|
"b", "bit-depth", 1,
|
|
|
|
"Bit depth for codec (8 for version <=1, 10 or 12 for version 2)",
|
|
|
|
bitdepth_enum);
|
|
|
|
static const arg_def_t inbitdeptharg =
|
|
|
|
ARG_DEF(NULL, "input-bit-depth", 1, "Bit depth of input");
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2013-11-21 05:18:28 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t *main_args[] = { &debugmode,
|
|
|
|
&outputfile,
|
|
|
|
&codecarg,
|
|
|
|
&passes,
|
|
|
|
&pass_arg,
|
|
|
|
&fpf_name,
|
|
|
|
&limit,
|
|
|
|
&skip,
|
|
|
|
&deadline,
|
|
|
|
&good_dl,
|
|
|
|
&quietarg,
|
|
|
|
&verbosearg,
|
|
|
|
&psnrarg,
|
|
|
|
&use_webm,
|
|
|
|
&use_ivf,
|
|
|
|
&out_part,
|
|
|
|
&q_hist_n,
|
|
|
|
&rate_hist_n,
|
|
|
|
&disable_warnings,
|
|
|
|
&disable_warning_prompt,
|
|
|
|
&recontest,
|
|
|
|
NULL };
|
|
|
|
|
|
|
|
static const arg_def_t usage =
|
|
|
|
ARG_DEF("u", "usage", 1, "Usage profile number to use");
|
|
|
|
static const arg_def_t threads =
|
|
|
|
ARG_DEF("t", "threads", 1, "Max number of threads to use");
|
|
|
|
static const arg_def_t profile =
|
|
|
|
ARG_DEF(NULL, "profile", 1, "Bitstream profile number to use");
|
2014-10-14 01:27:53 +04:00
|
|
|
static const arg_def_t width = ARG_DEF("w", "width", 1, "Frame width");
|
|
|
|
static const arg_def_t height = ARG_DEF("h", "height", 1, "Frame height");
|
2014-05-11 04:44:12 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2011-04-21 11:50:07 +04:00
|
|
|
static const struct arg_enum_list stereo_mode_enum[] = {
|
2016-08-09 05:03:30 +03:00
|
|
|
{ "mono", STEREO_FORMAT_MONO },
|
|
|
|
{ "left-right", STEREO_FORMAT_LEFT_RIGHT },
|
|
|
|
{ "bottom-top", STEREO_FORMAT_BOTTOM_TOP },
|
|
|
|
{ "top-bottom", STEREO_FORMAT_TOP_BOTTOM },
|
|
|
|
{ "right-left", STEREO_FORMAT_RIGHT_LEFT },
|
|
|
|
{ NULL, 0 }
|
2011-04-21 11:50:07 +04:00
|
|
|
};
|
2014-10-14 01:27:53 +04:00
|
|
|
static const arg_def_t stereo_mode = ARG_DEF_ENUM(
|
|
|
|
NULL, "stereo-mode", 1, "Stereo 3D video format", stereo_mode_enum);
|
2014-05-11 04:44:12 +04:00
|
|
|
#endif
|
2014-10-14 01:27:53 +04:00
|
|
|
static const arg_def_t timebase = ARG_DEF(
|
|
|
|
NULL, "timebase", 1, "Output timestamp precision (fractional seconds)");
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t error_resilient =
|
|
|
|
ARG_DEF(NULL, "error-resilient", 1, "Enable error resiliency features");
|
|
|
|
static const arg_def_t lag_in_frames =
|
|
|
|
ARG_DEF(NULL, "lag-in-frames", 1, "Max number of frames to lag");
|
|
|
|
|
|
|
|
static const arg_def_t *global_args[] = { &use_yv12,
|
|
|
|
&use_i420,
|
|
|
|
&use_i422,
|
|
|
|
&use_i444,
|
|
|
|
&use_i440,
|
|
|
|
&usage,
|
|
|
|
&threads,
|
|
|
|
&profile,
|
|
|
|
&width,
|
|
|
|
&height,
|
2014-05-11 04:44:12 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2016-08-09 05:03:30 +03:00
|
|
|
&stereo_mode,
|
2014-05-11 04:44:12 +04:00
|
|
|
#endif
|
2016-08-09 05:03:30 +03:00
|
|
|
&timebase,
|
|
|
|
&framerate,
|
|
|
|
&error_resilient,
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-09 05:03:30 +03:00
|
|
|
&test16bitinternalarg,
|
2016-07-13 01:03:18 +03:00
|
|
|
&bitdeptharg,
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2016-08-09 05:03:30 +03:00
|
|
|
&lag_in_frames,
|
|
|
|
NULL };
|
|
|
|
|
|
|
|
static const arg_def_t dropframe_thresh =
|
|
|
|
ARG_DEF(NULL, "drop-frame", 1, "Temporal resampling threshold (buf %)");
|
|
|
|
static const arg_def_t resize_allowed =
|
|
|
|
ARG_DEF(NULL, "resize-allowed", 1, "Spatial resampling enabled (bool)");
|
|
|
|
static const arg_def_t resize_width =
|
|
|
|
ARG_DEF(NULL, "resize-width", 1, "Width of encoded frame");
|
|
|
|
static const arg_def_t resize_height =
|
|
|
|
ARG_DEF(NULL, "resize-height", 1, "Height of encoded frame");
|
|
|
|
static const arg_def_t resize_up_thresh =
|
|
|
|
ARG_DEF(NULL, "resize-up", 1, "Upscale threshold (buf %)");
|
|
|
|
static const arg_def_t resize_down_thresh =
|
|
|
|
ARG_DEF(NULL, "resize-down", 1, "Downscale threshold (buf %)");
|
2016-08-31 00:01:10 +03:00
|
|
|
static const struct arg_enum_list end_usage_enum[] = { { "vbr", AOM_VBR },
|
|
|
|
{ "cbr", AOM_CBR },
|
|
|
|
{ "cq", AOM_CQ },
|
|
|
|
{ "q", AOM_Q },
|
2016-08-09 05:03:30 +03:00
|
|
|
{ NULL, 0 } };
|
|
|
|
static const arg_def_t end_usage =
|
|
|
|
ARG_DEF_ENUM(NULL, "end-usage", 1, "Rate control mode", end_usage_enum);
|
|
|
|
static const arg_def_t target_bitrate =
|
|
|
|
ARG_DEF(NULL, "target-bitrate", 1, "Bitrate (kbps)");
|
|
|
|
static const arg_def_t min_quantizer =
|
|
|
|
ARG_DEF(NULL, "min-q", 1, "Minimum (best) quantizer");
|
|
|
|
static const arg_def_t max_quantizer =
|
|
|
|
ARG_DEF(NULL, "max-q", 1, "Maximum (worst) quantizer");
|
|
|
|
static const arg_def_t undershoot_pct =
|
|
|
|
ARG_DEF(NULL, "undershoot-pct", 1, "Datarate undershoot (min) target (%)");
|
|
|
|
static const arg_def_t overshoot_pct =
|
|
|
|
ARG_DEF(NULL, "overshoot-pct", 1, "Datarate overshoot (max) target (%)");
|
|
|
|
static const arg_def_t buf_sz =
|
|
|
|
ARG_DEF(NULL, "buf-sz", 1, "Client buffer size (ms)");
|
|
|
|
static const arg_def_t buf_initial_sz =
|
|
|
|
ARG_DEF(NULL, "buf-initial-sz", 1, "Client initial buffer size (ms)");
|
|
|
|
static const arg_def_t buf_optimal_sz =
|
|
|
|
ARG_DEF(NULL, "buf-optimal-sz", 1, "Client optimal buffer size (ms)");
|
2012-07-14 02:21:29 +04:00
|
|
|
static const arg_def_t *rc_args[] = {
|
2016-08-09 05:03:30 +03:00
|
|
|
&dropframe_thresh, &resize_allowed, &resize_width, &resize_height,
|
|
|
|
&resize_up_thresh, &resize_down_thresh, &end_usage, &target_bitrate,
|
|
|
|
&min_quantizer, &max_quantizer, &undershoot_pct, &overshoot_pct,
|
|
|
|
&buf_sz, &buf_initial_sz, &buf_optimal_sz, NULL
|
2010-05-18 19:58:33 +04:00
|
|
|
};
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t bias_pct =
|
|
|
|
ARG_DEF(NULL, "bias-pct", 1, "CBR/VBR bias (0=CBR, 100=VBR)");
|
|
|
|
static const arg_def_t minsection_pct =
|
|
|
|
ARG_DEF(NULL, "minsection-pct", 1, "GOP min bitrate (% of target)");
|
|
|
|
static const arg_def_t maxsection_pct =
|
|
|
|
ARG_DEF(NULL, "maxsection-pct", 1, "GOP max bitrate (% of target)");
|
|
|
|
static const arg_def_t *rc_twopass_args[] = { &bias_pct, &minsection_pct,
|
|
|
|
&maxsection_pct, NULL };
|
|
|
|
|
|
|
|
static const arg_def_t kf_min_dist =
|
|
|
|
ARG_DEF(NULL, "kf-min-dist", 1, "Minimum keyframe interval (frames)");
|
|
|
|
static const arg_def_t kf_max_dist =
|
|
|
|
ARG_DEF(NULL, "kf-max-dist", 1, "Maximum keyframe interval (frames)");
|
|
|
|
static const arg_def_t kf_disabled =
|
|
|
|
ARG_DEF(NULL, "disable-kf", 0, "Disable keyframe placement");
|
|
|
|
static const arg_def_t *kf_args[] = { &kf_min_dist, &kf_max_dist, &kf_disabled,
|
|
|
|
NULL };
|
|
|
|
|
|
|
|
static const arg_def_t noise_sens =
|
|
|
|
ARG_DEF(NULL, "noise-sensitivity", 1, "Noise sensitivity (frames to blur)");
|
|
|
|
static const arg_def_t sharpness =
|
|
|
|
ARG_DEF(NULL, "sharpness", 1, "Loop filter sharpness (0..7)");
|
|
|
|
static const arg_def_t static_thresh =
|
|
|
|
ARG_DEF(NULL, "static-thresh", 1, "Motion detection threshold");
|
|
|
|
static const arg_def_t auto_altref =
|
|
|
|
ARG_DEF(NULL, "auto-alt-ref", 1, "Enable automatic alt reference frames");
|
|
|
|
static const arg_def_t arnr_maxframes =
|
|
|
|
ARG_DEF(NULL, "arnr-maxframes", 1, "AltRef max frames (0..15)");
|
|
|
|
static const arg_def_t arnr_strength =
|
|
|
|
ARG_DEF(NULL, "arnr-strength", 1, "AltRef filter strength (0..6)");
|
2010-12-17 17:43:39 +03:00
|
|
|
static const struct arg_enum_list tuning_enum[] = {
|
2016-08-31 00:01:10 +03:00
|
|
|
{ "psnr", AOM_TUNE_PSNR }, { "ssim", AOM_TUNE_SSIM }, { NULL, 0 }
|
2010-12-17 17:43:39 +03:00
|
|
|
};
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t tune_ssim =
|
|
|
|
ARG_DEF_ENUM(NULL, "tune", 1, "Material to favor", tuning_enum);
|
|
|
|
static const arg_def_t cq_level =
|
|
|
|
ARG_DEF(NULL, "cq-level", 1, "Constant/Constrained Quality level");
|
|
|
|
static const arg_def_t max_intra_rate_pct =
|
|
|
|
ARG_DEF(NULL, "max-intra-rate", 1, "Max I-frame bitrate (pct)");
|
2012-11-09 05:09:30 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
|
|
|
static const arg_def_t cpu_used_av1 =
|
2017-04-22 02:39:09 +03:00
|
|
|
ARG_DEF(NULL, "cpu-used", 1, "CPU Used (0..8)");
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t tile_cols =
|
|
|
|
ARG_DEF(NULL, "tile-columns", 1, "Number of tile columns to use, log2");
|
|
|
|
static const arg_def_t tile_rows =
|
|
|
|
ARG_DEF(NULL, "tile-rows", 1,
|
|
|
|
"Number of tile rows to use, log2 (set to 0 while threads > 1)");
|
2017-02-27 23:16:00 +03:00
|
|
|
#if CONFIG_EXT_TILE
|
|
|
|
static const arg_def_t tile_encoding_mode =
|
|
|
|
ARG_DEF(NULL, "tile-encoding-mode", 1,
|
|
|
|
"Tile encoding mode (0: normal"
|
|
|
|
" (default), 1: vr)");
|
|
|
|
#endif
|
2017-01-18 01:01:52 +03:00
|
|
|
#if CONFIG_DEPENDENT_HORZTILES
|
|
|
|
static const arg_def_t tile_dependent_rows =
|
|
|
|
ARG_DEF(NULL, "tile-dependent-rows", 1, "Enable dependent Tile rows");
|
|
|
|
#endif
|
2017-01-31 02:52:20 +03:00
|
|
|
#if CONFIG_LOOPFILTERING_ACROSS_TILES
|
2016-12-09 08:08:31 +03:00
|
|
|
static const arg_def_t tile_loopfilter = ARG_DEF(
|
|
|
|
NULL, "tile-loopfilter", 1, "Enable loop filter across tile boundary");
|
2017-01-31 02:52:20 +03:00
|
|
|
#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t lossless =
|
|
|
|
ARG_DEF(NULL, "lossless", 1, "Lossless mode (0: false (default), 1: true)");
|
2016-08-11 19:39:47 +03:00
|
|
|
#if CONFIG_AOM_QM
|
|
|
|
static const arg_def_t enable_qm =
|
2016-11-10 02:11:22 +03:00
|
|
|
ARG_DEF(NULL, "enable-qm", 1,
|
2016-08-11 19:39:47 +03:00
|
|
|
"Enable quantisation matrices (0: false (default), 1: true)");
|
|
|
|
static const arg_def_t qm_min = ARG_DEF(
|
2016-11-10 02:11:22 +03:00
|
|
|
NULL, "qm-min", 1, "Min quant matrix flatness (0..15), default is 8");
|
2016-08-11 19:39:47 +03:00
|
|
|
static const arg_def_t qm_max = ARG_DEF(
|
2016-11-10 02:11:22 +03:00
|
|
|
NULL, "qm-max", 1, "Max quant matrix flatness (0..15), default is 16");
|
2016-08-11 19:39:47 +03:00
|
|
|
#endif
|
2016-11-09 17:04:18 +03:00
|
|
|
#if CONFIG_TILE_GROUPS
|
2016-11-11 02:32:21 +03:00
|
|
|
static const arg_def_t num_tg = ARG_DEF(
|
|
|
|
NULL, "num-tile-groups", 1, "Maximum number of tile groups, default is 1");
|
2016-11-09 17:04:18 +03:00
|
|
|
static const arg_def_t mtu_size =
|
|
|
|
ARG_DEF(NULL, "mtu-size", 1,
|
2016-11-11 02:32:21 +03:00
|
|
|
"MTU size for a tile group, default is 0 (no MTU targeting), "
|
|
|
|
"overrides maximum number of tile groups");
|
2016-11-09 17:04:18 +03:00
|
|
|
#endif
|
2016-12-15 00:40:54 +03:00
|
|
|
#if CONFIG_TEMPMV_SIGNALING
|
|
|
|
static const arg_def_t disable_tempmv = ARG_DEF(
|
|
|
|
NULL, "disable-tempmv", 1, "Disable temporal mv prediction (default is 0)");
|
|
|
|
#endif
|
2016-10-01 01:39:53 +03:00
|
|
|
static const arg_def_t frame_parallel_decoding =
|
|
|
|
ARG_DEF(NULL, "frame-parallel", 1,
|
|
|
|
"Enable frame parallel decodability features "
|
|
|
|
"(0: false (default), 1: true)");
|
2017-04-24 19:45:51 +03:00
|
|
|
#if CONFIG_DELTA_Q && !CONFIG_EXT_DELTA_Q
|
2016-08-15 16:07:52 +03:00
|
|
|
static const arg_def_t aq_mode = ARG_DEF(
|
|
|
|
NULL, "aq-mode", 1,
|
|
|
|
"Adaptive quantization mode (0: off (default), 1: variance 2: complexity, "
|
2016-09-05 18:51:31 +03:00
|
|
|
"3: cyclic refresh, 4: delta quant)");
|
2016-08-15 16:07:52 +03:00
|
|
|
#else
|
2016-09-20 14:07:11 +03:00
|
|
|
static const arg_def_t aq_mode = ARG_DEF(
|
|
|
|
NULL, "aq-mode", 1,
|
|
|
|
"Adaptive quantization mode (0: off (default), 1: variance 2: complexity, "
|
2016-09-05 18:51:31 +03:00
|
|
|
"3: cyclic refresh)");
|
2016-08-15 16:07:52 +03:00
|
|
|
#endif
|
2017-04-24 19:45:51 +03:00
|
|
|
#if CONFIG_EXT_DELTA_Q
|
|
|
|
static const arg_def_t deltaq_mode = ARG_DEF(
|
|
|
|
NULL, "deltaq-mode", 1,
|
|
|
|
"Delta qindex mode (0: off (default), 1: deltaq 2: deltaq + deltalf)");
|
|
|
|
#endif
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t frame_periodic_boost =
|
|
|
|
ARG_DEF(NULL, "frame-boost", 1,
|
|
|
|
"Enable frame periodic boost (0: off (default), 1: on)");
|
2015-06-06 02:07:20 +03:00
|
|
|
static const arg_def_t gf_cbr_boost_pct = ARG_DEF(
|
|
|
|
NULL, "gf-cbr-boost", 1, "Boost for Golden Frame in CBR mode (pct)");
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t max_inter_rate_pct =
|
|
|
|
ARG_DEF(NULL, "max-inter-rate", 1, "Max P-frame bitrate (pct)");
|
2015-04-02 02:39:06 +03:00
|
|
|
static const arg_def_t min_gf_interval = ARG_DEF(
|
|
|
|
NULL, "min-gf-interval", 1,
|
|
|
|
"min gf/arf frame interval (default 0, indicating in-built behavior)");
|
|
|
|
static const arg_def_t max_gf_interval = ARG_DEF(
|
|
|
|
NULL, "max-gf-interval", 1,
|
|
|
|
"max gf/arf frame interval (default 0, indicating in-built behavior)");
|
2014-01-15 05:56:45 +04:00
|
|
|
|
2015-02-11 02:03:05 +03:00
|
|
|
static const struct arg_enum_list color_space_enum[] = {
|
2016-08-31 00:01:10 +03:00
|
|
|
{ "unknown", AOM_CS_UNKNOWN },
|
|
|
|
{ "bt601", AOM_CS_BT_601 },
|
|
|
|
{ "bt709", AOM_CS_BT_709 },
|
|
|
|
{ "smpte170", AOM_CS_SMPTE_170 },
|
|
|
|
{ "smpte240", AOM_CS_SMPTE_240 },
|
|
|
|
{ "bt2020", AOM_CS_BT_2020 },
|
|
|
|
{ "reserved", AOM_CS_RESERVED },
|
|
|
|
{ "sRGB", AOM_CS_SRGB },
|
2015-02-11 02:03:05 +03:00
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static const arg_def_t input_color_space =
|
|
|
|
ARG_DEF_ENUM(NULL, "color-space", 1, "The color space of input content:",
|
|
|
|
color_space_enum);
|
2015-02-11 02:03:05 +03:00
|
|
|
|
2014-08-06 22:01:18 +04:00
|
|
|
static const struct arg_enum_list tune_content_enum[] = {
|
2016-08-31 00:01:10 +03:00
|
|
|
{ "default", AOM_CONTENT_DEFAULT },
|
|
|
|
{ "screen", AOM_CONTENT_SCREEN },
|
2016-08-09 05:03:30 +03:00
|
|
|
{ NULL, 0 }
|
2014-08-06 22:01:18 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const arg_def_t tune_content = ARG_DEF_ENUM(
|
|
|
|
NULL, "tune-content", 1, "Tune content type", tune_content_enum);
|
2015-08-17 04:21:56 +03:00
|
|
|
#endif
|
2014-08-06 22:01:18 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
Make superblock size variable at the frame level.
The uncompressed frame header contains a bit to signal whether the
frame is encoded using 64x64 or 128x128 superblocks. This can vary
between any 2 frames.
vpxenc gained the --sb-size={64,128,dynamic} option, which allows the
configuration of the superblock size used (default is dynamic). 64/128
will force the encoder to always use the specified superblock size.
Dynamic would enable the encoder to choose the sb size for each
frame, but this is not implemented yet (dynamic does the same as 128
for now).
Constraints on tile sizes depend on the superblock size, the following
is a summary of the current bitstream syntax and semantics:
If both --enable-ext-tile is OFF and --enable-ext-partition is OFF:
The tile coding in this case is the same as VP9. In particular,
tiles have a minimum width of 256 pixels and a maximum width of
4096 pixels. The tile width must be multiples of 64 pixels
(except for the rightmost tile column). There can be a maximum
of 64 tile columns and 4 tile rows.
If --enable-ext-tile is OFF and --enable-ext-partition is ON:
Same constraints as above, except that tile width must be
multiples of 128 pixels (except for the rightmost tile column).
There is no change in the bitstream syntax used for coding the tile
configuration if --enable-ext-tile is OFF.
If --enable-ext-tile is ON and --enable-ext-partition is ON:
This is the new large scale tile coding configuration. The
minimum/maximum tile width and height are 64/4096 pixels. Tile
width and height must be multiples of 64 pixels. The uncompressed
header contains two 6 bit fields that hold the tile width/heigh
in units of 64 pixels. The maximum number of tile rows/columns
is only limited by the maximum frame size of 65536x65536 pixels
that can be coded in the bitstream. This yields a maximum of
1024x1024 tile rows and columns (of 64x64 tiles in a 65536x65536
frame).
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
Same applies as above, except that in the bitstream the 2 fields
containing the tile width/height are in units of the superblock
size, and the superblock size itself is also coded in the bitstream.
If the uncompressed header signals the use of 64x64 superblocks,
then the tile width/height fields are 6 bits wide and are in units
of 64 pixels. If the uncompressed header signals the use of 128x128
superblocks, then the tile width/height fields are 5 bits wide and
are in units of 128 pixels.
The above is a summary of the bitstream. The user interface to vpxenc
(and the equivalent encoder API) behaves a follows:
If --enable-ext-tile is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the base 2 logarithm of the desired number of tile columns
and tile rows. The actual number of tile rows and tile columns,
and the particular tile width and tile height are computed by the
codec ensuring all of the above constraints are respected.
If --enable-ext-tile is ON, but --enable-ext-partition is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the WIDTH and HEIGHT of the tiles in unit of 64 pixels.
The valid values are in the range [1, 64] (which corresponds to
[64, 4096] pixels in increments of 64.
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
If --sb-size=64 (default):
The user interface is the same as in the previous point.
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 64 pixels, in the range [1, 64] (which corresponds
to [64, 4096] pixels in increments of 64).
If --sb-size=128 or --sb-size=dynamic:
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 128 pixels in the range [1, 32] (which corresponds
to [128, 4096] pixels in increments of 128).
Change-Id: Idc9beee1ad12ff1634e83671985d14c680f9179a
2016-03-24 16:56:05 +03:00
|
|
|
#if CONFIG_EXT_PARTITION
|
|
|
|
static const struct arg_enum_list superblock_size_enum[] = {
|
2016-08-31 00:01:10 +03:00
|
|
|
{ "dynamic", AOM_SUPERBLOCK_SIZE_DYNAMIC },
|
|
|
|
{ "64", AOM_SUPERBLOCK_SIZE_64X64 },
|
|
|
|
{ "128", AOM_SUPERBLOCK_SIZE_128X128 },
|
2016-08-09 05:03:30 +03:00
|
|
|
{ NULL, 0 }
|
Make superblock size variable at the frame level.
The uncompressed frame header contains a bit to signal whether the
frame is encoded using 64x64 or 128x128 superblocks. This can vary
between any 2 frames.
vpxenc gained the --sb-size={64,128,dynamic} option, which allows the
configuration of the superblock size used (default is dynamic). 64/128
will force the encoder to always use the specified superblock size.
Dynamic would enable the encoder to choose the sb size for each
frame, but this is not implemented yet (dynamic does the same as 128
for now).
Constraints on tile sizes depend on the superblock size, the following
is a summary of the current bitstream syntax and semantics:
If both --enable-ext-tile is OFF and --enable-ext-partition is OFF:
The tile coding in this case is the same as VP9. In particular,
tiles have a minimum width of 256 pixels and a maximum width of
4096 pixels. The tile width must be multiples of 64 pixels
(except for the rightmost tile column). There can be a maximum
of 64 tile columns and 4 tile rows.
If --enable-ext-tile is OFF and --enable-ext-partition is ON:
Same constraints as above, except that tile width must be
multiples of 128 pixels (except for the rightmost tile column).
There is no change in the bitstream syntax used for coding the tile
configuration if --enable-ext-tile is OFF.
If --enable-ext-tile is ON and --enable-ext-partition is ON:
This is the new large scale tile coding configuration. The
minimum/maximum tile width and height are 64/4096 pixels. Tile
width and height must be multiples of 64 pixels. The uncompressed
header contains two 6 bit fields that hold the tile width/heigh
in units of 64 pixels. The maximum number of tile rows/columns
is only limited by the maximum frame size of 65536x65536 pixels
that can be coded in the bitstream. This yields a maximum of
1024x1024 tile rows and columns (of 64x64 tiles in a 65536x65536
frame).
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
Same applies as above, except that in the bitstream the 2 fields
containing the tile width/height are in units of the superblock
size, and the superblock size itself is also coded in the bitstream.
If the uncompressed header signals the use of 64x64 superblocks,
then the tile width/height fields are 6 bits wide and are in units
of 64 pixels. If the uncompressed header signals the use of 128x128
superblocks, then the tile width/height fields are 5 bits wide and
are in units of 128 pixels.
The above is a summary of the bitstream. The user interface to vpxenc
(and the equivalent encoder API) behaves a follows:
If --enable-ext-tile is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the base 2 logarithm of the desired number of tile columns
and tile rows. The actual number of tile rows and tile columns,
and the particular tile width and tile height are computed by the
codec ensuring all of the above constraints are respected.
If --enable-ext-tile is ON, but --enable-ext-partition is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the WIDTH and HEIGHT of the tiles in unit of 64 pixels.
The valid values are in the range [1, 64] (which corresponds to
[64, 4096] pixels in increments of 64.
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
If --sb-size=64 (default):
The user interface is the same as in the previous point.
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 64 pixels, in the range [1, 64] (which corresponds
to [64, 4096] pixels in increments of 64).
If --sb-size=128 or --sb-size=dynamic:
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 128 pixels in the range [1, 32] (which corresponds
to [128, 4096] pixels in increments of 128).
Change-Id: Idc9beee1ad12ff1634e83671985d14c680f9179a
2016-03-24 16:56:05 +03:00
|
|
|
};
|
|
|
|
static const arg_def_t superblock_size = ARG_DEF_ENUM(
|
|
|
|
NULL, "sb-size", 1, "Superblock size to use", superblock_size_enum);
|
|
|
|
#endif // CONFIG_EXT_PARTITION
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static const arg_def_t *av1_args[] = { &cpu_used_av1,
|
|
|
|
&auto_altref,
|
|
|
|
&sharpness,
|
|
|
|
&static_thresh,
|
|
|
|
&tile_cols,
|
|
|
|
&tile_rows,
|
2017-02-27 23:16:00 +03:00
|
|
|
#if CONFIG_EXT_TILE
|
|
|
|
&tile_encoding_mode,
|
|
|
|
#endif
|
2017-01-18 01:01:52 +03:00
|
|
|
#if CONFIG_DEPENDENT_HORZTILES
|
|
|
|
&tile_dependent_rows,
|
|
|
|
#endif
|
2017-01-31 02:52:20 +03:00
|
|
|
#if CONFIG_LOOPFILTERING_ACROSS_TILES
|
2016-12-09 08:08:31 +03:00
|
|
|
&tile_loopfilter,
|
2017-01-31 02:52:20 +03:00
|
|
|
#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
|
2016-08-31 00:01:10 +03:00
|
|
|
&arnr_maxframes,
|
|
|
|
&arnr_strength,
|
|
|
|
&tune_ssim,
|
|
|
|
&cq_level,
|
|
|
|
&max_intra_rate_pct,
|
|
|
|
&max_inter_rate_pct,
|
|
|
|
&gf_cbr_boost_pct,
|
|
|
|
&lossless,
|
2016-11-10 00:58:25 +03:00
|
|
|
#if CONFIG_AOM_QM
|
|
|
|
&enable_qm,
|
|
|
|
&qm_min,
|
|
|
|
&qm_max,
|
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
&frame_parallel_decoding,
|
|
|
|
&aq_mode,
|
2017-04-24 19:45:51 +03:00
|
|
|
#if CONFIG_EXT_DELTA_Q
|
|
|
|
&deltaq_mode,
|
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
&frame_periodic_boost,
|
|
|
|
&noise_sens,
|
|
|
|
&tune_content,
|
|
|
|
&input_color_space,
|
|
|
|
&min_gf_interval,
|
|
|
|
&max_gf_interval,
|
Make superblock size variable at the frame level.
The uncompressed frame header contains a bit to signal whether the
frame is encoded using 64x64 or 128x128 superblocks. This can vary
between any 2 frames.
vpxenc gained the --sb-size={64,128,dynamic} option, which allows the
configuration of the superblock size used (default is dynamic). 64/128
will force the encoder to always use the specified superblock size.
Dynamic would enable the encoder to choose the sb size for each
frame, but this is not implemented yet (dynamic does the same as 128
for now).
Constraints on tile sizes depend on the superblock size, the following
is a summary of the current bitstream syntax and semantics:
If both --enable-ext-tile is OFF and --enable-ext-partition is OFF:
The tile coding in this case is the same as VP9. In particular,
tiles have a minimum width of 256 pixels and a maximum width of
4096 pixels. The tile width must be multiples of 64 pixels
(except for the rightmost tile column). There can be a maximum
of 64 tile columns and 4 tile rows.
If --enable-ext-tile is OFF and --enable-ext-partition is ON:
Same constraints as above, except that tile width must be
multiples of 128 pixels (except for the rightmost tile column).
There is no change in the bitstream syntax used for coding the tile
configuration if --enable-ext-tile is OFF.
If --enable-ext-tile is ON and --enable-ext-partition is ON:
This is the new large scale tile coding configuration. The
minimum/maximum tile width and height are 64/4096 pixels. Tile
width and height must be multiples of 64 pixels. The uncompressed
header contains two 6 bit fields that hold the tile width/heigh
in units of 64 pixels. The maximum number of tile rows/columns
is only limited by the maximum frame size of 65536x65536 pixels
that can be coded in the bitstream. This yields a maximum of
1024x1024 tile rows and columns (of 64x64 tiles in a 65536x65536
frame).
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
Same applies as above, except that in the bitstream the 2 fields
containing the tile width/height are in units of the superblock
size, and the superblock size itself is also coded in the bitstream.
If the uncompressed header signals the use of 64x64 superblocks,
then the tile width/height fields are 6 bits wide and are in units
of 64 pixels. If the uncompressed header signals the use of 128x128
superblocks, then the tile width/height fields are 5 bits wide and
are in units of 128 pixels.
The above is a summary of the bitstream. The user interface to vpxenc
(and the equivalent encoder API) behaves a follows:
If --enable-ext-tile is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the base 2 logarithm of the desired number of tile columns
and tile rows. The actual number of tile rows and tile columns,
and the particular tile width and tile height are computed by the
codec ensuring all of the above constraints are respected.
If --enable-ext-tile is ON, but --enable-ext-partition is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the WIDTH and HEIGHT of the tiles in unit of 64 pixels.
The valid values are in the range [1, 64] (which corresponds to
[64, 4096] pixels in increments of 64.
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
If --sb-size=64 (default):
The user interface is the same as in the previous point.
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 64 pixels, in the range [1, 64] (which corresponds
to [64, 4096] pixels in increments of 64).
If --sb-size=128 or --sb-size=dynamic:
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 128 pixels in the range [1, 32] (which corresponds
to [128, 4096] pixels in increments of 128).
Change-Id: Idc9beee1ad12ff1634e83671985d14c680f9179a
2016-03-24 16:56:05 +03:00
|
|
|
#if CONFIG_EXT_PARTITION
|
2016-08-31 00:01:10 +03:00
|
|
|
&superblock_size,
|
Make superblock size variable at the frame level.
The uncompressed frame header contains a bit to signal whether the
frame is encoded using 64x64 or 128x128 superblocks. This can vary
between any 2 frames.
vpxenc gained the --sb-size={64,128,dynamic} option, which allows the
configuration of the superblock size used (default is dynamic). 64/128
will force the encoder to always use the specified superblock size.
Dynamic would enable the encoder to choose the sb size for each
frame, but this is not implemented yet (dynamic does the same as 128
for now).
Constraints on tile sizes depend on the superblock size, the following
is a summary of the current bitstream syntax and semantics:
If both --enable-ext-tile is OFF and --enable-ext-partition is OFF:
The tile coding in this case is the same as VP9. In particular,
tiles have a minimum width of 256 pixels and a maximum width of
4096 pixels. The tile width must be multiples of 64 pixels
(except for the rightmost tile column). There can be a maximum
of 64 tile columns and 4 tile rows.
If --enable-ext-tile is OFF and --enable-ext-partition is ON:
Same constraints as above, except that tile width must be
multiples of 128 pixels (except for the rightmost tile column).
There is no change in the bitstream syntax used for coding the tile
configuration if --enable-ext-tile is OFF.
If --enable-ext-tile is ON and --enable-ext-partition is ON:
This is the new large scale tile coding configuration. The
minimum/maximum tile width and height are 64/4096 pixels. Tile
width and height must be multiples of 64 pixels. The uncompressed
header contains two 6 bit fields that hold the tile width/heigh
in units of 64 pixels. The maximum number of tile rows/columns
is only limited by the maximum frame size of 65536x65536 pixels
that can be coded in the bitstream. This yields a maximum of
1024x1024 tile rows and columns (of 64x64 tiles in a 65536x65536
frame).
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
Same applies as above, except that in the bitstream the 2 fields
containing the tile width/height are in units of the superblock
size, and the superblock size itself is also coded in the bitstream.
If the uncompressed header signals the use of 64x64 superblocks,
then the tile width/height fields are 6 bits wide and are in units
of 64 pixels. If the uncompressed header signals the use of 128x128
superblocks, then the tile width/height fields are 5 bits wide and
are in units of 128 pixels.
The above is a summary of the bitstream. The user interface to vpxenc
(and the equivalent encoder API) behaves a follows:
If --enable-ext-tile is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the base 2 logarithm of the desired number of tile columns
and tile rows. The actual number of tile rows and tile columns,
and the particular tile width and tile height are computed by the
codec ensuring all of the above constraints are respected.
If --enable-ext-tile is ON, but --enable-ext-partition is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the WIDTH and HEIGHT of the tiles in unit of 64 pixels.
The valid values are in the range [1, 64] (which corresponds to
[64, 4096] pixels in increments of 64.
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
If --sb-size=64 (default):
The user interface is the same as in the previous point.
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 64 pixels, in the range [1, 64] (which corresponds
to [64, 4096] pixels in increments of 64).
If --sb-size=128 or --sb-size=dynamic:
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 128 pixels in the range [1, 32] (which corresponds
to [128, 4096] pixels in increments of 128).
Change-Id: Idc9beee1ad12ff1634e83671985d14c680f9179a
2016-03-24 16:56:05 +03:00
|
|
|
#endif // CONFIG_EXT_PARTITION
|
2016-11-09 17:04:18 +03:00
|
|
|
#if CONFIG_TILE_GROUPS
|
|
|
|
&num_tg,
|
|
|
|
&mtu_size,
|
|
|
|
#endif
|
2016-12-15 00:40:54 +03:00
|
|
|
#if CONFIG_TEMPMV_SIGNALING
|
|
|
|
&disable_tempmv,
|
|
|
|
#endif
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
&bitdeptharg,
|
|
|
|
&inbitdeptharg,
|
2017-04-12 17:03:28 +03:00
|
|
|
#endif // CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
NULL };
|
|
|
|
static const int av1_arg_ctrl_map[] = { AOME_SET_CPUUSED,
|
|
|
|
AOME_SET_ENABLEAUTOALTREF,
|
|
|
|
AOME_SET_SHARPNESS,
|
|
|
|
AOME_SET_STATIC_THRESHOLD,
|
|
|
|
AV1E_SET_TILE_COLUMNS,
|
|
|
|
AV1E_SET_TILE_ROWS,
|
2017-02-27 23:16:00 +03:00
|
|
|
#if CONFIG_EXT_TILE
|
|
|
|
AV1E_SET_TILE_ENCODING_MODE,
|
|
|
|
#endif
|
2017-01-18 01:01:52 +03:00
|
|
|
#if CONFIG_DEPENDENT_HORZTILES
|
|
|
|
AV1E_SET_TILE_DEPENDENT_ROWS,
|
|
|
|
#endif
|
2017-01-31 02:52:20 +03:00
|
|
|
#if CONFIG_LOOPFILTERING_ACROSS_TILES
|
2016-12-09 08:08:31 +03:00
|
|
|
AV1E_SET_TILE_LOOPFILTER,
|
2017-01-31 02:52:20 +03:00
|
|
|
#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
|
2016-08-31 00:01:10 +03:00
|
|
|
AOME_SET_ARNR_MAXFRAMES,
|
|
|
|
AOME_SET_ARNR_STRENGTH,
|
|
|
|
AOME_SET_TUNING,
|
|
|
|
AOME_SET_CQ_LEVEL,
|
|
|
|
AOME_SET_MAX_INTRA_BITRATE_PCT,
|
|
|
|
AV1E_SET_MAX_INTER_BITRATE_PCT,
|
|
|
|
AV1E_SET_GF_CBR_BOOST_PCT,
|
|
|
|
AV1E_SET_LOSSLESS,
|
2016-11-10 00:58:25 +03:00
|
|
|
#if CONFIG_AOM_QM
|
|
|
|
AV1E_SET_ENABLE_QM,
|
|
|
|
AV1E_SET_QM_MIN,
|
|
|
|
AV1E_SET_QM_MAX,
|
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
AV1E_SET_FRAME_PARALLEL_DECODING,
|
|
|
|
AV1E_SET_AQ_MODE,
|
2017-04-24 19:45:51 +03:00
|
|
|
#if CONFIG_EXT_DELTA_Q
|
|
|
|
AV1E_SET_DELTAQ_MODE,
|
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
AV1E_SET_FRAME_PERIODIC_BOOST,
|
|
|
|
AV1E_SET_NOISE_SENSITIVITY,
|
|
|
|
AV1E_SET_TUNE_CONTENT,
|
|
|
|
AV1E_SET_COLOR_SPACE,
|
|
|
|
AV1E_SET_MIN_GF_INTERVAL,
|
|
|
|
AV1E_SET_MAX_GF_INTERVAL,
|
Make superblock size variable at the frame level.
The uncompressed frame header contains a bit to signal whether the
frame is encoded using 64x64 or 128x128 superblocks. This can vary
between any 2 frames.
vpxenc gained the --sb-size={64,128,dynamic} option, which allows the
configuration of the superblock size used (default is dynamic). 64/128
will force the encoder to always use the specified superblock size.
Dynamic would enable the encoder to choose the sb size for each
frame, but this is not implemented yet (dynamic does the same as 128
for now).
Constraints on tile sizes depend on the superblock size, the following
is a summary of the current bitstream syntax and semantics:
If both --enable-ext-tile is OFF and --enable-ext-partition is OFF:
The tile coding in this case is the same as VP9. In particular,
tiles have a minimum width of 256 pixels and a maximum width of
4096 pixels. The tile width must be multiples of 64 pixels
(except for the rightmost tile column). There can be a maximum
of 64 tile columns and 4 tile rows.
If --enable-ext-tile is OFF and --enable-ext-partition is ON:
Same constraints as above, except that tile width must be
multiples of 128 pixels (except for the rightmost tile column).
There is no change in the bitstream syntax used for coding the tile
configuration if --enable-ext-tile is OFF.
If --enable-ext-tile is ON and --enable-ext-partition is ON:
This is the new large scale tile coding configuration. The
minimum/maximum tile width and height are 64/4096 pixels. Tile
width and height must be multiples of 64 pixels. The uncompressed
header contains two 6 bit fields that hold the tile width/heigh
in units of 64 pixels. The maximum number of tile rows/columns
is only limited by the maximum frame size of 65536x65536 pixels
that can be coded in the bitstream. This yields a maximum of
1024x1024 tile rows and columns (of 64x64 tiles in a 65536x65536
frame).
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
Same applies as above, except that in the bitstream the 2 fields
containing the tile width/height are in units of the superblock
size, and the superblock size itself is also coded in the bitstream.
If the uncompressed header signals the use of 64x64 superblocks,
then the tile width/height fields are 6 bits wide and are in units
of 64 pixels. If the uncompressed header signals the use of 128x128
superblocks, then the tile width/height fields are 5 bits wide and
are in units of 128 pixels.
The above is a summary of the bitstream. The user interface to vpxenc
(and the equivalent encoder API) behaves a follows:
If --enable-ext-tile is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the base 2 logarithm of the desired number of tile columns
and tile rows. The actual number of tile rows and tile columns,
and the particular tile width and tile height are computed by the
codec ensuring all of the above constraints are respected.
If --enable-ext-tile is ON, but --enable-ext-partition is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the WIDTH and HEIGHT of the tiles in unit of 64 pixels.
The valid values are in the range [1, 64] (which corresponds to
[64, 4096] pixels in increments of 64.
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
If --sb-size=64 (default):
The user interface is the same as in the previous point.
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 64 pixels, in the range [1, 64] (which corresponds
to [64, 4096] pixels in increments of 64).
If --sb-size=128 or --sb-size=dynamic:
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 128 pixels in the range [1, 32] (which corresponds
to [128, 4096] pixels in increments of 128).
Change-Id: Idc9beee1ad12ff1634e83671985d14c680f9179a
2016-03-24 16:56:05 +03:00
|
|
|
#if CONFIG_EXT_PARTITION
|
2016-08-31 00:01:10 +03:00
|
|
|
AV1E_SET_SUPERBLOCK_SIZE,
|
Make superblock size variable at the frame level.
The uncompressed frame header contains a bit to signal whether the
frame is encoded using 64x64 or 128x128 superblocks. This can vary
between any 2 frames.
vpxenc gained the --sb-size={64,128,dynamic} option, which allows the
configuration of the superblock size used (default is dynamic). 64/128
will force the encoder to always use the specified superblock size.
Dynamic would enable the encoder to choose the sb size for each
frame, but this is not implemented yet (dynamic does the same as 128
for now).
Constraints on tile sizes depend on the superblock size, the following
is a summary of the current bitstream syntax and semantics:
If both --enable-ext-tile is OFF and --enable-ext-partition is OFF:
The tile coding in this case is the same as VP9. In particular,
tiles have a minimum width of 256 pixels and a maximum width of
4096 pixels. The tile width must be multiples of 64 pixels
(except for the rightmost tile column). There can be a maximum
of 64 tile columns and 4 tile rows.
If --enable-ext-tile is OFF and --enable-ext-partition is ON:
Same constraints as above, except that tile width must be
multiples of 128 pixels (except for the rightmost tile column).
There is no change in the bitstream syntax used for coding the tile
configuration if --enable-ext-tile is OFF.
If --enable-ext-tile is ON and --enable-ext-partition is ON:
This is the new large scale tile coding configuration. The
minimum/maximum tile width and height are 64/4096 pixels. Tile
width and height must be multiples of 64 pixels. The uncompressed
header contains two 6 bit fields that hold the tile width/heigh
in units of 64 pixels. The maximum number of tile rows/columns
is only limited by the maximum frame size of 65536x65536 pixels
that can be coded in the bitstream. This yields a maximum of
1024x1024 tile rows and columns (of 64x64 tiles in a 65536x65536
frame).
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
Same applies as above, except that in the bitstream the 2 fields
containing the tile width/height are in units of the superblock
size, and the superblock size itself is also coded in the bitstream.
If the uncompressed header signals the use of 64x64 superblocks,
then the tile width/height fields are 6 bits wide and are in units
of 64 pixels. If the uncompressed header signals the use of 128x128
superblocks, then the tile width/height fields are 5 bits wide and
are in units of 128 pixels.
The above is a summary of the bitstream. The user interface to vpxenc
(and the equivalent encoder API) behaves a follows:
If --enable-ext-tile is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the base 2 logarithm of the desired number of tile columns
and tile rows. The actual number of tile rows and tile columns,
and the particular tile width and tile height are computed by the
codec ensuring all of the above constraints are respected.
If --enable-ext-tile is ON, but --enable-ext-partition is OFF:
No change in the user interface. --tile-columns and --tile-rows
specify the WIDTH and HEIGHT of the tiles in unit of 64 pixels.
The valid values are in the range [1, 64] (which corresponds to
[64, 4096] pixels in increments of 64.
If both --enable-ext-tile is ON and --enable-ext-partition is ON:
If --sb-size=64 (default):
The user interface is the same as in the previous point.
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 64 pixels, in the range [1, 64] (which corresponds
to [64, 4096] pixels in increments of 64).
If --sb-size=128 or --sb-size=dynamic:
--tile-columns and --tile-rows specify tile WIDTH and HEIGHT,
in units of 128 pixels in the range [1, 32] (which corresponds
to [128, 4096] pixels in increments of 128).
Change-Id: Idc9beee1ad12ff1634e83671985d14c680f9179a
2016-03-24 16:56:05 +03:00
|
|
|
#endif // CONFIG_EXT_PARTITION
|
2016-11-09 17:04:18 +03:00
|
|
|
#if CONFIG_TILE_GROUPS
|
|
|
|
AV1E_SET_NUM_TG,
|
|
|
|
AV1E_SET_MTU,
|
2016-12-15 00:40:54 +03:00
|
|
|
#endif
|
|
|
|
#if CONFIG_TEMPMV_SIGNALING
|
|
|
|
AV1E_SET_DISABLE_TEMPMV,
|
2016-11-09 17:04:18 +03:00
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
0 };
|
2015-08-17 04:21:56 +03:00
|
|
|
#endif
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
static const arg_def_t *no_args[] = { NULL };
|
|
|
|
|
2015-05-09 20:33:26 +03:00
|
|
|
void usage_exit(void) {
|
2012-07-14 02:21:29 +04:00
|
|
|
int i;
|
2016-08-31 00:01:10 +03:00
|
|
|
const int num_encoder = get_aom_encoder_count();
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
fprintf(stderr, "Usage: %s <options> -o dst_filename src_filename \n",
|
|
|
|
exec_name);
|
|
|
|
|
|
|
|
fprintf(stderr, "\nOptions:\n");
|
2013-06-25 20:15:07 +04:00
|
|
|
arg_show_usage(stderr, main_args);
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(stderr, "\nEncoder Global Options:\n");
|
2013-06-25 20:15:07 +04:00
|
|
|
arg_show_usage(stderr, global_args);
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(stderr, "\nRate Control Options:\n");
|
2013-06-25 20:15:07 +04:00
|
|
|
arg_show_usage(stderr, rc_args);
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(stderr, "\nTwopass Rate Control Options:\n");
|
2013-06-25 20:15:07 +04:00
|
|
|
arg_show_usage(stderr, rc_twopass_args);
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(stderr, "\nKeyframe Placement Options:\n");
|
2013-06-25 20:15:07 +04:00
|
|
|
arg_show_usage(stderr, kf_args);
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
|
|
|
fprintf(stderr, "\nAV1 Specific Options:\n");
|
|
|
|
arg_show_usage(stderr, av1_args);
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
2016-08-09 05:03:30 +03:00
|
|
|
fprintf(stderr,
|
|
|
|
"\nStream timebase (--timebase):\n"
|
2012-07-14 02:21:29 +04:00
|
|
|
" The desired precision of timestamps in the output, expressed\n"
|
|
|
|
" in fractional seconds. Default is 1/1000.\n");
|
2014-02-12 09:12:23 +04:00
|
|
|
fprintf(stderr, "\nIncluded encoders:\n\n");
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2015-06-01 19:13:59 +03:00
|
|
|
for (i = 0; i < num_encoder; ++i) {
|
2016-08-31 00:01:10 +03:00
|
|
|
const AvxInterface *const encoder = get_aom_encoder_by_index(i);
|
2016-08-09 05:03:30 +03:00
|
|
|
const char *defstr = (i == (num_encoder - 1)) ? "(default)" : "";
|
|
|
|
fprintf(stderr, " %-6s - %s %s\n", encoder->name,
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_iface_name(encoder->codec_interface()), defstr);
|
2014-02-12 09:12:23 +04:00
|
|
|
}
|
2015-06-01 19:13:59 +03:00
|
|
|
fprintf(stderr, "\n ");
|
|
|
|
fprintf(stderr, "Use --codec to switch to a non-default encoder.\n\n");
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
exit(EXIT_FAILURE);
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
|
|
|
#define ARG_CTRL_CNT_MAX NELEMENTS(av1_arg_ctrl_map)
|
2012-11-09 05:09:30 +04:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-05-11 04:44:12 +04:00
|
|
|
#if !CONFIG_WEBM_IO
|
|
|
|
typedef int stereo_format_t;
|
2016-08-09 05:03:30 +03:00
|
|
|
struct WebmOutputContext {
|
|
|
|
int debug;
|
|
|
|
};
|
2014-05-11 04:44:12 +04:00
|
|
|
#endif
|
|
|
|
|
2012-02-16 00:39:38 +04:00
|
|
|
/* Per-stream configuration */
|
2012-11-07 00:02:42 +04:00
|
|
|
struct stream_config {
|
2016-08-31 00:01:10 +03:00
|
|
|
struct aom_codec_enc_cfg cfg;
|
2016-08-09 05:03:30 +03:00
|
|
|
const char *out_fn;
|
|
|
|
const char *stats_fn;
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
2016-08-09 05:03:30 +03:00
|
|
|
const char *fpmb_stats_fn;
|
2014-07-14 20:13:38 +04:00
|
|
|
#endif
|
2016-08-09 05:03:30 +03:00
|
|
|
stereo_format_t stereo_fmt;
|
|
|
|
int arg_ctrls[ARG_CTRL_CNT_MAX][2];
|
|
|
|
int arg_ctrl_cnt;
|
|
|
|
int write_webm;
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2014-08-26 23:35:15 +04:00
|
|
|
// whether to use 16bit internal buffers
|
2016-08-09 05:03:30 +03:00
|
|
|
int use_16bit_internal;
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2012-02-16 00:39:38 +04:00
|
|
|
};
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
struct stream_state {
|
2016-08-09 05:03:30 +03:00
|
|
|
int index;
|
|
|
|
struct stream_state *next;
|
|
|
|
struct stream_config config;
|
|
|
|
FILE *file;
|
|
|
|
struct rate_hist *rate_hist;
|
|
|
|
struct WebmOutputContext webm_ctx;
|
|
|
|
uint64_t psnr_sse_total;
|
|
|
|
uint64_t psnr_samples_total;
|
|
|
|
double psnr_totals[4];
|
|
|
|
int psnr_count;
|
|
|
|
int counts[64];
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_ctx_t encoder;
|
2016-08-09 05:03:30 +03:00
|
|
|
unsigned int frames_out;
|
|
|
|
uint64_t cx_time;
|
|
|
|
size_t nbytes;
|
|
|
|
stats_io_t stats;
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
2016-08-09 05:03:30 +03:00
|
|
|
stats_io_t fpmb_stats;
|
2014-07-14 20:13:38 +04:00
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
struct aom_image *img;
|
|
|
|
aom_codec_ctx_t decoder;
|
2016-08-09 05:03:30 +03:00
|
|
|
int mismatch_seen;
|
2012-02-16 00:39:38 +04:00
|
|
|
};
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static void validate_positive_rational(const char *msg,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct aom_rational *rat) {
|
2012-11-07 00:02:42 +04:00
|
|
|
if (rat->den < 0) {
|
|
|
|
rat->num *= -1;
|
|
|
|
rat->den *= -1;
|
|
|
|
}
|
2012-04-26 04:08:56 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (rat->num < 0) die("Error: %s must be positive\n", msg);
|
2012-04-26 04:08:56 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!rat->den) die("Error: %s has zero denominator\n", msg);
|
2012-04-26 04:08:56 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static void parse_global_config(struct AvxEncoderConfig *global, char **argv) {
|
2016-08-09 05:03:30 +03:00
|
|
|
char **argi, **argj;
|
|
|
|
struct arg arg;
|
2016-08-31 00:01:10 +03:00
|
|
|
const int num_encoder = get_aom_encoder_count();
|
2015-06-01 19:13:59 +03:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (num_encoder < 1) die("Error: no valid encoder available\n");
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
/* Initialize default parameters */
|
|
|
|
memset(global, 0, sizeof(*global));
|
2016-08-31 00:01:10 +03:00
|
|
|
global->codec = get_aom_encoder_by_index(num_encoder - 1);
|
2013-08-20 01:16:26 +04:00
|
|
|
global->passes = 0;
|
2014-07-16 20:37:13 +04:00
|
|
|
global->color_type = I420;
|
2013-08-20 01:16:26 +04:00
|
|
|
/* Assign default deadline to good quality */
|
2016-08-31 00:01:10 +03:00
|
|
|
global->deadline = AOM_DL_GOOD_QUALITY;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
|
|
|
|
arg.argv_step = 1;
|
|
|
|
|
|
|
|
if (arg_match(&arg, &codecarg, argi)) {
|
2016-08-31 00:01:10 +03:00
|
|
|
global->codec = get_aom_encoder_by_name(arg.val);
|
2014-02-12 09:12:23 +04:00
|
|
|
if (!global->codec)
|
|
|
|
die("Error: Unrecognized argument (%s) to --codec\n", arg.val);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else if (arg_match(&arg, &passes, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
global->passes = arg_parse_uint(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (global->passes < 1 || global->passes > 2)
|
|
|
|
die("Error: Invalid number of passes (%d)\n", global->passes);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else if (arg_match(&arg, &pass_arg, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
global->pass = arg_parse_uint(&arg);
|
|
|
|
|
|
|
|
if (global->pass < 1 || global->pass > 2)
|
2016-08-09 05:03:30 +03:00
|
|
|
die("Error: Invalid pass selected (%d)\n", global->pass);
|
2012-11-07 00:02:42 +04:00
|
|
|
} else if (arg_match(&arg, &usage, argi))
|
|
|
|
global->usage = arg_parse_uint(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &deadline, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->deadline = arg_parse_uint(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &good_dl, argi))
|
2016-08-31 00:01:10 +03:00
|
|
|
global->deadline = AOM_DL_GOOD_QUALITY;
|
2012-11-07 00:02:42 +04:00
|
|
|
else if (arg_match(&arg, &use_yv12, argi))
|
2014-07-16 20:37:13 +04:00
|
|
|
global->color_type = YV12;
|
2012-11-07 00:02:42 +04:00
|
|
|
else if (arg_match(&arg, &use_i420, argi))
|
2014-07-16 20:37:13 +04:00
|
|
|
global->color_type = I420;
|
|
|
|
else if (arg_match(&arg, &use_i422, argi))
|
|
|
|
global->color_type = I422;
|
|
|
|
else if (arg_match(&arg, &use_i444, argi))
|
|
|
|
global->color_type = I444;
|
2014-10-01 23:17:37 +04:00
|
|
|
else if (arg_match(&arg, &use_i440, argi))
|
|
|
|
global->color_type = I440;
|
2012-11-07 00:02:42 +04:00
|
|
|
else if (arg_match(&arg, &quietarg, argi))
|
|
|
|
global->quiet = 1;
|
|
|
|
else if (arg_match(&arg, &verbosearg, argi))
|
|
|
|
global->verbose = 1;
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &limit, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->limit = arg_parse_uint(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &skip, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->skip_frames = arg_parse_uint(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &psnrarg, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->show_psnr = 1;
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &recontest, argi))
|
2013-02-16 04:31:02 +04:00
|
|
|
global->test_decode = arg_parse_enum_or_int(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &framerate, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
global->framerate = arg_parse_rational(&arg);
|
|
|
|
validate_positive_rational(arg.name, &global->framerate);
|
|
|
|
global->have_framerate = 1;
|
|
|
|
} else if (arg_match(&arg, &out_part, argi))
|
|
|
|
global->out_part = 1;
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &debugmode, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->debug = 1;
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &q_hist_n, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->show_q_hist_buckets = arg_parse_uint(&arg);
|
2012-07-14 02:21:29 +04:00
|
|
|
else if (arg_match(&arg, &rate_hist_n, argi))
|
2012-11-07 00:02:42 +04:00
|
|
|
global->show_rate_hist_buckets = arg_parse_uint(&arg);
|
2013-11-26 00:05:19 +04:00
|
|
|
else if (arg_match(&arg, &disable_warnings, argi))
|
|
|
|
global->disable_warnings = 1;
|
|
|
|
else if (arg_match(&arg, &disable_warning_prompt, argi))
|
|
|
|
global->disable_warning_prompt = 1;
|
2012-07-14 02:21:29 +04:00
|
|
|
else
|
|
|
|
argj++;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-02-14 03:34:42 +04:00
|
|
|
if (global->pass) {
|
|
|
|
/* DWIM: Assume the user meant passes=2 if pass=2 is specified */
|
|
|
|
if (global->pass > global->passes) {
|
2016-08-09 05:03:30 +03:00
|
|
|
warn("Assuming --pass=%d implies --passes=%d\n", global->pass,
|
|
|
|
global->pass);
|
2014-02-14 03:34:42 +04:00
|
|
|
global->passes = global->pass;
|
|
|
|
}
|
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Validate global config */
|
2013-08-20 01:16:26 +04:00
|
|
|
if (global->passes == 0) {
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
|
|
|
// Make default AV1 passes = 2 until there is a better quality 1-pass
|
2013-08-20 01:16:26 +04:00
|
|
|
// encoder
|
2014-08-21 18:18:07 +04:00
|
|
|
if (global->codec != NULL && global->codec->name != NULL)
|
2017-03-21 01:44:24 +03:00
|
|
|
global->passes = (strcmp(global->codec->name, "av1") == 0) ? 2 : 1;
|
2013-09-18 05:47:25 +04:00
|
|
|
#else
|
|
|
|
global->passes = 1;
|
|
|
|
#endif
|
2013-08-20 01:16:26 +04:00
|
|
|
}
|
2012-02-14 04:52:18 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static void open_input_file(struct AvxInputContext *input) {
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Parse certain options from the input file, if possible */
|
2016-08-09 05:03:30 +03:00
|
|
|
input->file = strcmp(input->filename, "-") ? fopen(input->filename, "rb")
|
|
|
|
: set_binary_mode(stdin);
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!input->file) fatal("Failed to open input file");
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-02-13 09:17:56 +04:00
|
|
|
if (!fseeko(input->file, 0, SEEK_END)) {
|
|
|
|
/* Input file is seekable. Figure out how long it is, so we can get
|
|
|
|
* progress info.
|
|
|
|
*/
|
|
|
|
input->length = ftello(input->file);
|
|
|
|
rewind(input->file);
|
|
|
|
}
|
|
|
|
|
2015-06-01 20:20:58 +03:00
|
|
|
/* Default to 1:1 pixel aspect ratio. */
|
|
|
|
input->pixel_aspect_ratio.numerator = 1;
|
|
|
|
input->pixel_aspect_ratio.denominator = 1;
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* For RAW input sources, these bytes will applied on the first frame
|
|
|
|
* in read_frame().
|
|
|
|
*/
|
|
|
|
input->detect.buf_read = fread(input->detect.buf, 1, 4, input->file);
|
|
|
|
input->detect.position = 0;
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (input->detect.buf_read == 4 && file_is_y4m(input->detect.buf)) {
|
2013-05-06 22:01:35 +04:00
|
|
|
if (y4m_input_open(&input->y4m, input->file, input->detect.buf, 4,
|
|
|
|
input->only_i420) >= 0) {
|
2012-11-07 00:02:42 +04:00
|
|
|
input->file_type = FILE_TYPE_Y4M;
|
2013-11-15 00:37:42 +04:00
|
|
|
input->width = input->y4m.pic_w;
|
|
|
|
input->height = input->y4m.pic_h;
|
2015-06-01 20:20:58 +03:00
|
|
|
input->pixel_aspect_ratio.numerator = input->y4m.par_n;
|
|
|
|
input->pixel_aspect_ratio.denominator = input->y4m.par_d;
|
2013-11-15 00:37:42 +04:00
|
|
|
input->framerate.numerator = input->y4m.fps_n;
|
|
|
|
input->framerate.denominator = input->y4m.fps_d;
|
2016-08-31 00:01:10 +03:00
|
|
|
input->fmt = input->y4m.aom_fmt;
|
2014-06-13 03:53:13 +04:00
|
|
|
input->bit_depth = input->y4m.bit_depth;
|
2012-11-07 00:02:42 +04:00
|
|
|
} else
|
|
|
|
fatal("Unsupported Y4M stream.");
|
2014-01-07 04:29:09 +04:00
|
|
|
} else if (input->detect.buf_read == 4 && fourcc_is_ivf(input->detect.buf)) {
|
2013-11-08 23:32:23 +04:00
|
|
|
fatal("IVF is not supported as input.");
|
2012-11-07 00:02:42 +04:00
|
|
|
} else {
|
|
|
|
input->file_type = FILE_TYPE_RAW;
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2012-02-15 00:30:17 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static void close_input_file(struct AvxInputContext *input) {
|
2012-11-07 00:02:42 +04:00
|
|
|
fclose(input->file);
|
2016-08-09 05:03:30 +03:00
|
|
|
if (input->file_type == FILE_TYPE_Y4M) y4m_input_close(&input->y4m);
|
2012-02-15 00:30:17 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static struct stream_state *new_stream(struct AvxEncoderConfig *global,
|
2013-11-08 23:32:23 +04:00
|
|
|
struct stream_state *prev) {
|
2012-11-07 00:02:42 +04:00
|
|
|
struct stream_state *stream;
|
|
|
|
|
|
|
|
stream = calloc(1, sizeof(*stream));
|
2014-08-21 18:18:07 +04:00
|
|
|
if (stream == NULL) {
|
2012-11-07 00:02:42 +04:00
|
|
|
fatal("Failed to allocate new stream.");
|
2014-08-21 18:18:07 +04:00
|
|
|
}
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (prev) {
|
|
|
|
memcpy(stream, prev, sizeof(*stream));
|
|
|
|
stream->index++;
|
|
|
|
prev->next = stream;
|
|
|
|
} else {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_err_t res;
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
/* Populate encoder configuration */
|
2016-08-31 00:01:10 +03:00
|
|
|
res = aom_codec_enc_config_default(global->codec->codec_interface(),
|
2016-08-09 05:03:30 +03:00
|
|
|
&stream->config.cfg, global->usage);
|
2016-08-31 00:01:10 +03:00
|
|
|
if (res) fatal("Failed to get config: %s\n", aom_codec_err_to_string(res));
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Change the default timebase to a high enough value so that the
|
|
|
|
* encoder will always create strictly increasing timestamps.
|
|
|
|
*/
|
|
|
|
stream->config.cfg.g_timebase.den = 1000;
|
2012-02-14 04:52:18 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Never use the library's default resolution, require it be parsed
|
|
|
|
* from the file or set on the command line.
|
|
|
|
*/
|
|
|
|
stream->config.cfg.g_w = 0;
|
|
|
|
stream->config.cfg.g_h = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Initialize remaining stream parameters */
|
|
|
|
stream->config.write_webm = 1;
|
2014-03-14 19:10:35 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2014-05-11 04:44:12 +04:00
|
|
|
stream->config.stereo_fmt = STEREO_FORMAT_MONO;
|
2016-04-25 23:28:24 +03:00
|
|
|
stream->webm_ctx.last_pts_ns = -1;
|
|
|
|
stream->webm_ctx.writer = NULL;
|
|
|
|
stream->webm_ctx.segment = NULL;
|
2014-03-14 19:10:35 +04:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Allows removal of the application version from the EBML tags */
|
2016-04-25 23:28:24 +03:00
|
|
|
stream->webm_ctx.debug = global->debug;
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Output files must be specified for each stream */
|
|
|
|
stream->config.out_fn = NULL;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->next = NULL;
|
|
|
|
return stream;
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static int parse_stream_params(struct AvxEncoderConfig *global,
|
2016-08-09 05:03:30 +03:00
|
|
|
struct stream_state *stream, char **argv) {
|
|
|
|
char **argi, **argj;
|
|
|
|
struct arg arg;
|
2012-11-07 00:02:42 +04:00
|
|
|
static const arg_def_t **ctrl_args = no_args;
|
2016-08-09 05:03:30 +03:00
|
|
|
static const int *ctrl_args_map = NULL;
|
|
|
|
struct stream_config *config = &stream->config;
|
|
|
|
int eos_mark_found = 0;
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-09 05:03:30 +03:00
|
|
|
int test_16bit_internal = 0;
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2014-02-12 09:12:23 +04:00
|
|
|
// Handle codec specific options
|
2012-11-09 05:09:30 +04:00
|
|
|
if (0) {
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AV1_ENCODER
|
|
|
|
} else if (strcmp(global->codec->name, "av1") == 0) {
|
|
|
|
// TODO(jingning): Reuse AV1 specific encoder configuration parameters.
|
|
|
|
// Consider to expand this set for AV1 encoder control.
|
|
|
|
ctrl_args = av1_args;
|
|
|
|
ctrl_args_map = av1_arg_ctrl_map;
|
2012-11-09 05:09:30 +04:00
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
|
|
|
|
arg.argv_step = 1;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Once we've found an end-of-stream marker (--) we want to continue
|
|
|
|
* shifting arguments but not consuming them.
|
|
|
|
*/
|
|
|
|
if (eos_mark_found) {
|
|
|
|
argj++;
|
|
|
|
continue;
|
|
|
|
} else if (!strcmp(*argj, "--")) {
|
|
|
|
eos_mark_found = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2015-02-14 01:51:32 +03:00
|
|
|
if (arg_match(&arg, &outputfile, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->out_fn = arg.val;
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &fpf_name, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->stats_fn = arg.val;
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
|
|
|
} else if (arg_match(&arg, &fpmbf_name, argi)) {
|
|
|
|
config->fpmb_stats_fn = arg.val;
|
2015-01-31 02:05:14 +03:00
|
|
|
#endif
|
|
|
|
} else if (arg_match(&arg, &use_webm, argi)) {
|
|
|
|
#if CONFIG_WEBM_IO
|
|
|
|
config->write_webm = 1;
|
|
|
|
#else
|
|
|
|
die("Error: --webm specified but webm is disabled.");
|
2014-07-14 20:13:38 +04:00
|
|
|
#endif
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &use_ivf, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->write_webm = 0;
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &threads, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_threads = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &profile, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_profile = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &width, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_w = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &height, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_h = arg_parse_uint(&arg);
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2014-08-26 23:35:15 +04:00
|
|
|
} else if (arg_match(&arg, &bitdeptharg, argi)) {
|
|
|
|
config->cfg.g_bit_depth = arg_parse_enum_or_int(&arg);
|
|
|
|
} else if (arg_match(&arg, &inbitdeptharg, argi)) {
|
|
|
|
config->cfg.g_input_bit_depth = arg_parse_uint(&arg);
|
|
|
|
#endif
|
2014-05-11 04:44:12 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &stereo_mode, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->stereo_fmt = arg_parse_enum_or_int(&arg);
|
2014-05-11 04:44:12 +04:00
|
|
|
#endif
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &timebase, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_timebase = arg_parse_rational(&arg);
|
|
|
|
validate_positive_rational(arg.name, &config->cfg.g_timebase);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &error_resilient, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_error_resilient = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &lag_in_frames, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.g_lag_in_frames = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &dropframe_thresh, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_dropframe_thresh = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &resize_allowed, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_resize_allowed = arg_parse_uint(&arg);
|
2014-04-10 01:51:29 +04:00
|
|
|
} else if (arg_match(&arg, &resize_width, argi)) {
|
|
|
|
config->cfg.rc_scaled_width = arg_parse_uint(&arg);
|
|
|
|
} else if (arg_match(&arg, &resize_height, argi)) {
|
|
|
|
config->cfg.rc_scaled_height = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &resize_up_thresh, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_resize_up_thresh = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &resize_down_thresh, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_resize_down_thresh = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &end_usage, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &target_bitrate, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_target_bitrate = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &min_quantizer, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_min_quantizer = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &max_quantizer, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_max_quantizer = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &undershoot_pct, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_undershoot_pct = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &overshoot_pct, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_overshoot_pct = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &buf_sz, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_buf_sz = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &buf_initial_sz, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_buf_initial_sz = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &buf_optimal_sz, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_buf_optimal_sz = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &bias_pct, argi)) {
|
2016-08-09 05:03:30 +03:00
|
|
|
config->cfg.rc_2pass_vbr_bias_pct = arg_parse_uint(&arg);
|
2012-11-07 00:02:42 +04:00
|
|
|
if (global->passes < 2)
|
|
|
|
warn("option %s ignored in one-pass mode.\n", arg.name);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else if (arg_match(&arg, &minsection_pct, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_2pass_vbr_minsection_pct = arg_parse_uint(&arg);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (global->passes < 2)
|
|
|
|
warn("option %s ignored in one-pass mode.\n", arg.name);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else if (arg_match(&arg, &maxsection_pct, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.rc_2pass_vbr_maxsection_pct = arg_parse_uint(&arg);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (global->passes < 2)
|
|
|
|
warn("option %s ignored in one-pass mode.\n", arg.name);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &kf_min_dist, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.kf_min_dist = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &kf_max_dist, argi)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->cfg.kf_max_dist = arg_parse_uint(&arg);
|
2014-02-14 03:34:42 +04:00
|
|
|
} else if (arg_match(&arg, &kf_disabled, argi)) {
|
2016-08-31 00:01:10 +03:00
|
|
|
config->cfg.kf_mode = AOM_KF_DISABLED;
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2014-08-26 23:35:15 +04:00
|
|
|
} else if (arg_match(&arg, &test16bitinternalarg, argi)) {
|
2016-08-31 00:01:10 +03:00
|
|
|
if (strcmp(global->codec->name, "av1") == 0 ||
|
|
|
|
strcmp(global->codec->name, "av1") == 0) {
|
2014-08-26 23:35:15 +04:00
|
|
|
test_16bit_internal = 1;
|
|
|
|
}
|
|
|
|
#endif
|
2014-02-14 03:34:42 +04:00
|
|
|
} else {
|
2012-11-07 00:02:42 +04:00
|
|
|
int i, match = 0;
|
|
|
|
for (i = 0; ctrl_args[i]; i++) {
|
|
|
|
if (arg_match(&arg, ctrl_args[i], argi)) {
|
|
|
|
int j;
|
|
|
|
match = 1;
|
|
|
|
|
|
|
|
/* Point either to the next free element or the first
|
|
|
|
* instance of this control.
|
|
|
|
*/
|
|
|
|
for (j = 0; j < config->arg_ctrl_cnt; j++)
|
2014-08-21 18:18:07 +04:00
|
|
|
if (ctrl_args_map != NULL &&
|
|
|
|
config->arg_ctrls[j][0] == ctrl_args_map[i])
|
2012-11-07 00:02:42 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Update/insert */
|
2014-07-12 03:27:21 +04:00
|
|
|
assert(j < (int)ARG_CTRL_CNT_MAX);
|
2014-08-21 18:18:07 +04:00
|
|
|
if (ctrl_args_map != NULL && j < (int)ARG_CTRL_CNT_MAX) {
|
2012-11-07 00:02:42 +04:00
|
|
|
config->arg_ctrls[j][0] = ctrl_args_map[i];
|
|
|
|
config->arg_ctrls[j][1] = arg_parse_enum_or_int(&arg);
|
2016-08-09 05:03:30 +03:00
|
|
|
if (j == config->arg_ctrl_cnt) config->arg_ctrl_cnt++;
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!match) argj++;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2017-05-12 15:27:30 +03:00
|
|
|
config->use_16bit_internal =
|
|
|
|
test_16bit_internal || (config->cfg.g_profile > 1) || !CONFIG_LOWBITDEPTH;
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
return eos_mark_found;
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
#define FOREACH_STREAM(func) \
|
|
|
|
do { \
|
|
|
|
struct stream_state *stream; \
|
2013-11-26 00:05:19 +04:00
|
|
|
for (stream = streams; stream; stream = stream->next) { \
|
2016-08-09 05:03:30 +03:00
|
|
|
func; \
|
|
|
|
} \
|
2013-11-21 05:18:28 +04:00
|
|
|
} while (0)
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2014-02-21 22:52:09 +04:00
|
|
|
static void validate_stream_config(const struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
const struct AvxEncoderConfig *global) {
|
2014-02-21 22:52:09 +04:00
|
|
|
const struct stream_state *streami;
|
2014-12-16 23:22:10 +03:00
|
|
|
(void)global;
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
if (!stream->config.cfg.g_w || !stream->config.cfg.g_h)
|
2016-08-09 05:03:30 +03:00
|
|
|
fatal(
|
|
|
|
"Stream %d: Specify stream dimensions with --width (-w) "
|
|
|
|
" and --height (-h)",
|
|
|
|
stream->index);
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2014-08-26 23:35:15 +04:00
|
|
|
// Check that the codec bit depth is greater than the input bit depth.
|
|
|
|
if (stream->config.cfg.g_input_bit_depth >
|
2014-09-04 04:02:31 +04:00
|
|
|
(unsigned int)stream->config.cfg.g_bit_depth) {
|
2014-08-26 23:35:15 +04:00
|
|
|
fatal("Stream %d: codec bit depth (%d) less than input bit depth (%d)",
|
|
|
|
stream->index, (int)stream->config.cfg.g_bit_depth,
|
|
|
|
stream->config.cfg.g_input_bit_depth);
|
|
|
|
}
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
for (streami = stream; streami; streami = streami->next) {
|
|
|
|
/* All streams require output files */
|
|
|
|
if (!streami->config.out_fn)
|
|
|
|
fatal("Stream %d: Output file is required (specify with -o)",
|
|
|
|
streami->index);
|
|
|
|
|
|
|
|
/* Check for two streams outputting to the same file */
|
|
|
|
if (streami != stream) {
|
|
|
|
const char *a = stream->config.out_fn;
|
|
|
|
const char *b = streami->config.out_fn;
|
|
|
|
if (!strcmp(a, b) && strcmp(a, "/dev/null") && strcmp(a, ":nul"))
|
|
|
|
fatal("Stream %d: duplicate output file (from stream %d)",
|
|
|
|
streami->index, stream->index);
|
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Check for two streams sharing a stats file. */
|
|
|
|
if (streami != stream) {
|
|
|
|
const char *a = stream->config.stats_fn;
|
|
|
|
const char *b = streami->config.stats_fn;
|
|
|
|
if (a && b && !strcmp(a, b))
|
|
|
|
fatal("Stream %d: duplicate stats file (from stream %d)",
|
|
|
|
streami->index, stream->index);
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2014-07-14 20:13:38 +04:00
|
|
|
|
|
|
|
#if CONFIG_FP_MB_STATS
|
|
|
|
/* Check for two streams sharing a mb stats file. */
|
|
|
|
if (streami != stream) {
|
|
|
|
const char *a = stream->config.fpmb_stats_fn;
|
|
|
|
const char *b = streami->config.fpmb_stats_fn;
|
|
|
|
if (a && b && !strcmp(a, b))
|
|
|
|
fatal("Stream %d: duplicate mb stats file (from stream %d)",
|
|
|
|
streami->index, stream->index);
|
|
|
|
}
|
|
|
|
#endif
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static void set_stream_dimensions(struct stream_state *stream, unsigned int w,
|
2012-11-07 00:02:42 +04:00
|
|
|
unsigned int h) {
|
2012-03-02 00:50:40 +04:00
|
|
|
if (!stream->config.cfg.g_w) {
|
|
|
|
if (!stream->config.cfg.g_h)
|
|
|
|
stream->config.cfg.g_w = w;
|
|
|
|
else
|
|
|
|
stream->config.cfg.g_w = w * stream->config.cfg.g_h / h;
|
|
|
|
}
|
|
|
|
if (!stream->config.cfg.g_h) {
|
|
|
|
stream->config.cfg.g_h = h * stream->config.cfg.g_w / w;
|
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static const char *file_type_to_string(enum VideoFileType t) {
|
2014-05-16 23:29:36 +04:00
|
|
|
switch (t) {
|
|
|
|
case FILE_TYPE_RAW: return "RAW";
|
|
|
|
case FILE_TYPE_Y4M: return "Y4M";
|
|
|
|
default: return "Other";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
static const char *image_format_to_string(aom_img_fmt_t f) {
|
2014-05-16 23:29:36 +04:00
|
|
|
switch (f) {
|
2016-08-31 00:01:10 +03:00
|
|
|
case AOM_IMG_FMT_I420: return "I420";
|
|
|
|
case AOM_IMG_FMT_I422: return "I422";
|
|
|
|
case AOM_IMG_FMT_I444: return "I444";
|
|
|
|
case AOM_IMG_FMT_I440: return "I440";
|
|
|
|
case AOM_IMG_FMT_YV12: return "YV12";
|
|
|
|
case AOM_IMG_FMT_I42016: return "I42016";
|
|
|
|
case AOM_IMG_FMT_I42216: return "I42216";
|
|
|
|
case AOM_IMG_FMT_I44416: return "I44416";
|
|
|
|
case AOM_IMG_FMT_I44016: return "I44016";
|
2014-05-16 23:29:36 +04:00
|
|
|
default: return "Other";
|
|
|
|
}
|
|
|
|
}
|
2012-01-06 01:05:05 +04:00
|
|
|
|
2013-11-22 04:46:40 +04:00
|
|
|
static void show_stream_config(struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxEncoderConfig *global,
|
|
|
|
struct AvxInputContext *input) {
|
2012-02-16 00:39:38 +04:00
|
|
|
#define SHOW(field) \
|
2012-11-07 00:02:42 +04:00
|
|
|
fprintf(stderr, " %-28s = %d\n", #field, stream->config.cfg.field)
|
|
|
|
|
|
|
|
if (stream->index == 0) {
|
|
|
|
fprintf(stderr, "Codec: %s\n",
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_iface_name(global->codec->codec_interface()));
|
2014-05-16 23:29:36 +04:00
|
|
|
fprintf(stderr, "Source file: %s File Type: %s Format: %s\n",
|
2016-08-09 05:03:30 +03:00
|
|
|
input->filename, file_type_to_string(input->file_type),
|
2014-05-16 23:29:36 +04:00
|
|
|
image_format_to_string(input->fmt));
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream->next || stream->index)
|
|
|
|
fprintf(stderr, "\nStream Index: %d\n", stream->index);
|
|
|
|
fprintf(stderr, "Destination file: %s\n", stream->config.out_fn);
|
|
|
|
fprintf(stderr, "Encoder parameters:\n");
|
|
|
|
|
|
|
|
SHOW(g_usage);
|
|
|
|
SHOW(g_threads);
|
|
|
|
SHOW(g_profile);
|
|
|
|
SHOW(g_w);
|
|
|
|
SHOW(g_h);
|
2014-08-26 23:35:15 +04:00
|
|
|
SHOW(g_bit_depth);
|
|
|
|
SHOW(g_input_bit_depth);
|
2012-11-07 00:02:42 +04:00
|
|
|
SHOW(g_timebase.num);
|
|
|
|
SHOW(g_timebase.den);
|
|
|
|
SHOW(g_error_resilient);
|
|
|
|
SHOW(g_pass);
|
|
|
|
SHOW(g_lag_in_frames);
|
|
|
|
SHOW(rc_dropframe_thresh);
|
|
|
|
SHOW(rc_resize_allowed);
|
2014-04-10 01:51:29 +04:00
|
|
|
SHOW(rc_scaled_width);
|
|
|
|
SHOW(rc_scaled_height);
|
2012-11-07 00:02:42 +04:00
|
|
|
SHOW(rc_resize_up_thresh);
|
|
|
|
SHOW(rc_resize_down_thresh);
|
|
|
|
SHOW(rc_end_usage);
|
|
|
|
SHOW(rc_target_bitrate);
|
|
|
|
SHOW(rc_min_quantizer);
|
|
|
|
SHOW(rc_max_quantizer);
|
|
|
|
SHOW(rc_undershoot_pct);
|
|
|
|
SHOW(rc_overshoot_pct);
|
|
|
|
SHOW(rc_buf_sz);
|
|
|
|
SHOW(rc_buf_initial_sz);
|
|
|
|
SHOW(rc_buf_optimal_sz);
|
|
|
|
SHOW(rc_2pass_vbr_bias_pct);
|
|
|
|
SHOW(rc_2pass_vbr_minsection_pct);
|
|
|
|
SHOW(rc_2pass_vbr_maxsection_pct);
|
|
|
|
SHOW(kf_mode);
|
|
|
|
SHOW(kf_min_dist);
|
|
|
|
SHOW(kf_max_dist);
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void open_output_file(struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxEncoderConfig *global,
|
|
|
|
const struct AvxRational *pixel_aspect_ratio) {
|
2012-11-07 00:02:42 +04:00
|
|
|
const char *fn = stream->config.out_fn;
|
2016-08-31 00:01:10 +03:00
|
|
|
const struct aom_codec_enc_cfg *const cfg = &stream->config.cfg;
|
2014-01-14 03:21:48 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
if (cfg->g_pass == AOM_RC_FIRST_PASS) return;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->file = strcmp(fn, "-") ? fopen(fn, "wb") : set_binary_mode(stdout);
|
2010-10-22 22:48:21 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!stream->file) fatal("Failed to open output file");
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream->config.write_webm && fseek(stream->file, 0, SEEK_CUR))
|
|
|
|
fatal("WebM output to pipes not supported.");
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-03-14 19:10:35 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream->config.write_webm) {
|
2016-04-25 23:28:24 +03:00
|
|
|
stream->webm_ctx.stream = stream->file;
|
2016-07-14 22:33:48 +03:00
|
|
|
write_webm_file_header(&stream->webm_ctx, cfg, stream->config.stereo_fmt,
|
|
|
|
global->codec->fourcc, pixel_aspect_ratio);
|
2014-03-14 19:10:35 +04:00
|
|
|
}
|
2016-02-12 05:53:50 +03:00
|
|
|
#else
|
|
|
|
(void)pixel_aspect_ratio;
|
2014-03-14 19:10:35 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!stream->config.write_webm) {
|
2014-01-14 03:21:48 +04:00
|
|
|
ivf_write_file_header(stream->file, cfg, global->codec->fourcc, 0);
|
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void close_output_file(struct stream_state *stream,
|
2014-01-14 03:21:48 +04:00
|
|
|
unsigned int fourcc) {
|
2016-08-31 00:01:10 +03:00
|
|
|
const struct aom_codec_enc_cfg *const cfg = &stream->config.cfg;
|
2014-01-14 03:21:48 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
if (cfg->g_pass == AOM_RC_FIRST_PASS) return;
|
2014-01-14 03:21:48 +04:00
|
|
|
|
2014-03-14 19:10:35 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream->config.write_webm) {
|
2016-04-25 23:28:24 +03:00
|
|
|
write_webm_file_footer(&stream->webm_ctx);
|
2014-03-14 19:10:35 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!stream->config.write_webm) {
|
2012-11-07 00:02:42 +04:00
|
|
|
if (!fseek(stream->file, 0, SEEK_SET))
|
2016-08-09 05:03:30 +03:00
|
|
|
ivf_write_file_header(stream->file, &stream->config.cfg, fourcc,
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->frames_out);
|
|
|
|
}
|
2010-06-11 01:10:12 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
fclose(stream->file);
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2013-11-22 04:46:40 +04:00
|
|
|
static void setup_pass(struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxEncoderConfig *global, int pass) {
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream->config.stats_fn) {
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!stats_open_file(&stream->stats, stream->config.stats_fn, pass))
|
2012-11-07 00:02:42 +04:00
|
|
|
fatal("Failed to open statistics store");
|
|
|
|
} else {
|
|
|
|
if (!stats_open_mem(&stream->stats, pass))
|
|
|
|
fatal("Failed to open statistics store");
|
|
|
|
}
|
|
|
|
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
|
|
|
if (stream->config.fpmb_stats_fn) {
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!stats_open_file(&stream->fpmb_stats, stream->config.fpmb_stats_fn,
|
|
|
|
pass))
|
2014-07-14 20:13:38 +04:00
|
|
|
fatal("Failed to open mb statistics store");
|
|
|
|
} else {
|
|
|
|
if (!stats_open_mem(&stream->fpmb_stats, pass))
|
|
|
|
fatal("Failed to open mb statistics store");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->config.cfg.g_pass = global->passes == 2
|
2016-08-31 00:01:10 +03:00
|
|
|
? pass ? AOM_RC_LAST_PASS : AOM_RC_FIRST_PASS
|
|
|
|
: AOM_RC_ONE_PASS;
|
2014-07-14 20:13:38 +04:00
|
|
|
if (pass) {
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->config.cfg.rc_twopass_stats_in = stats_get(&stream->stats);
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
|
|
|
stream->config.cfg.rc_firstpass_mb_stats_in =
|
|
|
|
stats_get(&stream->fpmb_stats);
|
|
|
|
#endif
|
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
stream->cx_time = 0;
|
|
|
|
stream->nbytes = 0;
|
|
|
|
stream->frames_out = 0;
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2013-11-22 04:46:40 +04:00
|
|
|
static void initialize_encoder(struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxEncoderConfig *global) {
|
2012-11-07 00:02:42 +04:00
|
|
|
int i;
|
|
|
|
int flags = 0;
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
flags |= global->show_psnr ? AOM_CODEC_USE_PSNR : 0;
|
|
|
|
flags |= global->out_part ? AOM_CODEC_USE_OUTPUT_PARTITION : 0;
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
flags |= stream->config.use_16bit_internal ? AOM_CODEC_USE_HIGHBITDEPTH : 0;
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
/* Construct Encoder Context */
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_enc_init(&stream->encoder, global->codec->codec_interface(),
|
2012-11-07 00:02:42 +04:00
|
|
|
&stream->config.cfg, flags);
|
|
|
|
ctx_exit_on_error(&stream->encoder, "Failed to initialize encoder");
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
/* Note that we bypass the aom_codec_control wrapper macro because
|
2012-11-07 00:02:42 +04:00
|
|
|
* we're being clever to store the control IDs in an array. Real
|
|
|
|
* applications will want to make use of the enumerations directly
|
|
|
|
*/
|
|
|
|
for (i = 0; i < stream->config.arg_ctrl_cnt; i++) {
|
|
|
|
int ctrl = stream->config.arg_ctrls[i][0];
|
|
|
|
int value = stream->config.arg_ctrls[i][1];
|
2016-08-31 00:01:10 +03:00
|
|
|
if (aom_codec_control_(&stream->encoder, ctrl, value))
|
2016-08-09 05:03:30 +03:00
|
|
|
fprintf(stderr, "Error: Tried to set control %d = %d\n", ctrl, value);
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
ctx_exit_on_error(&stream->encoder, "Failed to control codec");
|
|
|
|
}
|
|
|
|
|
2017-05-17 01:01:54 +03:00
|
|
|
#if CONFIG_AV1_DECODER
|
2013-02-16 04:31:02 +04:00
|
|
|
if (global->test_decode != TEST_DECODE_OFF) {
|
2016-08-31 00:01:10 +03:00
|
|
|
const AvxInterface *decoder = get_aom_decoder_by_name(global->codec->name);
|
|
|
|
aom_codec_dec_cfg_t cfg = { 0, 0, 0 };
|
|
|
|
aom_codec_dec_init(&stream->decoder, decoder->codec_interface(), &cfg, 0);
|
2016-05-06 02:42:57 +03:00
|
|
|
|
2017-05-17 01:01:54 +03:00
|
|
|
#if CONFIG_EXT_TILE
|
2016-08-31 00:01:10 +03:00
|
|
|
if (strcmp(global->codec->name, "av1") == 0) {
|
|
|
|
aom_codec_control(&stream->decoder, AV1_SET_DECODE_TILE_ROW, -1);
|
2016-05-06 02:42:57 +03:00
|
|
|
ctx_exit_on_error(&stream->decoder, "Failed to set decode_tile_row");
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_control(&stream->decoder, AV1_SET_DECODE_TILE_COL, -1);
|
2016-05-06 02:42:57 +03:00
|
|
|
ctx_exit_on_error(&stream->decoder, "Failed to set decode_tile_col");
|
|
|
|
}
|
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2012-12-23 19:20:10 +04:00
|
|
|
#endif
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-11-22 04:46:40 +04:00
|
|
|
static void encode_frame(struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxEncoderConfig *global, struct aom_image *img,
|
2013-11-22 04:46:40 +04:00
|
|
|
unsigned int frames_in) {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_pts_t frame_start, next_frame_start;
|
|
|
|
struct aom_codec_enc_cfg *cfg = &stream->config.cfg;
|
|
|
|
struct aom_usec_timer timer;
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
frame_start =
|
|
|
|
(cfg->g_timebase.den * (int64_t)(frames_in - 1) * global->framerate.den) /
|
|
|
|
cfg->g_timebase.num / global->framerate.num;
|
|
|
|
next_frame_start =
|
|
|
|
(cfg->g_timebase.den * (int64_t)(frames_in)*global->framerate.den) /
|
|
|
|
cfg->g_timebase.num / global->framerate.num;
|
2012-03-02 00:50:40 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
/* Scale if necessary */
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2014-08-26 23:35:15 +04:00
|
|
|
if (img) {
|
2016-08-31 00:01:10 +03:00
|
|
|
if ((img->fmt & AOM_IMG_FMT_HIGHBITDEPTH) &&
|
2014-08-26 23:35:15 +04:00
|
|
|
(img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
|
2016-08-31 00:01:10 +03:00
|
|
|
if (img->fmt != AOM_IMG_FMT_I42016) {
|
2014-08-26 23:35:15 +04:00
|
|
|
fprintf(stderr, "%s can only scale 4:2:0 inputs\n", exec_name);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#if CONFIG_LIBYUV
|
|
|
|
if (!stream->img) {
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->img =
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_alloc(NULL, AOM_IMG_FMT_I42016, cfg->g_w, cfg->g_h, 16);
|
2014-08-26 23:35:15 +04:00
|
|
|
}
|
2016-08-09 05:03:30 +03:00
|
|
|
I420Scale_16(
|
2016-08-31 00:01:10 +03:00
|
|
|
(uint16 *)img->planes[AOM_PLANE_Y], img->stride[AOM_PLANE_Y] / 2,
|
|
|
|
(uint16 *)img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U] / 2,
|
|
|
|
(uint16 *)img->planes[AOM_PLANE_V], img->stride[AOM_PLANE_V] / 2,
|
|
|
|
img->d_w, img->d_h, (uint16 *)stream->img->planes[AOM_PLANE_Y],
|
|
|
|
stream->img->stride[AOM_PLANE_Y] / 2,
|
|
|
|
(uint16 *)stream->img->planes[AOM_PLANE_U],
|
|
|
|
stream->img->stride[AOM_PLANE_U] / 2,
|
|
|
|
(uint16 *)stream->img->planes[AOM_PLANE_V],
|
|
|
|
stream->img->stride[AOM_PLANE_V] / 2, stream->img->d_w,
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->img->d_h, kFilterBox);
|
2014-08-26 23:35:15 +04:00
|
|
|
img = stream->img;
|
|
|
|
#else
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->encoder.err = 1;
|
|
|
|
ctx_exit_on_error(&stream->encoder,
|
|
|
|
"Stream %d: Failed to encode frame.\n"
|
|
|
|
"Scaling disabled in this configuration. \n"
|
|
|
|
"To enable, configure with --enable-libyuv\n",
|
|
|
|
stream->index);
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2012-03-02 00:50:40 +04:00
|
|
|
if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
|
2016-08-31 00:01:10 +03:00
|
|
|
if (img->fmt != AOM_IMG_FMT_I420 && img->fmt != AOM_IMG_FMT_YV12) {
|
2014-05-17 05:49:04 +04:00
|
|
|
fprintf(stderr, "%s can only scale 4:2:0 8bpp inputs\n", exec_name);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2014-05-17 05:52:01 +04:00
|
|
|
#if CONFIG_LIBYUV
|
2012-03-02 00:50:40 +04:00
|
|
|
if (!stream->img)
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->img =
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_alloc(NULL, AOM_IMG_FMT_I420, cfg->g_w, cfg->g_h, 16);
|
2016-08-09 05:03:30 +03:00
|
|
|
I420Scale(
|
2016-08-31 00:01:10 +03:00
|
|
|
img->planes[AOM_PLANE_Y], img->stride[AOM_PLANE_Y],
|
|
|
|
img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U],
|
|
|
|
img->planes[AOM_PLANE_V], img->stride[AOM_PLANE_V], img->d_w, img->d_h,
|
|
|
|
stream->img->planes[AOM_PLANE_Y], stream->img->stride[AOM_PLANE_Y],
|
|
|
|
stream->img->planes[AOM_PLANE_U], stream->img->stride[AOM_PLANE_U],
|
|
|
|
stream->img->planes[AOM_PLANE_V], stream->img->stride[AOM_PLANE_V],
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->img->d_w, stream->img->d_h, kFilterBox);
|
2012-03-02 00:50:40 +04:00
|
|
|
img = stream->img;
|
2014-05-17 05:52:01 +04:00
|
|
|
#else
|
|
|
|
stream->encoder.err = 1;
|
|
|
|
ctx_exit_on_error(&stream->encoder,
|
|
|
|
"Stream %d: Failed to encode frame.\n"
|
|
|
|
"Scaling disabled in this configuration. \n"
|
|
|
|
"To enable, configure with --enable-libyuv\n",
|
|
|
|
stream->index);
|
|
|
|
#endif
|
2012-03-02 00:50:40 +04:00
|
|
|
}
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_usec_timer_start(&timer);
|
|
|
|
aom_codec_encode(&stream->encoder, img, frame_start,
|
2016-08-09 05:03:30 +03:00
|
|
|
(unsigned long)(next_frame_start - frame_start), 0,
|
|
|
|
global->deadline);
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_usec_timer_mark(&timer);
|
|
|
|
stream->cx_time += aom_usec_timer_elapsed(&timer);
|
2012-11-07 00:02:42 +04:00
|
|
|
ctx_exit_on_error(&stream->encoder, "Stream %d: Failed to encode frame",
|
|
|
|
stream->index);
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
static void update_quantizer_histogram(struct stream_state *stream) {
|
2016-08-31 00:01:10 +03:00
|
|
|
if (stream->config.cfg.g_pass != AOM_RC_FIRST_PASS) {
|
2012-11-07 00:02:42 +04:00
|
|
|
int q;
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_control(&stream->encoder, AOME_GET_LAST_QUANTIZER_64, &q);
|
2012-11-07 00:02:42 +04:00
|
|
|
ctx_exit_on_error(&stream->encoder, "Failed to read quantizer");
|
|
|
|
stream->counts[q]++;
|
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2013-11-22 04:46:40 +04:00
|
|
|
static void get_cx_data(struct stream_state *stream,
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxEncoderConfig *global, int *got_data) {
|
|
|
|
const aom_codec_cx_pkt_t *pkt;
|
|
|
|
const struct aom_codec_enc_cfg *cfg = &stream->config.cfg;
|
|
|
|
aom_codec_iter_t iter = NULL;
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2012-11-09 21:07:50 +04:00
|
|
|
*got_data = 0;
|
2016-08-31 00:01:10 +03:00
|
|
|
while ((pkt = aom_codec_get_cx_data(&stream->encoder, &iter))) {
|
2012-11-07 00:02:42 +04:00
|
|
|
static size_t fsize = 0;
|
2017-01-15 01:18:01 +03:00
|
|
|
static FileOffset ivf_header_pos = 0;
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
switch (pkt->kind) {
|
2016-08-31 00:01:10 +03:00
|
|
|
case AOM_CODEC_CX_FRAME_PKT:
|
|
|
|
if (!(pkt->data.frame.flags & AOM_FRAME_IS_FRAGMENT)) {
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->frames_out++;
|
2010-11-03 20:58:40 +03:00
|
|
|
}
|
2013-02-13 21:03:21 +04:00
|
|
|
if (!global->quiet)
|
|
|
|
fprintf(stderr, " %6luF", (unsigned long)pkt->data.frame.sz);
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2014-01-30 00:28:29 +04:00
|
|
|
update_rate_histogram(stream->rate_hist, cfg, pkt);
|
2014-03-14 19:10:35 +04:00
|
|
|
#if CONFIG_WEBM_IO
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream->config.write_webm) {
|
2016-04-25 23:28:24 +03:00
|
|
|
write_webm_block(&stream->webm_ctx, cfg, pkt);
|
2014-03-14 19:10:35 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (!stream->config.write_webm) {
|
2012-11-07 00:02:42 +04:00
|
|
|
if (pkt->data.frame.partition_id <= 0) {
|
|
|
|
ivf_header_pos = ftello(stream->file);
|
|
|
|
fsize = pkt->data.frame.sz;
|
|
|
|
|
2014-01-30 05:57:21 +04:00
|
|
|
ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize);
|
2012-11-07 00:02:42 +04:00
|
|
|
} else {
|
|
|
|
fsize += pkt->data.frame.sz;
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
if (!(pkt->data.frame.flags & AOM_FRAME_IS_FRAGMENT)) {
|
2017-01-15 01:18:01 +03:00
|
|
|
const FileOffset currpos = ftello(stream->file);
|
2012-11-07 00:02:42 +04:00
|
|
|
fseeko(stream->file, ivf_header_pos, SEEK_SET);
|
2013-11-15 00:37:42 +04:00
|
|
|
ivf_write_frame_size(stream->file, fsize);
|
2012-11-07 00:02:42 +04:00
|
|
|
fseeko(stream->file, currpos, SEEK_SET);
|
|
|
|
}
|
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
(void)fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz,
|
|
|
|
stream->file);
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
|
|
|
stream->nbytes += pkt->data.raw.sz;
|
2012-02-09 14:37:03 +04:00
|
|
|
|
2012-02-16 00:39:38 +04:00
|
|
|
*got_data = 1;
|
2017-05-17 01:01:54 +03:00
|
|
|
#if CONFIG_AV1_DECODER
|
2013-02-16 04:31:02 +04:00
|
|
|
if (global->test_decode != TEST_DECODE_OFF && !stream->mismatch_seen) {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_decode(&stream->decoder, pkt->data.frame.buf,
|
2014-02-11 02:55:25 +04:00
|
|
|
(unsigned int)pkt->data.frame.sz, NULL, 0);
|
2013-02-16 04:31:02 +04:00
|
|
|
if (stream->decoder.err) {
|
|
|
|
warn_or_exit_on_error(&stream->decoder,
|
|
|
|
global->test_decode == TEST_DECODE_FATAL,
|
|
|
|
"Failed to decode frame %d in stream %d",
|
|
|
|
stream->frames_out + 1, stream->index);
|
|
|
|
stream->mismatch_seen = stream->frames_out + 1;
|
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2012-12-23 19:20:10 +04:00
|
|
|
#endif
|
2012-11-07 00:02:42 +04:00
|
|
|
break;
|
2016-08-31 00:01:10 +03:00
|
|
|
case AOM_CODEC_STATS_PKT:
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->frames_out++;
|
2016-08-09 05:03:30 +03:00
|
|
|
stats_write(&stream->stats, pkt->data.twopass_stats.buf,
|
2012-11-07 00:02:42 +04:00
|
|
|
pkt->data.twopass_stats.sz);
|
|
|
|
stream->nbytes += pkt->data.raw.sz;
|
|
|
|
break;
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
2016-08-31 00:01:10 +03:00
|
|
|
case AOM_CODEC_FPMB_STATS_PKT:
|
2016-08-09 05:03:30 +03:00
|
|
|
stats_write(&stream->fpmb_stats, pkt->data.firstpass_mb_stats.buf,
|
2014-07-14 20:13:38 +04:00
|
|
|
pkt->data.firstpass_mb_stats.sz);
|
|
|
|
stream->nbytes += pkt->data.raw.sz;
|
|
|
|
break;
|
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
case AOM_CODEC_PSNR_PKT:
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
if (global->show_psnr) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
stream->psnr_sse_total += pkt->data.psnr.sse[0];
|
|
|
|
stream->psnr_samples_total += pkt->data.psnr.samples[0];
|
|
|
|
for (i = 0; i < 4; i++) {
|
2013-02-13 21:03:21 +04:00
|
|
|
if (!global->quiet)
|
|
|
|
fprintf(stderr, "%.3f ", pkt->data.psnr.psnr[i]);
|
2012-11-07 00:02:42 +04:00
|
|
|
stream->psnr_totals[i] += pkt->data.psnr.psnr[i];
|
|
|
|
}
|
|
|
|
stream->psnr_count++;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
break;
|
2016-08-09 05:03:30 +03:00
|
|
|
default: break;
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static void show_psnr(struct stream_state *stream, double peak) {
|
2012-11-07 00:02:42 +04:00
|
|
|
int i;
|
|
|
|
double ovpsnr;
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!stream->psnr_count) return;
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
fprintf(stderr, "Stream %d PSNR (Overall/Avg/Y/U/V)", stream->index);
|
2014-10-01 08:56:33 +04:00
|
|
|
ovpsnr = sse_to_psnr((double)stream->psnr_samples_total, peak,
|
2014-02-28 02:00:41 +04:00
|
|
|
(double)stream->psnr_sse_total);
|
2012-11-07 00:02:42 +04:00
|
|
|
fprintf(stderr, " %.3f", ovpsnr);
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
fprintf(stderr, " %.3f", stream->psnr_totals[i] / stream->psnr_count);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2013-02-13 09:17:56 +04:00
|
|
|
static float usec_to_fps(uint64_t usec, unsigned int frames) {
|
2012-11-07 00:02:42 +04:00
|
|
|
return (float)(usec > 0 ? frames * 1000000.0 / (float)usec : 0);
|
2012-02-16 00:39:38 +04:00
|
|
|
}
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
static void test_decode(struct stream_state *stream,
|
2013-03-13 23:15:43 +04:00
|
|
|
enum TestDecodeFatality fatal,
|
2016-08-31 00:01:10 +03:00
|
|
|
const AvxInterface *codec) {
|
|
|
|
aom_image_t enc_img, dec_img;
|
2013-03-13 23:15:43 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (stream->mismatch_seen) return;
|
2013-02-16 04:31:02 +04:00
|
|
|
|
2013-03-13 23:15:43 +04:00
|
|
|
/* Get the internal reference frame */
|
2014-02-12 09:12:23 +04:00
|
|
|
if (strcmp(codec->name, "vp8") == 0) {
|
2016-08-31 00:01:10 +03:00
|
|
|
struct aom_ref_frame ref_enc, ref_dec;
|
2016-10-18 00:53:33 +03:00
|
|
|
const unsigned int frame_width = (stream->config.cfg.g_w + 15) & ~15;
|
|
|
|
const unsigned int frame_height = (stream->config.cfg.g_h + 15) & ~15;
|
|
|
|
aom_img_alloc(&ref_enc.img, AOM_IMG_FMT_I420, frame_width, frame_height, 1);
|
2013-03-13 23:15:43 +04:00
|
|
|
enc_img = ref_enc.img;
|
2016-10-18 00:53:33 +03:00
|
|
|
aom_img_alloc(&ref_dec.img, AOM_IMG_FMT_I420, frame_width, frame_height, 1);
|
2013-03-13 23:15:43 +04:00
|
|
|
dec_img = ref_dec.img;
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
ref_enc.frame_type = AOM_LAST_FRAME;
|
|
|
|
ref_dec.frame_type = AOM_LAST_FRAME;
|
|
|
|
aom_codec_control(&stream->encoder, AOM_COPY_REFERENCE, &ref_enc);
|
|
|
|
aom_codec_control(&stream->decoder, AOM_COPY_REFERENCE, &ref_dec);
|
2013-03-13 23:15:43 +04:00
|
|
|
} else {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_codec_control(&stream->encoder, AV1_GET_NEW_FRAME_IMAGE, &enc_img);
|
|
|
|
aom_codec_control(&stream->decoder, AV1_GET_NEW_FRAME_IMAGE, &dec_img);
|
|
|
|
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
if ((enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) !=
|
|
|
|
(dec_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH)) {
|
|
|
|
if (enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) {
|
|
|
|
aom_image_t enc_hbd_img;
|
|
|
|
aom_img_alloc(&enc_hbd_img, enc_img.fmt - AOM_IMG_FMT_HIGHBITDEPTH,
|
2014-08-26 23:35:15 +04:00
|
|
|
enc_img.d_w, enc_img.d_h, 16);
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_truncate_16_to_8(&enc_hbd_img, &enc_img);
|
2016-05-20 02:46:10 +03:00
|
|
|
enc_img = enc_hbd_img;
|
2014-08-26 23:35:15 +04:00
|
|
|
}
|
2016-08-31 00:01:10 +03:00
|
|
|
if (dec_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) {
|
|
|
|
aom_image_t dec_hbd_img;
|
|
|
|
aom_img_alloc(&dec_hbd_img, dec_img.fmt - AOM_IMG_FMT_HIGHBITDEPTH,
|
2014-08-26 23:35:15 +04:00
|
|
|
dec_img.d_w, dec_img.d_h, 16);
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_truncate_16_to_8(&dec_hbd_img, &dec_img);
|
2016-05-20 02:46:10 +03:00
|
|
|
dec_img = dec_hbd_img;
|
2014-08-26 23:35:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2013-03-13 23:15:43 +04:00
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
ctx_exit_on_error(&stream->encoder, "Failed to get encoder reference frame");
|
|
|
|
ctx_exit_on_error(&stream->decoder, "Failed to get decoder reference frame");
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2017-04-21 03:56:27 +03:00
|
|
|
if (!aom_compare_img(&enc_img, &dec_img)) {
|
Implicit weighted prediction experiment
Adds an experiment to use a weighted prediction of two INTER
predictors, where the weight is one of (1/4, 3/4), (3/8, 5/8),
(1/2, 1/2), (5/8, 3/8) or (3/4, 1/4), and is chosen implicitly
based on consistency of the predictors to the already
reconstructed pixels to the top and left of the current macroblock
or superblock.
Currently the weighting is not applied to SPLITMV modes, which
default to the usual (1/2, 1/2) weighting. However the code is in
place controlled by a macro. The same weighting is used for Y and
UV components, where the weight is derived from analyzing the Y
component only.
Results (over compound inter-intra experiment)
derf: +0.18%
yt: +0.34%
hd: +0.49%
stdhd: +0.23%
The experiment suggests bigger benefit for explicitly signaled weights.
Change-Id: I5438539ff4485c5752874cd1eb078ff14bf5235a
2013-03-13 01:21:08 +04:00
|
|
|
int y[4], u[4], v[4];
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
if (enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) {
|
2017-04-21 03:56:27 +03:00
|
|
|
aom_find_mismatch_high(&enc_img, &dec_img, y, u, v);
|
2014-08-26 23:35:15 +04:00
|
|
|
} else {
|
2017-04-21 03:56:27 +03:00
|
|
|
aom_find_mismatch(&enc_img, &dec_img, y, u, v);
|
2014-08-26 23:35:15 +04:00
|
|
|
}
|
|
|
|
#else
|
2017-04-21 03:56:27 +03:00
|
|
|
aom_find_mismatch(&enc_img, &dec_img, y, u, v);
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2013-03-05 02:12:49 +04:00
|
|
|
stream->decoder.err = 1;
|
2013-02-16 04:31:02 +04:00
|
|
|
warn_or_exit_on_error(&stream->decoder, fatal == TEST_DECODE_FATAL,
|
Implicit weighted prediction experiment
Adds an experiment to use a weighted prediction of two INTER
predictors, where the weight is one of (1/4, 3/4), (3/8, 5/8),
(1/2, 1/2), (5/8, 3/8) or (3/4, 1/4), and is chosen implicitly
based on consistency of the predictors to the already
reconstructed pixels to the top and left of the current macroblock
or superblock.
Currently the weighting is not applied to SPLITMV modes, which
default to the usual (1/2, 1/2) weighting. However the code is in
place controlled by a macro. The same weighting is used for Y and
UV components, where the weight is derived from analyzing the Y
component only.
Results (over compound inter-intra experiment)
derf: +0.18%
yt: +0.34%
hd: +0.49%
stdhd: +0.23%
The experiment suggests bigger benefit for explicitly signaled weights.
Change-Id: I5438539ff4485c5752874cd1eb078ff14bf5235a
2013-03-13 01:21:08 +04:00
|
|
|
"Stream %d: Encode/decode mismatch on frame %d at"
|
|
|
|
" Y[%d, %d] {%d/%d},"
|
|
|
|
" U[%d, %d] {%d/%d},"
|
|
|
|
" V[%d, %d] {%d/%d}",
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->index, stream->frames_out, y[0], y[1], y[2],
|
|
|
|
y[3], u[0], u[1], u[2], u[3], v[0], v[1], v[2], v[3]);
|
2012-11-11 04:22:49 +04:00
|
|
|
stream->mismatch_seen = stream->frames_out;
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2013-03-13 23:15:43 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_free(&enc_img);
|
|
|
|
aom_img_free(&dec_img);
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2013-02-13 09:17:56 +04:00
|
|
|
static void print_time(const char *label, int64_t etl) {
|
2014-02-11 02:55:25 +04:00
|
|
|
int64_t hours;
|
|
|
|
int64_t mins;
|
|
|
|
int64_t secs;
|
2013-02-13 09:17:56 +04:00
|
|
|
|
|
|
|
if (etl >= 0) {
|
|
|
|
hours = etl / 3600;
|
|
|
|
etl -= hours * 3600;
|
|
|
|
mins = etl / 60;
|
|
|
|
etl -= mins * 60;
|
|
|
|
secs = etl;
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
fprintf(stderr, "[%3s %2" PRId64 ":%02" PRId64 ":%02" PRId64 "] ", label,
|
|
|
|
hours, mins, secs);
|
2013-02-13 09:17:56 +04:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "[%3s unknown] ", label);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
int main(int argc, const char **argv_) {
|
2013-11-21 05:18:28 +04:00
|
|
|
int pass;
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_image_t raw;
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_image_t raw_shift;
|
2014-08-26 23:35:15 +04:00
|
|
|
int allocated_raw_shift = 0;
|
|
|
|
int use_16bit_internal = 0;
|
|
|
|
int input_shift = 0;
|
|
|
|
#endif
|
2013-11-21 05:18:28 +04:00
|
|
|
int frame_avail, got_data;
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AvxInputContext input;
|
|
|
|
struct AvxEncoderConfig global;
|
2013-11-21 05:18:28 +04:00
|
|
|
struct stream_state *streams = NULL;
|
|
|
|
char **argv, **argi;
|
|
|
|
uint64_t cx_time = 0;
|
|
|
|
int stream_cnt = 0;
|
|
|
|
int res = 0;
|
2016-02-26 04:23:17 +03:00
|
|
|
int profile_updated = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-07-12 03:27:21 +04:00
|
|
|
memset(&input, 0, sizeof(input));
|
2012-11-07 00:02:42 +04:00
|
|
|
exec_name = argv_[0];
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (argc < 3) usage_exit();
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Setup default input stream settings */
|
2013-11-15 00:37:42 +04:00
|
|
|
input.framerate.numerator = 30;
|
|
|
|
input.framerate.denominator = 1;
|
2013-05-06 22:01:35 +04:00
|
|
|
input.only_i420 = 1;
|
2014-06-13 03:53:13 +04:00
|
|
|
input.bit_depth = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* First parse the global configuration values, because we want to apply
|
|
|
|
* other parameters on top of the default configuration provided by the
|
|
|
|
* codec.
|
|
|
|
*/
|
|
|
|
argv = argv_dup(argc - 1, argv_ + 1);
|
|
|
|
parse_global_config(&global, argv);
|
|
|
|
|
2014-07-16 20:37:13 +04:00
|
|
|
switch (global.color_type) {
|
2016-08-31 00:01:10 +03:00
|
|
|
case I420: input.fmt = AOM_IMG_FMT_I420; break;
|
|
|
|
case I422: input.fmt = AOM_IMG_FMT_I422; break;
|
|
|
|
case I444: input.fmt = AOM_IMG_FMT_I444; break;
|
|
|
|
case I440: input.fmt = AOM_IMG_FMT_I440; break;
|
|
|
|
case YV12: input.fmt = AOM_IMG_FMT_YV12; break;
|
2014-07-16 20:37:13 +04:00
|
|
|
}
|
2013-11-21 05:18:28 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
{
|
|
|
|
/* Now parse each stream's parameters. Using a local scope here
|
|
|
|
* due to the use of 'stream' as loop variable in FOREACH_STREAM
|
|
|
|
* loops
|
2012-07-14 02:21:29 +04:00
|
|
|
*/
|
2012-11-07 00:02:42 +04:00
|
|
|
struct stream_state *stream = NULL;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
do {
|
|
|
|
stream = new_stream(&global, stream);
|
|
|
|
stream_cnt++;
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!streams) streams = stream;
|
2012-11-07 00:02:42 +04:00
|
|
|
} while (parse_stream_params(&global, stream, argv));
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Check for unrecognized options */
|
|
|
|
for (argi = argv; *argi; argi++)
|
|
|
|
if (argi[0][0] == '-' && argi[0][1])
|
|
|
|
die("Error: Unrecognized option %s\n", *argi);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(check_encoder_config(global.disable_warning_prompt, &global,
|
|
|
|
&stream->config.cfg););
|
2013-11-26 00:05:19 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Handle non-option arguments */
|
2013-11-15 00:37:42 +04:00
|
|
|
input.filename = argv[0];
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!input.filename) usage_exit();
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-05-06 22:01:35 +04:00
|
|
|
/* Decide if other chroma subsamplings than 4:2:0 are supported */
|
2016-08-31 00:01:10 +03:00
|
|
|
if (global.codec->fourcc == AV1_FOURCC) input.only_i420 = 0;
|
2013-05-06 22:01:35 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) {
|
2013-03-12 02:03:00 +04:00
|
|
|
int frames_in = 0, seen_frames = 0;
|
2013-02-13 09:17:56 +04:00
|
|
|
int64_t estimated_time_left = -1;
|
|
|
|
int64_t average_rate = -1;
|
2014-04-17 21:47:08 +04:00
|
|
|
int64_t lagged_count = 0;
|
2011-06-21 01:09:29 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
open_input_file(&input);
|
2011-06-21 01:09:29 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* If the input file doesn't specify its w/h (raw files), try to get
|
|
|
|
* the data from the first stream's configuration.
|
|
|
|
*/
|
2014-10-14 01:27:53 +04:00
|
|
|
if (!input.width || !input.height) {
|
|
|
|
FOREACH_STREAM({
|
|
|
|
if (stream->config.cfg.g_w && stream->config.cfg.g_h) {
|
|
|
|
input.width = stream->config.cfg.g_w;
|
|
|
|
input.height = stream->config.cfg.g_h;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
/* Update stream configurations from the input file's parameters */
|
2013-11-15 00:37:42 +04:00
|
|
|
if (!input.width || !input.height)
|
2016-08-09 05:03:30 +03:00
|
|
|
fatal(
|
|
|
|
"Specify stream dimensions with --width (-w) "
|
|
|
|
" and --height (-h)");
|
2014-08-26 23:35:15 +04:00
|
|
|
|
|
|
|
/* If input file does not specify bit-depth but input-bit-depth parameter
|
|
|
|
* exists, assume that to be the input bit-depth. However, if the
|
|
|
|
* input-bit-depth paramter does not exist, assume the input bit-depth
|
|
|
|
* to be the same as the codec bit-depth.
|
|
|
|
*/
|
|
|
|
if (!input.bit_depth) {
|
|
|
|
FOREACH_STREAM({
|
|
|
|
if (stream->config.cfg.g_input_bit_depth)
|
|
|
|
input.bit_depth = stream->config.cfg.g_input_bit_depth;
|
|
|
|
else
|
|
|
|
input.bit_depth = stream->config.cfg.g_input_bit_depth =
|
|
|
|
(int)stream->config.cfg.g_bit_depth;
|
|
|
|
});
|
2016-08-31 00:01:10 +03:00
|
|
|
if (input.bit_depth > 8) input.fmt |= AOM_IMG_FMT_HIGHBITDEPTH;
|
2014-08-26 23:35:15 +04:00
|
|
|
} else {
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(
|
|
|
|
{ stream->config.cfg.g_input_bit_depth = input.bit_depth; });
|
2014-08-26 23:35:15 +04:00
|
|
|
}
|
|
|
|
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-02-26 04:23:17 +03:00
|
|
|
FOREACH_STREAM({
|
2016-09-19 23:24:51 +03:00
|
|
|
if (input.fmt != AOM_IMG_FMT_I420 && input.fmt != AOM_IMG_FMT_I42016) {
|
|
|
|
/* Automatically upgrade if input is non-4:2:0 but a 4:2:0 profile
|
|
|
|
was selected. */
|
|
|
|
switch (stream->config.cfg.g_profile) {
|
|
|
|
case 0:
|
|
|
|
stream->config.cfg.g_profile = 1;
|
|
|
|
profile_updated = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
stream->config.cfg.g_profile = 3;
|
|
|
|
profile_updated = 1;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Automatically set the codec bit depth to match the input bit depth.
|
|
|
|
* Upgrade the profile if required. */
|
2016-02-26 04:23:17 +03:00
|
|
|
if (stream->config.cfg.g_input_bit_depth >
|
|
|
|
(unsigned int)stream->config.cfg.g_bit_depth) {
|
|
|
|
stream->config.cfg.g_bit_depth = stream->config.cfg.g_input_bit_depth;
|
|
|
|
}
|
|
|
|
if (stream->config.cfg.g_bit_depth > 8) {
|
|
|
|
switch (stream->config.cfg.g_profile) {
|
|
|
|
case 0:
|
|
|
|
stream->config.cfg.g_profile = 2;
|
|
|
|
profile_updated = 1;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
stream->config.cfg.g_profile = 3;
|
|
|
|
profile_updated = 1;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (stream->config.cfg.g_profile > 1) {
|
|
|
|
stream->config.use_16bit_internal = 1;
|
|
|
|
}
|
2017-02-16 23:43:52 +03:00
|
|
|
if (profile_updated && !global.quiet) {
|
2016-02-26 04:23:17 +03:00
|
|
|
fprintf(stderr,
|
|
|
|
"Warning: automatically upgrading to profile %d to "
|
|
|
|
"match input format.\n",
|
|
|
|
stream->config.cfg.g_profile);
|
|
|
|
}
|
|
|
|
});
|
2016-10-24 11:37:37 +03:00
|
|
|
#else
|
|
|
|
FOREACH_STREAM({
|
|
|
|
if (input.fmt != AOM_IMG_FMT_I420 && input.fmt != AOM_IMG_FMT_I42016) {
|
|
|
|
/* Automatically upgrade if input is non-4:2:0 but a 4:2:0 profile
|
|
|
|
was selected. */
|
|
|
|
switch (stream->config.cfg.g_profile) {
|
|
|
|
case 0:
|
|
|
|
stream->config.cfg.g_profile = 1;
|
|
|
|
profile_updated = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
stream->config.cfg.g_profile = 3;
|
|
|
|
profile_updated = 1;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
2017-02-16 23:43:52 +03:00
|
|
|
if (profile_updated && !global.quiet) {
|
2016-10-24 11:37:37 +03:00
|
|
|
fprintf(stderr,
|
|
|
|
"Warning: automatically upgrading to profile %d to "
|
|
|
|
"match input format.\n",
|
|
|
|
stream->config.cfg.g_profile);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
#endif
|
2016-02-26 04:23:17 +03:00
|
|
|
|
2013-11-15 00:37:42 +04:00
|
|
|
FOREACH_STREAM(set_stream_dimensions(stream, input.width, input.height));
|
2014-02-21 22:52:09 +04:00
|
|
|
FOREACH_STREAM(validate_stream_config(stream, &global));
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
/* Ensure that --passes and --pass are consistent. If --pass is set and
|
|
|
|
* --passes=2, ensure --fpf was set.
|
|
|
|
*/
|
|
|
|
if (global.pass && global.passes == 2)
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM({
|
|
|
|
if (!stream->config.stats_fn)
|
2016-09-08 08:40:40 +03:00
|
|
|
die("Stream %d: Must specify --fpf when --pass=%d"
|
2016-08-09 05:03:30 +03:00
|
|
|
" and --passes=2\n",
|
|
|
|
stream->index, global.pass);
|
|
|
|
});
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-03-14 19:10:35 +04:00
|
|
|
#if !CONFIG_WEBM_IO
|
|
|
|
FOREACH_STREAM({
|
2015-12-16 21:35:43 +03:00
|
|
|
if (stream->config.write_webm) {
|
|
|
|
stream->config.write_webm = 0;
|
2016-08-09 05:03:30 +03:00
|
|
|
warn(
|
2016-08-31 00:01:10 +03:00
|
|
|
"aomenc was compiled without WebM container support."
|
2016-08-09 05:03:30 +03:00
|
|
|
"Producing IVF output");
|
2015-12-16 21:35:43 +03:00
|
|
|
}
|
2014-03-14 19:10:35 +04:00
|
|
|
});
|
|
|
|
#endif
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
/* Use the frame rate from the file only if none was specified
|
|
|
|
* on the command-line.
|
|
|
|
*/
|
2013-11-15 00:37:42 +04:00
|
|
|
if (!global.have_framerate) {
|
|
|
|
global.framerate.num = input.framerate.numerator;
|
|
|
|
global.framerate.den = input.framerate.denominator;
|
2016-01-18 22:03:45 +03:00
|
|
|
FOREACH_STREAM(stream->config.cfg.g_timebase.den = global.framerate.num;
|
|
|
|
stream->config.cfg.g_timebase.num = global.framerate.den);
|
2013-11-15 00:37:42 +04:00
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
/* Show configuration */
|
|
|
|
if (global.verbose && pass == 0)
|
|
|
|
FOREACH_STREAM(show_stream_config(stream, &global, &input));
|
|
|
|
|
|
|
|
if (pass == (global.pass ? global.pass - 1 : 0)) {
|
|
|
|
if (input.file_type == FILE_TYPE_Y4M)
|
|
|
|
/*The Y4M reader does its own allocation.
|
|
|
|
Just initialize this here to avoid problems if we never read any
|
|
|
|
frames.*/
|
|
|
|
memset(&raw, 0, sizeof(raw));
|
|
|
|
else
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_alloc(&raw, input.fmt, input.width, input.height, 32);
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(stream->rate_hist = init_rate_histogram(
|
|
|
|
&stream->config.cfg, &global.framerate));
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
FOREACH_STREAM(setup_pass(stream, &global, pass));
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(
|
|
|
|
open_output_file(stream, &global, &input.pixel_aspect_ratio));
|
2012-11-07 00:02:42 +04:00
|
|
|
FOREACH_STREAM(initialize_encoder(stream, &global));
|
|
|
|
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
if (strcmp(global.codec->name, "av1") == 0 ||
|
|
|
|
strcmp(global.codec->name, "av1") == 0) {
|
2014-08-26 23:35:15 +04:00
|
|
|
// Check to see if at least one stream uses 16 bit internal.
|
|
|
|
// Currently assume that the bit_depths for all streams using
|
|
|
|
// highbitdepth are the same.
|
|
|
|
FOREACH_STREAM({
|
|
|
|
if (stream->config.use_16bit_internal) {
|
|
|
|
use_16bit_internal = 1;
|
|
|
|
}
|
|
|
|
if (stream->config.cfg.g_profile == 0) {
|
|
|
|
input_shift = 0;
|
|
|
|
} else {
|
|
|
|
input_shift = (int)stream->config.cfg.g_bit_depth -
|
2016-08-09 05:03:30 +03:00
|
|
|
stream->config.cfg.g_input_bit_depth;
|
2014-08-26 23:35:15 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
frame_avail = 1;
|
|
|
|
got_data = 0;
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
while (frame_avail || got_data) {
|
2016-08-31 00:01:10 +03:00
|
|
|
struct aom_usec_timer timer;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (!global.limit || frames_in < global.limit) {
|
|
|
|
frame_avail = read_frame(&input, &raw);
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (frame_avail) frames_in++;
|
|
|
|
seen_frames =
|
|
|
|
frames_in > global.skip_frames ? frames_in - global.skip_frames : 0;
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
if (!global.quiet) {
|
2013-03-12 02:03:00 +04:00
|
|
|
float fps = usec_to_fps(cx_time, seen_frames);
|
2013-02-13 09:17:56 +04:00
|
|
|
fprintf(stderr, "\rPass %d/%d ", pass + 1, global.passes);
|
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (stream_cnt == 1)
|
2016-08-09 05:03:30 +03:00
|
|
|
fprintf(stderr, "frame %4d/%-4d %7" PRId64 "B ", frames_in,
|
|
|
|
streams->frames_out, (int64_t)streams->nbytes);
|
2012-11-07 00:02:42 +04:00
|
|
|
else
|
2013-02-13 09:17:56 +04:00
|
|
|
fprintf(stderr, "frame %4d ", frames_in);
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
fprintf(stderr, "%7" PRId64 " %s %.2f %s ",
|
2013-02-13 09:17:56 +04:00
|
|
|
cx_time > 9999999 ? cx_time / 1000 : cx_time,
|
2016-08-09 05:03:30 +03:00
|
|
|
cx_time > 9999999 ? "ms" : "us", fps >= 1.0 ? fps : fps * 60,
|
2013-09-18 03:31:46 +04:00
|
|
|
fps >= 1.0 ? "fps" : "fpm");
|
2013-02-13 09:17:56 +04:00
|
|
|
print_time("ETA", estimated_time_left);
|
2012-11-07 00:02:42 +04:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2016-10-04 01:48:43 +03:00
|
|
|
} else {
|
2012-07-14 02:21:29 +04:00
|
|
|
frame_avail = 0;
|
2016-10-04 01:48:43 +03:00
|
|
|
}
|
2012-02-16 00:39:38 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (frames_in > global.skip_frames) {
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_image_t *frame_to_encode;
|
2014-08-26 23:35:15 +04:00
|
|
|
if (input_shift || (use_16bit_internal && input.bit_depth == 8)) {
|
|
|
|
assert(use_16bit_internal);
|
|
|
|
// Input bit depth and stream bit depth do not match, so up
|
|
|
|
// shift frame to stream bit depth
|
|
|
|
if (!allocated_raw_shift) {
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_alloc(&raw_shift, raw.fmt | AOM_IMG_FMT_HIGHBITDEPTH,
|
2014-08-26 23:35:15 +04:00
|
|
|
input.width, input.height, 32);
|
|
|
|
allocated_raw_shift = 1;
|
|
|
|
}
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_upshift(&raw_shift, &raw, input_shift);
|
2014-08-26 23:35:15 +04:00
|
|
|
frame_to_encode = &raw_shift;
|
|
|
|
} else {
|
|
|
|
frame_to_encode = &raw;
|
|
|
|
}
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_usec_timer_start(&timer);
|
2014-08-26 23:35:15 +04:00
|
|
|
if (use_16bit_internal) {
|
2016-08-31 00:01:10 +03:00
|
|
|
assert(frame_to_encode->fmt & AOM_IMG_FMT_HIGHBITDEPTH);
|
2014-08-26 23:35:15 +04:00
|
|
|
FOREACH_STREAM({
|
|
|
|
if (stream->config.use_16bit_internal)
|
|
|
|
encode_frame(stream, &global,
|
2016-08-09 05:03:30 +03:00
|
|
|
frame_avail ? frame_to_encode : NULL, frames_in);
|
2014-08-26 23:35:15 +04:00
|
|
|
else
|
|
|
|
assert(0);
|
|
|
|
});
|
|
|
|
} else {
|
2016-08-31 00:01:10 +03:00
|
|
|
assert((frame_to_encode->fmt & AOM_IMG_FMT_HIGHBITDEPTH) == 0);
|
2014-08-26 23:35:15 +04:00
|
|
|
FOREACH_STREAM(encode_frame(stream, &global,
|
|
|
|
frame_avail ? frame_to_encode : NULL,
|
|
|
|
frames_in));
|
|
|
|
}
|
|
|
|
#else
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_usec_timer_start(&timer);
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(encode_frame(stream, &global, frame_avail ? &raw : NULL,
|
2012-11-07 00:02:42 +04:00
|
|
|
frames_in));
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_usec_timer_mark(&timer);
|
|
|
|
cx_time += aom_usec_timer_elapsed(&timer);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
FOREACH_STREAM(update_quantizer_histogram(stream));
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
got_data = 0;
|
|
|
|
FOREACH_STREAM(get_cx_data(stream, &global, &got_data));
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-08-21 18:18:07 +04:00
|
|
|
if (!got_data && input.length && streams != NULL &&
|
|
|
|
!streams->frames_out) {
|
2013-03-12 02:03:00 +04:00
|
|
|
lagged_count = global.limit ? seen_frames : ftello(input.file);
|
2013-02-27 23:14:23 +04:00
|
|
|
} else if (input.length) {
|
2013-02-13 09:17:56 +04:00
|
|
|
int64_t remaining;
|
|
|
|
int64_t rate;
|
|
|
|
|
|
|
|
if (global.limit) {
|
2014-04-17 21:47:08 +04:00
|
|
|
const int64_t frame_in_lagged = (seen_frames - lagged_count) * 1000;
|
2013-02-13 09:17:56 +04:00
|
|
|
|
|
|
|
rate = cx_time ? frame_in_lagged * (int64_t)1000000 / cx_time : 0;
|
2016-08-09 05:03:30 +03:00
|
|
|
remaining = 1000 * (global.limit - global.skip_frames -
|
|
|
|
seen_frames + lagged_count);
|
2013-02-13 09:17:56 +04:00
|
|
|
} else {
|
2014-04-17 21:47:08 +04:00
|
|
|
const int64_t input_pos = ftello(input.file);
|
|
|
|
const int64_t input_pos_lagged = input_pos - lagged_count;
|
2016-10-18 00:53:33 +03:00
|
|
|
const int64_t input_limit = input.length;
|
2013-02-13 09:17:56 +04:00
|
|
|
|
|
|
|
rate = cx_time ? input_pos_lagged * (int64_t)1000000 / cx_time : 0;
|
2016-10-18 00:53:33 +03:00
|
|
|
remaining = input_limit - input_pos + lagged_count;
|
2013-02-13 09:17:56 +04:00
|
|
|
}
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
average_rate =
|
|
|
|
(average_rate <= 0) ? rate : (average_rate * 7 + rate) / 8;
|
2013-02-13 09:17:56 +04:00
|
|
|
estimated_time_left = average_rate ? remaining / average_rate : -1;
|
|
|
|
}
|
|
|
|
|
2013-02-16 04:31:02 +04:00
|
|
|
if (got_data && global.test_decode != TEST_DECODE_OFF)
|
2013-03-13 23:15:43 +04:00
|
|
|
FOREACH_STREAM(test_decode(stream, global.test_decode, global.codec));
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fflush(stdout);
|
2016-08-09 05:03:30 +03:00
|
|
|
if (!global.quiet) fprintf(stderr, "\033[K");
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (stream_cnt > 1) fprintf(stderr, "\n");
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2014-10-01 08:56:33 +04:00
|
|
|
if (!global.quiet) {
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(fprintf(
|
|
|
|
stderr, "\rPass %d/%d frame %4d/%-4d %7" PRId64 "B %7" PRId64
|
|
|
|
"b/f %7" PRId64 "b/s"
|
|
|
|
" %7" PRId64 " %s (%.2f fps)\033[K\n",
|
|
|
|
pass + 1, global.passes, frames_in, stream->frames_out,
|
|
|
|
(int64_t)stream->nbytes,
|
2014-10-01 08:56:33 +04:00
|
|
|
seen_frames ? (int64_t)(stream->nbytes * 8 / seen_frames) : 0,
|
2016-08-09 05:03:30 +03:00
|
|
|
seen_frames
|
|
|
|
? (int64_t)stream->nbytes * 8 * (int64_t)global.framerate.num /
|
|
|
|
global.framerate.den / seen_frames
|
|
|
|
: 0,
|
2014-10-01 08:56:33 +04:00
|
|
|
stream->cx_time > 9999999 ? stream->cx_time / 1000 : stream->cx_time,
|
|
|
|
stream->cx_time > 9999999 ? "ms" : "us",
|
|
|
|
usec_to_fps(stream->cx_time, seen_frames)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (global.show_psnr) {
|
2016-08-31 00:01:10 +03:00
|
|
|
if (global.codec->fourcc == AV1_FOURCC) {
|
2014-10-01 08:56:33 +04:00
|
|
|
FOREACH_STREAM(
|
|
|
|
show_psnr(stream, (1 << stream->config.cfg.g_input_bit_depth) - 1));
|
|
|
|
} else {
|
|
|
|
FOREACH_STREAM(show_psnr(stream, 255.0));
|
|
|
|
}
|
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
FOREACH_STREAM(aom_codec_destroy(&stream->encoder));
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2013-02-16 04:31:02 +04:00
|
|
|
if (global.test_decode != TEST_DECODE_OFF) {
|
2016-08-31 00:01:10 +03:00
|
|
|
FOREACH_STREAM(aom_codec_destroy(&stream->decoder));
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-06-21 01:09:29 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
close_input_file(&input);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-02-16 04:31:02 +04:00
|
|
|
if (global.test_decode == TEST_DECODE_FATAL) {
|
|
|
|
FOREACH_STREAM(res |= stream->mismatch_seen);
|
|
|
|
}
|
2012-11-07 00:02:42 +04:00
|
|
|
FOREACH_STREAM(close_output_file(stream, global.codec->fourcc));
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
FOREACH_STREAM(stats_close(&stream->stats, global.passes - 1));
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2014-07-14 20:13:38 +04:00
|
|
|
#if CONFIG_FP_MB_STATS
|
|
|
|
FOREACH_STREAM(stats_close(&stream->fpmb_stats, global.passes - 1));
|
|
|
|
#endif
|
|
|
|
|
2016-08-09 05:03:30 +03:00
|
|
|
if (global.pass) break;
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-06-22 00:42:33 +04:00
|
|
|
|
2012-11-07 00:02:42 +04:00
|
|
|
if (global.show_q_hist_buckets)
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(
|
|
|
|
show_q_histogram(stream->counts, global.show_q_hist_buckets));
|
2012-11-07 00:02:42 +04:00
|
|
|
|
|
|
|
if (global.show_rate_hist_buckets)
|
2016-08-09 05:03:30 +03:00
|
|
|
FOREACH_STREAM(show_rate_histogram(stream->rate_hist, &stream->config.cfg,
|
2012-11-07 00:02:42 +04:00
|
|
|
global.show_rate_hist_buckets));
|
2014-01-30 00:28:29 +04:00
|
|
|
FOREACH_STREAM(destroy_rate_histogram(stream->rate_hist));
|
2012-11-07 00:02:42 +04:00
|
|
|
|
2012-10-11 21:13:48 +04:00
|
|
|
#if CONFIG_INTERNAL_STATS
|
2012-11-07 00:02:42 +04:00
|
|
|
/* TODO(jkoleszar): This doesn't belong in this executable. Do it for now,
|
|
|
|
* to match some existing utilities.
|
|
|
|
*/
|
2013-10-17 03:29:28 +04:00
|
|
|
if (!(global.pass == 1 && global.passes == 2))
|
|
|
|
FOREACH_STREAM({
|
|
|
|
FILE *f = fopen("opsnr.stt", "a");
|
|
|
|
if (stream->mismatch_seen) {
|
|
|
|
fprintf(f, "First mismatch occurred in frame %d\n",
|
|
|
|
stream->mismatch_seen);
|
|
|
|
} else {
|
|
|
|
fprintf(f, "No mismatch detected in recon buffers\n");
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
});
|
2012-10-11 21:13:48 +04:00
|
|
|
#endif
|
2011-06-22 00:42:33 +04:00
|
|
|
|
2017-04-12 17:03:28 +03:00
|
|
|
#if CONFIG_HIGHBITDEPTH
|
2016-08-31 00:01:10 +03:00
|
|
|
if (allocated_raw_shift) aom_img_free(&raw_shift);
|
2014-08-26 23:35:15 +04:00
|
|
|
#endif
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_img_free(&raw);
|
2012-07-14 02:21:29 +04:00
|
|
|
free(argv);
|
2012-11-07 00:02:42 +04:00
|
|
|
free(streams);
|
2013-02-16 04:31:02 +04:00
|
|
|
return res ? EXIT_FAILURE : EXIT_SUCCESS;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|