John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 10 | */ |
| 11 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 12 | #include "./aomenc.h" |
| 13 | #include "./aom_config.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 14 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 15 | #include <assert.h> |
| 16 | #include <limits.h> |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 17 | #include <math.h> |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 18 | #include <stdarg.h> |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 21 | #include <string.h> |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 22 | |
James Zern | 5805881 | 2014-08-15 21:00:31 -0700 | [diff] [blame] | 23 | #if CONFIG_LIBYUV |
| 24 | #include "third_party/libyuv/include/libyuv/scale.h" |
| 25 | #endif |
| 26 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 27 | #include "aom/aom_encoder.h" |
Tom Finegan | ba02c24 | 2017-05-16 15:01:54 -0700 | [diff] [blame] | 28 | #if CONFIG_AV1_DECODER |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 29 | #include "aom/aom_decoder.h" |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 30 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 31 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 32 | #include "./args.h" |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 33 | #include "./ivfenc.h" |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 34 | #include "./tools_common.h" |
Urvang Joshi | 09c293e | 2017-04-20 17:56:27 -0700 | [diff] [blame] | 35 | #include "examples/encoder_util.h" |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 36 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 37 | #if CONFIG_AV1_ENCODER |
| 38 | #include "aom/aomcx.h" |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 39 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 40 | #if CONFIG_AV1_DECODER |
| 41 | #include "aom/aomdx.h" |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 42 | #endif |
| 43 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 44 | #include "./aomstats.h" |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 45 | #include "./rate_hist.h" |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 46 | #include "./warnings.h" |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 47 | #include "aom/aom_integer.h" |
hui su | efdad1f | 2017-05-16 18:01:25 -0700 | [diff] [blame] | 48 | #include "aom_dsp/aom_dsp_common.h" |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 49 | #include "aom_ports/aom_timer.h" |
| 50 | #include "aom_ports/mem_ops.h" |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 51 | #if CONFIG_WEBM_IO |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 52 | #include "./webmenc.h" |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 53 | #endif |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 54 | #include "./y4minput.h" |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 55 | |
John Koleszar | 6291dd4 | 2012-06-19 21:05:36 -0700 | [diff] [blame] | 56 | /* Swallow warnings about unused results of fread/fwrite */ |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 57 | static size_t wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *stream) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 58 | return fread(ptr, size, nmemb, stream); |
John Koleszar | 6291dd4 | 2012-06-19 21:05:36 -0700 | [diff] [blame] | 59 | } |
| 60 | #define fread wrap_fread |
| 61 | |
| 62 | static size_t wrap_fwrite(const void *ptr, size_t size, size_t nmemb, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 63 | FILE *stream) { |
| 64 | return fwrite(ptr, size, nmemb, stream); |
John Koleszar | 6291dd4 | 2012-06-19 21:05:36 -0700 | [diff] [blame] | 65 | } |
| 66 | #define fwrite wrap_fwrite |
| 67 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 68 | static const char *exec_name; |
| 69 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 70 | static void warn_or_exit_on_errorv(aom_codec_ctx_t *ctx, int fatal, |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 71 | const char *s, va_list ap) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 72 | if (ctx->err) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 73 | const char *detail = aom_codec_error_detail(ctx); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 74 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 75 | vfprintf(stderr, s, ap); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 76 | fprintf(stderr, ": %s\n", aom_codec_error(ctx)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 77 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 78 | if (detail) fprintf(stderr, " %s\n", detail); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 79 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 80 | if (fatal) exit(EXIT_FAILURE); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 81 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 82 | } |
| 83 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 84 | static void ctx_exit_on_error(aom_codec_ctx_t *ctx, const char *s, ...) { |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 85 | va_list ap; |
| 86 | |
| 87 | va_start(ap, s); |
| 88 | warn_or_exit_on_errorv(ctx, 1, s, ap); |
| 89 | va_end(ap); |
| 90 | } |
| 91 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 92 | static void warn_or_exit_on_error(aom_codec_ctx_t *ctx, int fatal, |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 93 | const char *s, ...) { |
| 94 | va_list ap; |
| 95 | |
| 96 | va_start(ap, s); |
| 97 | warn_or_exit_on_errorv(ctx, fatal, s, ap); |
| 98 | va_end(ap); |
| 99 | } |
| 100 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 101 | static int read_frame(struct AvxInputContext *input_ctx, aom_image_t *img) { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 102 | FILE *f = input_ctx->file; |
| 103 | y4m_input *y4m = &input_ctx->y4m; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 104 | int shortread = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 105 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 106 | if (input_ctx->file_type == FILE_TYPE_Y4M) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 107 | if (y4m_input_fetch_frame(y4m, f, img) < 1) return 0; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 108 | } else { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 109 | shortread = read_yuv_frame(input_ctx, img); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | return !shortread; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 113 | } |
| 114 | |
James Zern | 5c337fd | 2015-05-09 10:42:58 -0700 | [diff] [blame] | 115 | static int file_is_y4m(const char detect[4]) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 116 | if (memcmp(detect, "YUV4", 4) == 0) { |
| 117 | return 1; |
| 118 | } |
| 119 | return 0; |
Timothy B. Terriberry | 44d8949 | 2010-05-26 18:27:51 -0400 | [diff] [blame] | 120 | } |
| 121 | |
James Zern | 5c337fd | 2015-05-09 10:42:58 -0700 | [diff] [blame] | 122 | static int fourcc_is_ivf(const char detect[4]) { |
Alex Converse | 64b89f1 | 2014-01-06 16:29:09 -0800 | [diff] [blame] | 123 | if (memcmp(detect, "DKIF", 4) == 0) { |
| 124 | return 1; |
| 125 | } |
| 126 | return 0; |
| 127 | } |
John Koleszar | dc66630 | 2010-10-20 12:05:48 -0400 | [diff] [blame] | 128 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 129 | static const arg_def_t help = |
| 130 | ARG_DEF(NULL, "help", 0, "Show usage options and exit"); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 131 | static const arg_def_t debugmode = |
| 132 | ARG_DEF("D", "debug", 0, "Debug mode (makes output deterministic)"); |
| 133 | static const arg_def_t outputfile = |
| 134 | ARG_DEF("o", "output", 1, "Output filename"); |
| 135 | static const arg_def_t use_yv12 = |
| 136 | ARG_DEF(NULL, "yv12", 0, "Input file is YV12 "); |
| 137 | static const arg_def_t use_i420 = |
| 138 | ARG_DEF(NULL, "i420", 0, "Input file is I420 (default)"); |
| 139 | static const arg_def_t use_i422 = |
| 140 | ARG_DEF(NULL, "i422", 0, "Input file is I422"); |
| 141 | static const arg_def_t use_i444 = |
| 142 | ARG_DEF(NULL, "i444", 0, "Input file is I444"); |
| 143 | static const arg_def_t use_i440 = |
| 144 | ARG_DEF(NULL, "i440", 0, "Input file is I440"); |
| 145 | static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use"); |
| 146 | static const arg_def_t passes = |
| 147 | ARG_DEF("p", "passes", 1, "Number of passes (1/2)"); |
| 148 | static const arg_def_t pass_arg = |
| 149 | ARG_DEF(NULL, "pass", 1, "Pass to execute (1/2)"); |
| 150 | static const arg_def_t fpf_name = |
| 151 | ARG_DEF(NULL, "fpf", 1, "First pass statistics file name"); |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 152 | #if CONFIG_FP_MB_STATS |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 153 | static const arg_def_t fpmbf_name = |
| 154 | ARG_DEF(NULL, "fpmbf", 1, "First pass block statistics file name"); |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 155 | #endif |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 156 | static const arg_def_t limit = |
| 157 | ARG_DEF(NULL, "limit", 1, "Stop encoding after n input frames"); |
| 158 | static const arg_def_t skip = |
| 159 | ARG_DEF(NULL, "skip", 1, "Skip the first n input frames"); |
| 160 | static const arg_def_t deadline = |
| 161 | ARG_DEF("d", "deadline", 1, "Deadline per frame (usec)"); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 162 | static const arg_def_t good_dl = |
| 163 | ARG_DEF(NULL, "good", 0, "Use Good Quality Deadline"); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 164 | static const arg_def_t quietarg = |
| 165 | ARG_DEF("q", "quiet", 0, "Do not print encode progress"); |
| 166 | static const arg_def_t verbosearg = |
| 167 | ARG_DEF("v", "verbose", 0, "Show encoder parameters"); |
| 168 | static const arg_def_t psnrarg = |
| 169 | ARG_DEF(NULL, "psnr", 0, "Show PSNR in status line"); |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 170 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 171 | static const struct arg_enum_list test_decode_enum[] = { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 172 | { "off", TEST_DECODE_OFF }, |
| 173 | { "fatal", TEST_DECODE_FATAL }, |
| 174 | { "warn", TEST_DECODE_WARN }, |
| 175 | { NULL, 0 } |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 176 | }; |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 177 | static const arg_def_t recontest = ARG_DEF_ENUM( |
| 178 | NULL, "test-decode", 1, "Test encode/decode mismatch", test_decode_enum); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 179 | static const arg_def_t framerate = |
| 180 | ARG_DEF(NULL, "fps", 1, "Stream frame rate (rate/scale)"); |
| 181 | static const arg_def_t use_webm = |
| 182 | ARG_DEF(NULL, "webm", 0, "Output WebM (default when WebM IO is enabled)"); |
| 183 | static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0, "Output IVF"); |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 184 | #if CONFIG_OBU_NO_IVF |
| 185 | static const arg_def_t use_obu = ARG_DEF(NULL, "obu", 0, "Output OBU"); |
| 186 | #endif |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 187 | static const arg_def_t out_part = |
| 188 | ARG_DEF("P", "output-partitions", 0, |
| 189 | "Makes encoder output partitions. Requires IVF output!"); |
| 190 | static const arg_def_t q_hist_n = |
| 191 | ARG_DEF(NULL, "q-hist", 1, "Show quantizer histogram (n-buckets)"); |
| 192 | static const arg_def_t rate_hist_n = |
| 193 | ARG_DEF(NULL, "rate-hist", 1, "Show rate histogram (n-buckets)"); |
| 194 | static const arg_def_t disable_warnings = |
| 195 | ARG_DEF(NULL, "disable-warnings", 0, |
| 196 | "Disable warnings about potentially incorrect encode settings."); |
| 197 | static const arg_def_t disable_warning_prompt = |
| 198 | ARG_DEF("y", "disable-warning-prompt", 0, |
| 199 | "Display warnings, but do not prompt user to continue."); |
Alex Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 200 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 201 | #if CONFIG_HIGHBITDEPTH |
Nathan E. Egge | d1b239c | 2016-07-12 18:03:18 -0400 | [diff] [blame] | 202 | static const struct arg_enum_list bitdepth_enum[] = { |
| 203 | { "8", AOM_BITS_8 }, { "10", AOM_BITS_10 }, { "12", AOM_BITS_12 }, { NULL, 0 } |
| 204 | }; |
| 205 | |
| 206 | static const arg_def_t bitdeptharg = ARG_DEF_ENUM( |
| 207 | "b", "bit-depth", 1, |
| 208 | "Bit depth for codec (8 for version <=1, 10 or 12 for version 2)", |
| 209 | bitdepth_enum); |
| 210 | static const arg_def_t inbitdeptharg = |
| 211 | ARG_DEF(NULL, "input-bit-depth", 1, "Bit depth of input"); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 212 | #endif |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 213 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 214 | static const arg_def_t *main_args[] = { &help, |
| 215 | &debugmode, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 216 | &outputfile, |
| 217 | &codecarg, |
| 218 | &passes, |
| 219 | &pass_arg, |
| 220 | &fpf_name, |
| 221 | &limit, |
| 222 | &skip, |
| 223 | &deadline, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 224 | &good_dl, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 225 | &quietarg, |
| 226 | &verbosearg, |
| 227 | &psnrarg, |
| 228 | &use_webm, |
| 229 | &use_ivf, |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 230 | #if CONFIG_OBU_NO_IVF |
| 231 | &use_obu, |
| 232 | #endif |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 233 | &out_part, |
| 234 | &q_hist_n, |
| 235 | &rate_hist_n, |
| 236 | &disable_warnings, |
| 237 | &disable_warning_prompt, |
| 238 | &recontest, |
| 239 | NULL }; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 240 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 241 | static const arg_def_t usage = |
| 242 | ARG_DEF("u", "usage", 1, "Usage profile number to use"); |
| 243 | static const arg_def_t threads = |
| 244 | ARG_DEF("t", "threads", 1, "Max number of threads to use"); |
| 245 | static const arg_def_t profile = |
| 246 | ARG_DEF(NULL, "profile", 1, "Bitstream profile number to use"); |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 247 | static const arg_def_t width = ARG_DEF("w", "width", 1, "Frame width"); |
| 248 | static const arg_def_t height = ARG_DEF("h", "height", 1, "Frame height"); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 249 | #if CONFIG_WEBM_IO |
Alok Ahuja | 72c76ca | 2011-04-21 00:50:07 -0700 | [diff] [blame] | 250 | static const struct arg_enum_list stereo_mode_enum[] = { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 251 | { "mono", STEREO_FORMAT_MONO }, |
| 252 | { "left-right", STEREO_FORMAT_LEFT_RIGHT }, |
| 253 | { "bottom-top", STEREO_FORMAT_BOTTOM_TOP }, |
| 254 | { "top-bottom", STEREO_FORMAT_TOP_BOTTOM }, |
| 255 | { "right-left", STEREO_FORMAT_RIGHT_LEFT }, |
| 256 | { NULL, 0 } |
Alok Ahuja | 72c76ca | 2011-04-21 00:50:07 -0700 | [diff] [blame] | 257 | }; |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 258 | static const arg_def_t stereo_mode = ARG_DEF_ENUM( |
| 259 | NULL, "stereo-mode", 1, "Stereo 3D video format", stereo_mode_enum); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 260 | #endif |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 261 | static const arg_def_t timebase = ARG_DEF( |
| 262 | NULL, "timebase", 1, "Output timestamp precision (fractional seconds)"); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 263 | static const arg_def_t error_resilient = |
| 264 | ARG_DEF(NULL, "error-resilient", 1, "Enable error resiliency features"); |
| 265 | static const arg_def_t lag_in_frames = |
| 266 | ARG_DEF(NULL, "lag-in-frames", 1, "Max number of frames to lag"); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 267 | #if CONFIG_EXT_TILE |
| 268 | static const arg_def_t large_scale_tile = |
| 269 | ARG_DEF(NULL, "large-scale-tile", 1, |
| 270 | "Large scale tile coding (0: off (default), 1: on)"); |
| 271 | #endif // CONFIG_EXT_TILE |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 272 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 273 | static const arg_def_t *global_args[] = { &use_yv12, |
| 274 | &use_i420, |
| 275 | &use_i422, |
| 276 | &use_i444, |
| 277 | &use_i440, |
| 278 | &usage, |
| 279 | &threads, |
| 280 | &profile, |
| 281 | &width, |
| 282 | &height, |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 283 | #if CONFIG_WEBM_IO |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 284 | &stereo_mode, |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 285 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 286 | &timebase, |
| 287 | &framerate, |
| 288 | &error_resilient, |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 289 | #if CONFIG_HIGHBITDEPTH |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 290 | &bitdeptharg, |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 291 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 292 | &lag_in_frames, |
| 293 | #if CONFIG_EXT_TILE |
| 294 | &large_scale_tile, |
| 295 | #endif // CONFIG_EXT_TILE |
| 296 | NULL }; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 297 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 298 | static const arg_def_t dropframe_thresh = |
| 299 | ARG_DEF(NULL, "drop-frame", 1, "Temporal resampling threshold (buf %)"); |
Debargha Mukherjee | 29e40a6 | 2017-06-14 09:37:12 -0700 | [diff] [blame] | 300 | static const arg_def_t resize_mode = |
| 301 | ARG_DEF(NULL, "resize-mode", 1, "Frame resize mode"); |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 302 | static const arg_def_t resize_denominator = |
| 303 | ARG_DEF(NULL, "resize-denominator", 1, "Frame resize denominator"); |
| 304 | static const arg_def_t resize_kf_denominator = ARG_DEF( |
| 305 | NULL, "resize-kf-denominator", 1, "Frame resize keyframe denominator"); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 306 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | c4e7894 | 2017-04-10 14:59:00 -0700 | [diff] [blame] | 307 | static const arg_def_t superres_mode = |
| 308 | ARG_DEF(NULL, "superres-mode", 1, "Frame super-resolution mode"); |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 309 | static const arg_def_t superres_denominator = ARG_DEF( |
| 310 | NULL, "superres-denominator", 1, "Frame super-resolution denominator"); |
| 311 | static const arg_def_t superres_kf_denominator = |
| 312 | ARG_DEF(NULL, "superres-kf-denominator", 1, |
| 313 | "Frame super-resolution keyframe denominator"); |
Debargha Mukherjee | 7166f22 | 2017-09-05 21:32:42 -0700 | [diff] [blame] | 314 | static const arg_def_t superres_qthresh = ARG_DEF( |
| 315 | NULL, "superres-qthresh", 1, "Frame super-resolution qindex threshold"); |
| 316 | static const arg_def_t superres_kf_qthresh = |
| 317 | ARG_DEF(NULL, "superres-kf-qthresh", 1, |
| 318 | "Frame super-resolution keyframe qindex threshold"); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 319 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | 7a3f4b3 | 2017-06-23 10:32:37 -0700 | [diff] [blame] | 320 | static const struct arg_enum_list end_usage_enum[] = { { "vbr", AOM_VBR }, |
| 321 | { "cbr", AOM_CBR }, |
| 322 | { "cq", AOM_CQ }, |
| 323 | { "q", AOM_Q }, |
| 324 | { NULL, 0 } }; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 325 | static const arg_def_t end_usage = |
| 326 | ARG_DEF_ENUM(NULL, "end-usage", 1, "Rate control mode", end_usage_enum); |
| 327 | static const arg_def_t target_bitrate = |
| 328 | ARG_DEF(NULL, "target-bitrate", 1, "Bitrate (kbps)"); |
| 329 | static const arg_def_t min_quantizer = |
| 330 | ARG_DEF(NULL, "min-q", 1, "Minimum (best) quantizer"); |
| 331 | static const arg_def_t max_quantizer = |
| 332 | ARG_DEF(NULL, "max-q", 1, "Maximum (worst) quantizer"); |
| 333 | static const arg_def_t undershoot_pct = |
| 334 | ARG_DEF(NULL, "undershoot-pct", 1, "Datarate undershoot (min) target (%)"); |
| 335 | static const arg_def_t overshoot_pct = |
| 336 | ARG_DEF(NULL, "overshoot-pct", 1, "Datarate overshoot (max) target (%)"); |
| 337 | static const arg_def_t buf_sz = |
| 338 | ARG_DEF(NULL, "buf-sz", 1, "Client buffer size (ms)"); |
| 339 | static const arg_def_t buf_initial_sz = |
| 340 | ARG_DEF(NULL, "buf-initial-sz", 1, "Client initial buffer size (ms)"); |
| 341 | static const arg_def_t buf_optimal_sz = |
| 342 | ARG_DEF(NULL, "buf-optimal-sz", 1, "Client optimal buffer size (ms)"); |
Fergus Simpson | 7a3f4b3 | 2017-06-23 10:32:37 -0700 | [diff] [blame] | 343 | static const arg_def_t *rc_args[] = { &dropframe_thresh, |
| 344 | &resize_mode, |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 345 | &resize_denominator, |
| 346 | &resize_kf_denominator, |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 347 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | 7a3f4b3 | 2017-06-23 10:32:37 -0700 | [diff] [blame] | 348 | &superres_mode, |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 349 | &superres_denominator, |
| 350 | &superres_kf_denominator, |
Debargha Mukherjee | 7166f22 | 2017-09-05 21:32:42 -0700 | [diff] [blame] | 351 | &superres_qthresh, |
| 352 | &superres_kf_qthresh, |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 353 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | 7a3f4b3 | 2017-06-23 10:32:37 -0700 | [diff] [blame] | 354 | &end_usage, |
| 355 | &target_bitrate, |
| 356 | &min_quantizer, |
| 357 | &max_quantizer, |
| 358 | &undershoot_pct, |
| 359 | &overshoot_pct, |
| 360 | &buf_sz, |
| 361 | &buf_initial_sz, |
| 362 | &buf_optimal_sz, |
| 363 | NULL }; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 364 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 365 | static const arg_def_t bias_pct = |
| 366 | ARG_DEF(NULL, "bias-pct", 1, "CBR/VBR bias (0=CBR, 100=VBR)"); |
| 367 | static const arg_def_t minsection_pct = |
| 368 | ARG_DEF(NULL, "minsection-pct", 1, "GOP min bitrate (% of target)"); |
| 369 | static const arg_def_t maxsection_pct = |
| 370 | ARG_DEF(NULL, "maxsection-pct", 1, "GOP max bitrate (% of target)"); |
| 371 | static const arg_def_t *rc_twopass_args[] = { &bias_pct, &minsection_pct, |
| 372 | &maxsection_pct, NULL }; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 373 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 374 | static const arg_def_t kf_min_dist = |
| 375 | ARG_DEF(NULL, "kf-min-dist", 1, "Minimum keyframe interval (frames)"); |
| 376 | static const arg_def_t kf_max_dist = |
| 377 | ARG_DEF(NULL, "kf-max-dist", 1, "Maximum keyframe interval (frames)"); |
| 378 | static const arg_def_t kf_disabled = |
| 379 | ARG_DEF(NULL, "disable-kf", 0, "Disable keyframe placement"); |
| 380 | static const arg_def_t *kf_args[] = { &kf_min_dist, &kf_max_dist, &kf_disabled, |
| 381 | NULL }; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 382 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 383 | static const arg_def_t noise_sens = |
| 384 | ARG_DEF(NULL, "noise-sensitivity", 1, "Noise sensitivity (frames to blur)"); |
| 385 | static const arg_def_t sharpness = |
| 386 | ARG_DEF(NULL, "sharpness", 1, "Loop filter sharpness (0..7)"); |
| 387 | static const arg_def_t static_thresh = |
| 388 | ARG_DEF(NULL, "static-thresh", 1, "Motion detection threshold"); |
| 389 | static const arg_def_t auto_altref = |
| 390 | ARG_DEF(NULL, "auto-alt-ref", 1, "Enable automatic alt reference frames"); |
| 391 | static const arg_def_t arnr_maxframes = |
| 392 | ARG_DEF(NULL, "arnr-maxframes", 1, "AltRef max frames (0..15)"); |
| 393 | static const arg_def_t arnr_strength = |
| 394 | ARG_DEF(NULL, "arnr-strength", 1, "AltRef filter strength (0..6)"); |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 395 | static const struct arg_enum_list tuning_enum[] = { |
Yushin Cho | d808bfc | 2017-08-10 15:54:36 -0700 | [diff] [blame] | 396 | { "psnr", AOM_TUNE_PSNR }, |
| 397 | { "ssim", AOM_TUNE_SSIM }, |
| 398 | #ifdef CONFIG_DIST_8X8 |
| 399 | { "cdef-dist", AOM_TUNE_CDEF_DIST }, |
| 400 | { "daala-dist", AOM_TUNE_DAALA_DIST }, |
| 401 | #endif |
| 402 | { NULL, 0 } |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 403 | }; |
Yushin Cho | d808bfc | 2017-08-10 15:54:36 -0700 | [diff] [blame] | 404 | static const arg_def_t tune_metric = |
| 405 | ARG_DEF_ENUM(NULL, "tune", 1, "Distortion metric tuned with", tuning_enum); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 406 | static const arg_def_t cq_level = |
| 407 | ARG_DEF(NULL, "cq-level", 1, "Constant/Constrained Quality level"); |
| 408 | static const arg_def_t max_intra_rate_pct = |
| 409 | ARG_DEF(NULL, "max-intra-rate", 1, "Max I-frame bitrate (pct)"); |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 410 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 411 | #if CONFIG_AV1_ENCODER |
| 412 | static const arg_def_t cpu_used_av1 = |
Yaowu Xu | 3973759 | 2017-04-21 16:39:09 -0700 | [diff] [blame] | 413 | ARG_DEF(NULL, "cpu-used", 1, "CPU Used (0..8)"); |
Jingning Han | b49c6ae | 2017-11-27 18:14:05 -0800 | [diff] [blame] | 414 | static const arg_def_t dev_sf_av1 = |
| 415 | ARG_DEF(NULL, "dev-sf", 1, "Dev Speed (0..255)"); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 416 | #if CONFIG_EXT_TILE |
| 417 | static const arg_def_t single_tile_decoding = |
| 418 | ARG_DEF(NULL, "single-tile-decoding", 1, |
| 419 | "Single tile decoding (0: off (default), 1: on)"); |
| 420 | #endif // CONFIG_EXT_TILE |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 421 | static const arg_def_t tile_cols = |
| 422 | ARG_DEF(NULL, "tile-columns", 1, "Number of tile columns to use, log2"); |
| 423 | static const arg_def_t tile_rows = |
| 424 | ARG_DEF(NULL, "tile-rows", 1, |
| 425 | "Number of tile rows to use, log2 (set to 0 while threads > 1)"); |
Dominic Symes | f58f111 | 2017-09-25 12:47:40 +0200 | [diff] [blame] | 426 | #if CONFIG_MAX_TILE |
| 427 | static const arg_def_t tile_width = |
Dominic Symes | 26ad0b2 | 2017-10-01 16:35:13 +0200 | [diff] [blame] | 428 | ARG_DEF(NULL, "tile-width", 1, "Tile widths (comma separated)"); |
Dominic Symes | f58f111 | 2017-09-25 12:47:40 +0200 | [diff] [blame] | 429 | static const arg_def_t tile_height = |
Dominic Symes | 26ad0b2 | 2017-10-01 16:35:13 +0200 | [diff] [blame] | 430 | ARG_DEF(NULL, "tile-height", 1, "Tile heights (command separated)"); |
Dominic Symes | f58f111 | 2017-09-25 12:47:40 +0200 | [diff] [blame] | 431 | #endif |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 432 | #if CONFIG_DEPENDENT_HORZTILES |
| 433 | static const arg_def_t tile_dependent_rows = |
| 434 | ARG_DEF(NULL, "tile-dependent-rows", 1, "Enable dependent Tile rows"); |
| 435 | #endif |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 436 | #if CONFIG_LOOPFILTERING_ACROSS_TILES |
Ryan Lei | 7386eda | 2016-12-08 21:08:31 -0800 | [diff] [blame] | 437 | static const arg_def_t tile_loopfilter = ARG_DEF( |
| 438 | NULL, "tile-loopfilter", 1, "Enable loop filter across tile boundary"); |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 439 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 440 | static const arg_def_t lossless = |
| 441 | ARG_DEF(NULL, "lossless", 1, "Lossless mode (0: false (default), 1: true)"); |
Steinar Midtskogen | e44c622 | 2017-11-09 13:22:09 +0100 | [diff] [blame] | 442 | static const arg_def_t enable_cdef = |
| 443 | ARG_DEF(NULL, "enable-cdef", 1, |
| 444 | "Enable the constrained directional enhancement filter (0: false, " |
| 445 | "1: true (default))"); |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 446 | #if CONFIG_AOM_QM |
| 447 | static const arg_def_t enable_qm = |
Yaowu Xu | 9dcf560 | 2016-11-09 15:11:22 -0800 | [diff] [blame] | 448 | ARG_DEF(NULL, "enable-qm", 1, |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 449 | "Enable quantisation matrices (0: false (default), 1: true)"); |
| 450 | static const arg_def_t qm_min = ARG_DEF( |
Yaowu Xu | 9dcf560 | 2016-11-09 15:11:22 -0800 | [diff] [blame] | 451 | NULL, "qm-min", 1, "Min quant matrix flatness (0..15), default is 8"); |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 452 | static const arg_def_t qm_max = ARG_DEF( |
Yaowu Xu | 9dcf560 | 2016-11-09 15:11:22 -0800 | [diff] [blame] | 453 | NULL, "qm-max", 1, "Max quant matrix flatness (0..15), default is 16"); |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 454 | #endif |
Yushin Cho | d808bfc | 2017-08-10 15:54:36 -0700 | [diff] [blame] | 455 | #if CONFIG_DIST_8X8 |
| 456 | static const arg_def_t enable_dist_8x8 = |
| 457 | ARG_DEF(NULL, "enable-dist-8x8", 1, |
| 458 | "Enable dist-8x8 (0: false (default), 1: true)"); |
| 459 | #endif // CONFIG_DIST_8X8 |
Yaowu Xu | 859a527 | 2016-11-10 15:32:21 -0800 | [diff] [blame] | 460 | static const arg_def_t num_tg = ARG_DEF( |
| 461 | NULL, "num-tile-groups", 1, "Maximum number of tile groups, default is 1"); |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 462 | static const arg_def_t mtu_size = |
| 463 | ARG_DEF(NULL, "mtu-size", 1, |
Yaowu Xu | 859a527 | 2016-11-10 15:32:21 -0800 | [diff] [blame] | 464 | "MTU size for a tile group, default is 0 (no MTU targeting), " |
| 465 | "overrides maximum number of tile groups"); |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 466 | #if CONFIG_TEMPMV_SIGNALING |
| 467 | static const arg_def_t disable_tempmv = ARG_DEF( |
| 468 | NULL, "disable-tempmv", 1, "Disable temporal mv prediction (default is 0)"); |
| 469 | #endif |
Yaowu Xu | d59fb48 | 2016-09-30 15:39:53 -0700 | [diff] [blame] | 470 | static const arg_def_t frame_parallel_decoding = |
| 471 | ARG_DEF(NULL, "frame-parallel", 1, |
| 472 | "Enable frame parallel decodability features " |
| 473 | "(0: false (default), 1: true)"); |
Thomas Davies | 3ab20b4 | 2017-09-19 10:30:53 +0100 | [diff] [blame] | 474 | #if !CONFIG_EXT_DELTA_Q |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 475 | static const arg_def_t aq_mode = ARG_DEF( |
| 476 | NULL, "aq-mode", 1, |
| 477 | "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, " |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 478 | "3: cyclic refresh, 4: delta quant)"); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 479 | #else |
Thomas | e28d92b | 2016-09-20 12:07:11 +0100 | [diff] [blame] | 480 | static const arg_def_t aq_mode = ARG_DEF( |
| 481 | NULL, "aq-mode", 1, |
| 482 | "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, " |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 483 | "3: cyclic refresh)"); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 484 | #endif |
Fangwen Fu | 6160df2 | 2017-04-24 09:45:51 -0700 | [diff] [blame] | 485 | #if CONFIG_EXT_DELTA_Q |
| 486 | static const arg_def_t deltaq_mode = ARG_DEF( |
| 487 | NULL, "deltaq-mode", 1, |
| 488 | "Delta qindex mode (0: off (default), 1: deltaq 2: deltaq + deltalf)"); |
| 489 | #endif |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 490 | static const arg_def_t frame_periodic_boost = |
| 491 | ARG_DEF(NULL, "frame-boost", 1, |
| 492 | "Enable frame periodic boost (0: off (default), 1: on)"); |
James Zern | f82cfc2 | 2015-06-05 16:07:20 -0700 | [diff] [blame] | 493 | static const arg_def_t gf_cbr_boost_pct = ARG_DEF( |
| 494 | NULL, "gf-cbr-boost", 1, "Boost for Golden Frame in CBR mode (pct)"); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 495 | static const arg_def_t max_inter_rate_pct = |
| 496 | ARG_DEF(NULL, "max-inter-rate", 1, "Max P-frame bitrate (pct)"); |
Debargha Mukherjee | 9852643 | 2015-04-01 16:39:06 -0700 | [diff] [blame] | 497 | static const arg_def_t min_gf_interval = ARG_DEF( |
| 498 | NULL, "min-gf-interval", 1, |
| 499 | "min gf/arf frame interval (default 0, indicating in-built behavior)"); |
| 500 | static const arg_def_t max_gf_interval = ARG_DEF( |
| 501 | NULL, "max-gf-interval", 1, |
| 502 | "max gf/arf frame interval (default 0, indicating in-built behavior)"); |
James Zern | 5248d71 | 2014-01-14 17:56:45 -0800 | [diff] [blame] | 503 | |
Yaowu Xu | fc99636 | 2015-02-10 15:03:05 -0800 | [diff] [blame] | 504 | static const struct arg_enum_list color_space_enum[] = { |
Imdad Sardharwalla | 317002f | 2017-12-05 16:24:56 +0000 | [diff] [blame] | 505 | { "unknown", AOM_CS_UNKNOWN }, |
| 506 | { "bt601", AOM_CS_BT_601 }, |
| 507 | { "bt709", AOM_CS_BT_709 }, |
| 508 | { "smpte170", AOM_CS_SMPTE_170 }, |
| 509 | { "smpte240", AOM_CS_SMPTE_240 }, |
| 510 | { "bt2020ncl", AOM_CS_BT_2020_NCL }, |
| 511 | { "bt2020cl", AOM_CS_BT_2020_CL }, |
| 512 | { "sRGB", AOM_CS_SRGB }, |
| 513 | { "ICtCp", AOM_CS_ICTCP }, |
| 514 | { "monochrome", AOM_CS_MONOCHROME }, |
| 515 | { NULL, 0 } |
Yaowu Xu | fc99636 | 2015-02-10 15:03:05 -0800 | [diff] [blame] | 516 | }; |
| 517 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 518 | static const arg_def_t input_color_space = |
clang-format | 4eafefe | 2017-09-04 12:51:20 -0700 | [diff] [blame] | 519 | ARG_DEF_ENUM(NULL, "color-space", 1, |
| 520 | "The color space of input content:", color_space_enum); |
Yaowu Xu | fc99636 | 2015-02-10 15:03:05 -0800 | [diff] [blame] | 521 | |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 522 | static const struct arg_enum_list transfer_function_enum[] = { |
| 523 | { "unknown", AOM_TF_UNKNOWN }, |
| 524 | { "bt709", AOM_TF_BT_709 }, |
| 525 | { "pq", AOM_TF_PQ }, |
| 526 | { "hlg", AOM_TF_HLG }, |
| 527 | { NULL, 0 } |
| 528 | }; |
| 529 | |
| 530 | static const arg_def_t input_transfer_function = ARG_DEF_ENUM( |
clang-format | 4eafefe | 2017-09-04 12:51:20 -0700 | [diff] [blame] | 531 | NULL, "transfer-function", 1, |
| 532 | "The transfer function of input content:", transfer_function_enum); |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 533 | |
| 534 | static const struct arg_enum_list chroma_sample_position_enum[] = { |
| 535 | { "unknown", AOM_CSP_UNKNOWN }, |
| 536 | { "vertical", AOM_CSP_VERTICAL }, |
| 537 | { "colocated", AOM_CSP_COLOCATED }, |
| 538 | { NULL, 0 } |
| 539 | }; |
| 540 | |
| 541 | static const arg_def_t input_chroma_sample_position = |
| 542 | ARG_DEF_ENUM(NULL, "chroma-sample-position", 1, |
| 543 | "The chroma sample position when chroma 4:2:0 is signaled:", |
| 544 | chroma_sample_position_enum); |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 545 | |
Alex Converse | 219f645 | 2014-08-06 11:01:18 -0700 | [diff] [blame] | 546 | static const struct arg_enum_list tune_content_enum[] = { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 547 | { "default", AOM_CONTENT_DEFAULT }, |
| 548 | { "screen", AOM_CONTENT_SCREEN }, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 549 | { NULL, 0 } |
Alex Converse | 219f645 | 2014-08-06 11:01:18 -0700 | [diff] [blame] | 550 | }; |
| 551 | |
| 552 | static const arg_def_t tune_content = ARG_DEF_ENUM( |
| 553 | NULL, "tune-content", 1, "Tune content type", tune_content_enum); |
hui su | 82331e0 | 2015-08-16 18:21:56 -0700 | [diff] [blame] | 554 | #endif |
Alex Converse | 219f645 | 2014-08-06 11:01:18 -0700 | [diff] [blame] | 555 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 556 | #if CONFIG_AV1_ENCODER |
Geza Lore | 454989f | 2016-03-24 13:56:05 +0000 | [diff] [blame] | 557 | #if CONFIG_EXT_PARTITION |
| 558 | static const struct arg_enum_list superblock_size_enum[] = { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 559 | { "dynamic", AOM_SUPERBLOCK_SIZE_DYNAMIC }, |
| 560 | { "64", AOM_SUPERBLOCK_SIZE_64X64 }, |
| 561 | { "128", AOM_SUPERBLOCK_SIZE_128X128 }, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 562 | { NULL, 0 } |
Geza Lore | 454989f | 2016-03-24 13:56:05 +0000 | [diff] [blame] | 563 | }; |
| 564 | static const arg_def_t superblock_size = ARG_DEF_ENUM( |
| 565 | NULL, "sb-size", 1, "Superblock size to use", superblock_size_enum); |
| 566 | #endif // CONFIG_EXT_PARTITION |
| 567 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 568 | static const arg_def_t *av1_args[] = { &cpu_used_av1, |
Jingning Han | b49c6ae | 2017-11-27 18:14:05 -0800 | [diff] [blame] | 569 | &dev_sf_av1, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 570 | &auto_altref, |
| 571 | &sharpness, |
| 572 | &static_thresh, |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 573 | #if CONFIG_EXT_TILE |
| 574 | &single_tile_decoding, |
| 575 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 576 | &tile_cols, |
| 577 | &tile_rows, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 578 | #if CONFIG_DEPENDENT_HORZTILES |
| 579 | &tile_dependent_rows, |
| 580 | #endif |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 581 | #if CONFIG_LOOPFILTERING_ACROSS_TILES |
Ryan Lei | 7386eda | 2016-12-08 21:08:31 -0800 | [diff] [blame] | 582 | &tile_loopfilter, |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 583 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 584 | &arnr_maxframes, |
| 585 | &arnr_strength, |
Yushin Cho | d808bfc | 2017-08-10 15:54:36 -0700 | [diff] [blame] | 586 | &tune_metric, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 587 | &cq_level, |
| 588 | &max_intra_rate_pct, |
| 589 | &max_inter_rate_pct, |
| 590 | &gf_cbr_boost_pct, |
| 591 | &lossless, |
Steinar Midtskogen | e44c622 | 2017-11-09 13:22:09 +0100 | [diff] [blame] | 592 | &enable_cdef, |
Yaowu Xu | 6c8ec65 | 2016-11-09 13:58:25 -0800 | [diff] [blame] | 593 | #if CONFIG_AOM_QM |
| 594 | &enable_qm, |
| 595 | &qm_min, |
| 596 | &qm_max, |
| 597 | #endif |
Yushin Cho | d808bfc | 2017-08-10 15:54:36 -0700 | [diff] [blame] | 598 | #if CONFIG_DIST_8X8 |
| 599 | &enable_dist_8x8, |
| 600 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 601 | &frame_parallel_decoding, |
| 602 | &aq_mode, |
Fangwen Fu | 6160df2 | 2017-04-24 09:45:51 -0700 | [diff] [blame] | 603 | #if CONFIG_EXT_DELTA_Q |
| 604 | &deltaq_mode, |
| 605 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 606 | &frame_periodic_boost, |
| 607 | &noise_sens, |
| 608 | &tune_content, |
| 609 | &input_color_space, |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 610 | &input_transfer_function, |
| 611 | &input_chroma_sample_position, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 612 | &min_gf_interval, |
| 613 | &max_gf_interval, |
Geza Lore | 454989f | 2016-03-24 13:56:05 +0000 | [diff] [blame] | 614 | #if CONFIG_EXT_PARTITION |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 615 | &superblock_size, |
Geza Lore | 454989f | 2016-03-24 13:56:05 +0000 | [diff] [blame] | 616 | #endif // CONFIG_EXT_PARTITION |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 617 | &num_tg, |
| 618 | &mtu_size, |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 619 | #if CONFIG_TEMPMV_SIGNALING |
| 620 | &disable_tempmv, |
| 621 | #endif |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 622 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 623 | &bitdeptharg, |
| 624 | &inbitdeptharg, |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 625 | #endif // CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 626 | NULL }; |
| 627 | static const int av1_arg_ctrl_map[] = { AOME_SET_CPUUSED, |
Jingning Han | b49c6ae | 2017-11-27 18:14:05 -0800 | [diff] [blame] | 628 | AOME_SET_DEVSF, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 629 | AOME_SET_ENABLEAUTOALTREF, |
| 630 | AOME_SET_SHARPNESS, |
| 631 | AOME_SET_STATIC_THRESHOLD, |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 632 | #if CONFIG_EXT_TILE |
| 633 | AV1E_SET_SINGLE_TILE_DECODING, |
| 634 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 635 | AV1E_SET_TILE_COLUMNS, |
| 636 | AV1E_SET_TILE_ROWS, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 637 | #if CONFIG_DEPENDENT_HORZTILES |
| 638 | AV1E_SET_TILE_DEPENDENT_ROWS, |
| 639 | #endif |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 640 | #if CONFIG_LOOPFILTERING_ACROSS_TILES |
Ryan Lei | 7386eda | 2016-12-08 21:08:31 -0800 | [diff] [blame] | 641 | AV1E_SET_TILE_LOOPFILTER, |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 642 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 643 | AOME_SET_ARNR_MAXFRAMES, |
| 644 | AOME_SET_ARNR_STRENGTH, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 645 | AOME_SET_TUNING, |
| 646 | AOME_SET_CQ_LEVEL, |
| 647 | AOME_SET_MAX_INTRA_BITRATE_PCT, |
| 648 | AV1E_SET_MAX_INTER_BITRATE_PCT, |
| 649 | AV1E_SET_GF_CBR_BOOST_PCT, |
| 650 | AV1E_SET_LOSSLESS, |
Steinar Midtskogen | e44c622 | 2017-11-09 13:22:09 +0100 | [diff] [blame] | 651 | AV1E_SET_ENABLE_CDEF, |
Yaowu Xu | 6c8ec65 | 2016-11-09 13:58:25 -0800 | [diff] [blame] | 652 | #if CONFIG_AOM_QM |
| 653 | AV1E_SET_ENABLE_QM, |
| 654 | AV1E_SET_QM_MIN, |
| 655 | AV1E_SET_QM_MAX, |
| 656 | #endif |
Yushin Cho | d808bfc | 2017-08-10 15:54:36 -0700 | [diff] [blame] | 657 | #if CONFIG_DIST_8X8 |
| 658 | AV1E_SET_ENABLE_DIST_8X8, |
| 659 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 660 | AV1E_SET_FRAME_PARALLEL_DECODING, |
| 661 | AV1E_SET_AQ_MODE, |
Fangwen Fu | 6160df2 | 2017-04-24 09:45:51 -0700 | [diff] [blame] | 662 | #if CONFIG_EXT_DELTA_Q |
| 663 | AV1E_SET_DELTAQ_MODE, |
| 664 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 665 | AV1E_SET_FRAME_PERIODIC_BOOST, |
| 666 | AV1E_SET_NOISE_SENSITIVITY, |
| 667 | AV1E_SET_TUNE_CONTENT, |
| 668 | AV1E_SET_COLOR_SPACE, |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 669 | AV1E_SET_TRANSFER_FUNCTION, |
| 670 | AV1E_SET_CHROMA_SAMPLE_POSITION, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 671 | AV1E_SET_MIN_GF_INTERVAL, |
| 672 | AV1E_SET_MAX_GF_INTERVAL, |
Geza Lore | 454989f | 2016-03-24 13:56:05 +0000 | [diff] [blame] | 673 | #if CONFIG_EXT_PARTITION |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 674 | AV1E_SET_SUPERBLOCK_SIZE, |
Geza Lore | 454989f | 2016-03-24 13:56:05 +0000 | [diff] [blame] | 675 | #endif // CONFIG_EXT_PARTITION |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 676 | AV1E_SET_NUM_TG, |
| 677 | AV1E_SET_MTU, |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 678 | #if CONFIG_TEMPMV_SIGNALING |
| 679 | AV1E_SET_DISABLE_TEMPMV, |
| 680 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 681 | 0 }; |
hui su | 82331e0 | 2015-08-16 18:21:56 -0700 | [diff] [blame] | 682 | #endif |
| 683 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 684 | static const arg_def_t *no_args[] = { NULL }; |
| 685 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 686 | void show_help(FILE *fout, int shorthelp) { |
| 687 | fprintf(fout, "Usage: %s <options> -o dst_filename src_filename \n", |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 688 | exec_name); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 689 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 690 | if (shorthelp) { |
| 691 | fprintf(fout, "Use --help to see the full list of options.\n"); |
| 692 | return; |
| 693 | } |
| 694 | |
| 695 | fprintf(fout, "\nOptions:\n"); |
| 696 | arg_show_usage(fout, main_args); |
| 697 | fprintf(fout, "\nEncoder Global Options:\n"); |
| 698 | arg_show_usage(fout, global_args); |
| 699 | fprintf(fout, "\nRate Control Options:\n"); |
| 700 | arg_show_usage(fout, rc_args); |
| 701 | fprintf(fout, "\nTwopass Rate Control Options:\n"); |
| 702 | arg_show_usage(fout, rc_twopass_args); |
| 703 | fprintf(fout, "\nKeyframe Placement Options:\n"); |
| 704 | arg_show_usage(fout, kf_args); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 705 | #if CONFIG_AV1_ENCODER |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 706 | fprintf(fout, "\nAV1 Specific Options:\n"); |
| 707 | arg_show_usage(fout, av1_args); |
hui su | 82331e0 | 2015-08-16 18:21:56 -0700 | [diff] [blame] | 708 | #endif |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 709 | fprintf(fout, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 710 | "\nStream timebase (--timebase):\n" |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 711 | " The desired precision of timestamps in the output, expressed\n" |
| 712 | " in fractional seconds. Default is 1/1000.\n"); |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 713 | fprintf(fout, "\nIncluded encoders:\n\n"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 714 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 715 | const int num_encoder = get_aom_encoder_count(); |
| 716 | for (int i = 0; i < num_encoder; ++i) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 717 | const AvxInterface *const encoder = get_aom_encoder_by_index(i); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 718 | const char *defstr = (i == (num_encoder - 1)) ? "(default)" : ""; |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 719 | fprintf(fout, " %-6s - %s %s\n", encoder->name, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 720 | aom_codec_iface_name(encoder->codec_interface()), defstr); |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 721 | } |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 722 | fprintf(fout, "\n "); |
| 723 | fprintf(fout, "Use --codec to switch to a non-default encoder.\n\n"); |
| 724 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 725 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 726 | void usage_exit(void) { |
| 727 | show_help(stderr, 1); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 728 | exit(EXIT_FAILURE); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 729 | } |
| 730 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 731 | #if CONFIG_AV1_ENCODER |
| 732 | #define ARG_CTRL_CNT_MAX NELEMENTS(av1_arg_ctrl_map) |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 733 | #endif |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 734 | |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 735 | #if !CONFIG_WEBM_IO |
| 736 | typedef int stereo_format_t; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 737 | struct WebmOutputContext { |
| 738 | int debug; |
| 739 | }; |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 740 | #endif |
| 741 | |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 742 | /* Per-stream configuration */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 743 | struct stream_config { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 744 | struct aom_codec_enc_cfg cfg; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 745 | const char *out_fn; |
| 746 | const char *stats_fn; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 747 | #if CONFIG_FP_MB_STATS |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 748 | const char *fpmb_stats_fn; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 749 | #endif |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 750 | stereo_format_t stereo_fmt; |
| 751 | int arg_ctrls[ARG_CTRL_CNT_MAX][2]; |
| 752 | int arg_ctrl_cnt; |
| 753 | int write_webm; |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 754 | #if CONFIG_OBU_NO_IVF |
| 755 | int write_ivf; |
| 756 | #endif |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 757 | // whether to use 16bit internal buffers |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 758 | int use_16bit_internal; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 759 | }; |
| 760 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 761 | struct stream_state { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 762 | int index; |
| 763 | struct stream_state *next; |
| 764 | struct stream_config config; |
| 765 | FILE *file; |
| 766 | struct rate_hist *rate_hist; |
| 767 | struct WebmOutputContext webm_ctx; |
| 768 | uint64_t psnr_sse_total; |
| 769 | uint64_t psnr_samples_total; |
| 770 | double psnr_totals[4]; |
| 771 | int psnr_count; |
| 772 | int counts[64]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 773 | aom_codec_ctx_t encoder; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 774 | unsigned int frames_out; |
| 775 | uint64_t cx_time; |
| 776 | size_t nbytes; |
| 777 | stats_io_t stats; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 778 | #if CONFIG_FP_MB_STATS |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 779 | stats_io_t fpmb_stats; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 780 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 781 | struct aom_image *img; |
| 782 | aom_codec_ctx_t decoder; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 783 | int mismatch_seen; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 784 | }; |
| 785 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 786 | static void validate_positive_rational(const char *msg, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 787 | struct aom_rational *rat) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 788 | if (rat->den < 0) { |
| 789 | rat->num *= -1; |
| 790 | rat->den *= -1; |
| 791 | } |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 792 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 793 | if (rat->num < 0) die("Error: %s must be positive\n", msg); |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 794 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 795 | if (!rat->den) die("Error: %s has zero denominator\n", msg); |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 796 | } |
| 797 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 798 | static void parse_global_config(struct AvxEncoderConfig *global, char **argv) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 799 | char **argi, **argj; |
| 800 | struct arg arg; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 801 | const int num_encoder = get_aom_encoder_count(); |
Yaowu Xu | f990b35 | 2015-06-01 09:13:59 -0700 | [diff] [blame] | 802 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 803 | if (num_encoder < 1) die("Error: no valid encoder available\n"); |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 804 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 805 | /* Initialize default parameters */ |
| 806 | memset(global, 0, sizeof(*global)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 807 | global->codec = get_aom_encoder_by_index(num_encoder - 1); |
Deb Mukherjee | 0d8723f | 2013-08-19 14:16:26 -0700 | [diff] [blame] | 808 | global->passes = 0; |
Deb Mukherjee | 090f4d4 | 2014-07-16 09:37:13 -0700 | [diff] [blame] | 809 | global->color_type = I420; |
Deb Mukherjee | 0d8723f | 2013-08-19 14:16:26 -0700 | [diff] [blame] | 810 | /* Assign default deadline to good quality */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 811 | global->deadline = AOM_DL_GOOD_QUALITY; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 812 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 813 | for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) { |
| 814 | arg.argv_step = 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 815 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 816 | if (arg_match(&arg, &help, argi)) { |
| 817 | show_help(stdout, 0); |
| 818 | exit(EXIT_SUCCESS); |
| 819 | } else if (arg_match(&arg, &codecarg, argi)) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 820 | global->codec = get_aom_encoder_by_name(arg.val); |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 821 | if (!global->codec) |
| 822 | die("Error: Unrecognized argument (%s) to --codec\n", arg.val); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 823 | } else if (arg_match(&arg, &passes, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 824 | global->passes = arg_parse_uint(&arg); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 825 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 826 | if (global->passes < 1 || global->passes > 2) |
| 827 | die("Error: Invalid number of passes (%d)\n", global->passes); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 828 | } else if (arg_match(&arg, &pass_arg, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 829 | global->pass = arg_parse_uint(&arg); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 830 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 831 | if (global->pass < 1 || global->pass > 2) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 832 | die("Error: Invalid pass selected (%d)\n", global->pass); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 833 | } else if (arg_match(&arg, &usage, argi)) |
| 834 | global->usage = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 835 | else if (arg_match(&arg, &deadline, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 836 | global->deadline = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 837 | else if (arg_match(&arg, &good_dl, argi)) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 838 | global->deadline = AOM_DL_GOOD_QUALITY; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 839 | else if (arg_match(&arg, &use_yv12, argi)) |
Deb Mukherjee | 090f4d4 | 2014-07-16 09:37:13 -0700 | [diff] [blame] | 840 | global->color_type = YV12; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 841 | else if (arg_match(&arg, &use_i420, argi)) |
Deb Mukherjee | 090f4d4 | 2014-07-16 09:37:13 -0700 | [diff] [blame] | 842 | global->color_type = I420; |
| 843 | else if (arg_match(&arg, &use_i422, argi)) |
| 844 | global->color_type = I422; |
| 845 | else if (arg_match(&arg, &use_i444, argi)) |
| 846 | global->color_type = I444; |
Deb Mukherjee | a30774c | 2014-10-01 12:17:37 -0700 | [diff] [blame] | 847 | else if (arg_match(&arg, &use_i440, argi)) |
| 848 | global->color_type = I440; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 849 | else if (arg_match(&arg, &quietarg, argi)) |
| 850 | global->quiet = 1; |
| 851 | else if (arg_match(&arg, &verbosearg, argi)) |
| 852 | global->verbose = 1; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 853 | else if (arg_match(&arg, &limit, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 854 | global->limit = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 855 | else if (arg_match(&arg, &skip, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 856 | global->skip_frames = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 857 | else if (arg_match(&arg, &psnrarg, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 858 | global->show_psnr = 1; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 859 | else if (arg_match(&arg, &recontest, argi)) |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 860 | global->test_decode = arg_parse_enum_or_int(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 861 | else if (arg_match(&arg, &framerate, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 862 | global->framerate = arg_parse_rational(&arg); |
| 863 | validate_positive_rational(arg.name, &global->framerate); |
| 864 | global->have_framerate = 1; |
| 865 | } else if (arg_match(&arg, &out_part, argi)) |
| 866 | global->out_part = 1; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 867 | else if (arg_match(&arg, &debugmode, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 868 | global->debug = 1; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 869 | else if (arg_match(&arg, &q_hist_n, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 870 | global->show_q_hist_buckets = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 871 | else if (arg_match(&arg, &rate_hist_n, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 872 | global->show_rate_hist_buckets = arg_parse_uint(&arg); |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 873 | else if (arg_match(&arg, &disable_warnings, argi)) |
| 874 | global->disable_warnings = 1; |
| 875 | else if (arg_match(&arg, &disable_warning_prompt, argi)) |
| 876 | global->disable_warning_prompt = 1; |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 877 | else |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 878 | argj++; |
| 879 | } |
| 880 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 881 | if (global->pass) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 882 | /* DWIM: Assume the user meant passes=2 if pass=2 is specified */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 883 | if (global->pass > global->passes) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 884 | warn("Assuming --pass=%d implies --passes=%d\n", global->pass, |
| 885 | global->pass); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 886 | global->passes = global->pass; |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 887 | } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 888 | } |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 889 | /* Validate global config */ |
| 890 | if (global->passes == 0) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 891 | #if CONFIG_AV1_ENCODER |
| 892 | // Make default AV1 passes = 2 until there is a better quality 1-pass |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 893 | // encoder |
Jim Bankoski | c901a4f | 2014-08-21 07:18:07 -0700 | [diff] [blame] | 894 | if (global->codec != NULL && global->codec->name != NULL) |
Thomas Daede | 8082614 | 2017-03-20 15:44:24 -0700 | [diff] [blame] | 895 | global->passes = (strcmp(global->codec->name, "av1") == 0) ? 2 : 1; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 896 | #else |
| 897 | global->passes = 1; |
| 898 | #endif |
| 899 | } |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 900 | } |
| 901 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 902 | static void open_input_file(struct AvxInputContext *input) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 903 | /* Parse certain options from the input file, if possible */ |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 904 | input->file = strcmp(input->filename, "-") ? fopen(input->filename, "rb") |
| 905 | : set_binary_mode(stdin); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 906 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 907 | if (!input->file) fatal("Failed to open input file"); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 908 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 909 | if (!fseeko(input->file, 0, SEEK_END)) { |
| 910 | /* Input file is seekable. Figure out how long it is, so we can get |
| 911 | * progress info. |
| 912 | */ |
| 913 | input->length = ftello(input->file); |
| 914 | rewind(input->file); |
| 915 | } |
| 916 | |
Frank Galligan | 09acd26 | 2015-06-01 10:20:58 -0700 | [diff] [blame] | 917 | /* Default to 1:1 pixel aspect ratio. */ |
| 918 | input->pixel_aspect_ratio.numerator = 1; |
| 919 | input->pixel_aspect_ratio.denominator = 1; |
| 920 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 921 | /* For RAW input sources, these bytes will applied on the first frame |
| 922 | * in read_frame(). |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 923 | */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 924 | input->detect.buf_read = fread(input->detect.buf, 1, 4, input->file); |
| 925 | input->detect.position = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 926 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 927 | if (input->detect.buf_read == 4 && file_is_y4m(input->detect.buf)) { |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 928 | if (y4m_input_open(&input->y4m, input->file, input->detect.buf, 4, |
| 929 | input->only_i420) >= 0) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 930 | input->file_type = FILE_TYPE_Y4M; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 931 | input->width = input->y4m.pic_w; |
| 932 | input->height = input->y4m.pic_h; |
Frank Galligan | 09acd26 | 2015-06-01 10:20:58 -0700 | [diff] [blame] | 933 | input->pixel_aspect_ratio.numerator = input->y4m.par_n; |
| 934 | input->pixel_aspect_ratio.denominator = input->y4m.par_d; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 935 | input->framerate.numerator = input->y4m.fps_n; |
| 936 | input->framerate.denominator = input->y4m.fps_d; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 937 | input->fmt = input->y4m.aom_fmt; |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 938 | input->bit_depth = input->y4m.bit_depth; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 939 | } else |
| 940 | fatal("Unsupported Y4M stream."); |
Alex Converse | 64b89f1 | 2014-01-06 16:29:09 -0800 | [diff] [blame] | 941 | } else if (input->detect.buf_read == 4 && fourcc_is_ivf(input->detect.buf)) { |
Tom Finegan | 6c270ed | 2013-11-08 11:32:23 -0800 | [diff] [blame] | 942 | fatal("IVF is not supported as input."); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 943 | } else { |
| 944 | input->file_type = FILE_TYPE_RAW; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 945 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 946 | } |
| 947 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 948 | static void close_input_file(struct AvxInputContext *input) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 949 | fclose(input->file); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 950 | if (input->file_type == FILE_TYPE_Y4M) y4m_input_close(&input->y4m); |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 951 | } |
| 952 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 953 | static struct stream_state *new_stream(struct AvxEncoderConfig *global, |
Tom Finegan | 6c270ed | 2013-11-08 11:32:23 -0800 | [diff] [blame] | 954 | struct stream_state *prev) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 955 | struct stream_state *stream; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 956 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 957 | stream = calloc(1, sizeof(*stream)); |
Jim Bankoski | c901a4f | 2014-08-21 07:18:07 -0700 | [diff] [blame] | 958 | if (stream == NULL) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 959 | fatal("Failed to allocate new stream."); |
Jim Bankoski | c901a4f | 2014-08-21 07:18:07 -0700 | [diff] [blame] | 960 | } |
| 961 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 962 | if (prev) { |
| 963 | memcpy(stream, prev, sizeof(*stream)); |
| 964 | stream->index++; |
| 965 | prev->next = stream; |
| 966 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 967 | aom_codec_err_t res; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 968 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 969 | /* Populate encoder configuration */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 970 | res = aom_codec_enc_config_default(global->codec->codec_interface(), |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 971 | &stream->config.cfg, global->usage); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 972 | if (res) fatal("Failed to get config: %s\n", aom_codec_err_to_string(res)); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 973 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 974 | /* Change the default timebase to a high enough value so that the |
| 975 | * encoder will always create strictly increasing timestamps. |
| 976 | */ |
| 977 | stream->config.cfg.g_timebase.den = 1000; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 978 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 979 | /* Never use the library's default resolution, require it be parsed |
| 980 | * from the file or set on the command line. |
| 981 | */ |
| 982 | stream->config.cfg.g_w = 0; |
| 983 | stream->config.cfg.g_h = 0; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 984 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 985 | /* Initialize remaining stream parameters */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 986 | stream->config.write_webm = 1; |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 987 | #if CONFIG_OBU_NO_IVF |
| 988 | stream->config.write_ivf = 0; |
| 989 | #endif |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 990 | #if CONFIG_WEBM_IO |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 991 | stream->config.stereo_fmt = STEREO_FORMAT_MONO; |
Vignesh Venkatasubramanian | 9441f10 | 2016-04-25 13:28:24 -0700 | [diff] [blame] | 992 | stream->webm_ctx.last_pts_ns = -1; |
| 993 | stream->webm_ctx.writer = NULL; |
| 994 | stream->webm_ctx.segment = NULL; |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 995 | #endif |
Johann | 87c40b3 | 2012-03-01 16:12:53 -0800 | [diff] [blame] | 996 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 997 | /* Allows removal of the application version from the EBML tags */ |
Vignesh Venkatasubramanian | 9441f10 | 2016-04-25 13:28:24 -0700 | [diff] [blame] | 998 | stream->webm_ctx.debug = global->debug; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 999 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1000 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1001 | /* Output files must be specified for each stream */ |
| 1002 | stream->config.out_fn = NULL; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1003 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1004 | stream->next = NULL; |
| 1005 | return stream; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1006 | } |
| 1007 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1008 | static int parse_stream_params(struct AvxEncoderConfig *global, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1009 | struct stream_state *stream, char **argv) { |
| 1010 | char **argi, **argj; |
| 1011 | struct arg arg; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1012 | static const arg_def_t **ctrl_args = no_args; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1013 | static const int *ctrl_args_map = NULL; |
| 1014 | struct stream_config *config = &stream->config; |
| 1015 | int eos_mark_found = 0; |
Tristan Matthews | ed858d6 | 2017-07-24 15:33:44 -0400 | [diff] [blame] | 1016 | int webm_forced = 0; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1017 | |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 1018 | // Handle codec specific options |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 1019 | if (0) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1020 | #if CONFIG_AV1_ENCODER |
| 1021 | } else if (strcmp(global->codec->name, "av1") == 0) { |
| 1022 | // TODO(jingning): Reuse AV1 specific encoder configuration parameters. |
| 1023 | // Consider to expand this set for AV1 encoder control. |
| 1024 | ctrl_args = av1_args; |
| 1025 | ctrl_args_map = av1_arg_ctrl_map; |
Jingning Han | 3ee6db6 | 2015-08-05 19:00:31 -0700 | [diff] [blame] | 1026 | #endif |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1027 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1028 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1029 | for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1030 | arg.argv_step = 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1031 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1032 | /* Once we've found an end-of-stream marker (--) we want to continue |
| 1033 | * shifting arguments but not consuming them. |
| 1034 | */ |
| 1035 | if (eos_mark_found) { |
| 1036 | argj++; |
| 1037 | continue; |
| 1038 | } else if (!strcmp(*argj, "--")) { |
| 1039 | eos_mark_found = 1; |
| 1040 | continue; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1041 | } |
| 1042 | |
Adrian Grange | d240180 | 2015-02-13 14:51:32 -0800 | [diff] [blame] | 1043 | if (arg_match(&arg, &outputfile, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1044 | config->out_fn = arg.val; |
Tristan Matthews | ed858d6 | 2017-07-24 15:33:44 -0400 | [diff] [blame] | 1045 | if (!webm_forced) { |
| 1046 | const size_t out_fn_len = strlen(config->out_fn); |
| 1047 | if (out_fn_len >= 4 && |
| 1048 | !strcmp(config->out_fn + out_fn_len - 4, ".ivf")) { |
| 1049 | config->write_webm = 0; |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1050 | #if CONFIG_OBU_NO_IVF |
| 1051 | config->write_ivf = 1; |
| 1052 | #endif |
Tristan Matthews | ed858d6 | 2017-07-24 15:33:44 -0400 | [diff] [blame] | 1053 | } |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1054 | #if CONFIG_OBU_NO_IVF |
| 1055 | else if (out_fn_len >= 4 && |
| 1056 | !strcmp(config->out_fn + out_fn_len - 4, ".obu")) { |
| 1057 | config->write_webm = 0; |
| 1058 | config->write_ivf = 0; |
| 1059 | } |
| 1060 | #endif |
Tristan Matthews | ed858d6 | 2017-07-24 15:33:44 -0400 | [diff] [blame] | 1061 | } |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1062 | } else if (arg_match(&arg, &fpf_name, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1063 | config->stats_fn = arg.val; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1064 | #if CONFIG_FP_MB_STATS |
| 1065 | } else if (arg_match(&arg, &fpmbf_name, argi)) { |
| 1066 | config->fpmb_stats_fn = arg.val; |
| 1067 | #endif |
Johann | b50e518 | 2015-01-30 15:05:14 -0800 | [diff] [blame] | 1068 | } else if (arg_match(&arg, &use_webm, argi)) { |
| 1069 | #if CONFIG_WEBM_IO |
| 1070 | config->write_webm = 1; |
Tristan Matthews | ed858d6 | 2017-07-24 15:33:44 -0400 | [diff] [blame] | 1071 | webm_forced = 1; |
Johann | b50e518 | 2015-01-30 15:05:14 -0800 | [diff] [blame] | 1072 | #else |
| 1073 | die("Error: --webm specified but webm is disabled."); |
| 1074 | #endif |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1075 | } else if (arg_match(&arg, &use_ivf, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1076 | config->write_webm = 0; |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1077 | #if CONFIG_OBU_NO_IVF |
| 1078 | config->write_ivf = 1; |
| 1079 | #endif |
| 1080 | #if CONFIG_OBU_NO_IVF |
| 1081 | } else if (arg_match(&arg, &use_obu, argi)) { |
| 1082 | config->write_webm = 0; |
| 1083 | config->write_ivf = 0; |
| 1084 | #endif |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1085 | } else if (arg_match(&arg, &threads, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1086 | config->cfg.g_threads = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1087 | } else if (arg_match(&arg, &profile, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1088 | config->cfg.g_profile = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1089 | } else if (arg_match(&arg, &width, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1090 | config->cfg.g_w = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1091 | } else if (arg_match(&arg, &height, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1092 | config->cfg.g_h = arg_parse_uint(&arg); |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1093 | #if CONFIG_HIGHBITDEPTH |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1094 | } else if (arg_match(&arg, &bitdeptharg, argi)) { |
| 1095 | config->cfg.g_bit_depth = arg_parse_enum_or_int(&arg); |
| 1096 | } else if (arg_match(&arg, &inbitdeptharg, argi)) { |
| 1097 | config->cfg.g_input_bit_depth = arg_parse_uint(&arg); |
| 1098 | #endif |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 1099 | #if CONFIG_WEBM_IO |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1100 | } else if (arg_match(&arg, &stereo_mode, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1101 | config->stereo_fmt = arg_parse_enum_or_int(&arg); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 1102 | #endif |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1103 | } else if (arg_match(&arg, &timebase, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1104 | config->cfg.g_timebase = arg_parse_rational(&arg); |
| 1105 | validate_positive_rational(arg.name, &config->cfg.g_timebase); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1106 | } else if (arg_match(&arg, &error_resilient, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1107 | config->cfg.g_error_resilient = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1108 | } else if (arg_match(&arg, &lag_in_frames, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1109 | config->cfg.g_lag_in_frames = arg_parse_uint(&arg); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 1110 | #if CONFIG_EXT_TILE |
| 1111 | } else if (arg_match(&arg, &large_scale_tile, argi)) { |
| 1112 | config->cfg.large_scale_tile = arg_parse_uint(&arg); |
| 1113 | #endif // CONFIG_EXT_TILE |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1114 | } else if (arg_match(&arg, &dropframe_thresh, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1115 | config->cfg.rc_dropframe_thresh = arg_parse_uint(&arg); |
Debargha Mukherjee | 29e40a6 | 2017-06-14 09:37:12 -0700 | [diff] [blame] | 1116 | } else if (arg_match(&arg, &resize_mode, argi)) { |
| 1117 | config->cfg.rc_resize_mode = arg_parse_uint(&arg); |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 1118 | } else if (arg_match(&arg, &resize_denominator, argi)) { |
| 1119 | config->cfg.rc_resize_denominator = arg_parse_uint(&arg); |
| 1120 | } else if (arg_match(&arg, &resize_kf_denominator, argi)) { |
| 1121 | config->cfg.rc_resize_kf_denominator = arg_parse_uint(&arg); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 1122 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | c4e7894 | 2017-04-10 14:59:00 -0700 | [diff] [blame] | 1123 | } else if (arg_match(&arg, &superres_mode, argi)) { |
| 1124 | config->cfg.rc_superres_mode = arg_parse_uint(&arg); |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 1125 | } else if (arg_match(&arg, &superres_denominator, argi)) { |
| 1126 | config->cfg.rc_superres_denominator = arg_parse_uint(&arg); |
| 1127 | } else if (arg_match(&arg, &superres_kf_denominator, argi)) { |
| 1128 | config->cfg.rc_superres_kf_denominator = arg_parse_uint(&arg); |
Debargha Mukherjee | 7166f22 | 2017-09-05 21:32:42 -0700 | [diff] [blame] | 1129 | } else if (arg_match(&arg, &superres_qthresh, argi)) { |
| 1130 | config->cfg.rc_superres_qthresh = arg_parse_uint(&arg); |
| 1131 | } else if (arg_match(&arg, &superres_kf_qthresh, argi)) { |
| 1132 | config->cfg.rc_superres_kf_qthresh = arg_parse_uint(&arg); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 1133 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1134 | } else if (arg_match(&arg, &end_usage, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1135 | config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1136 | } else if (arg_match(&arg, &target_bitrate, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1137 | config->cfg.rc_target_bitrate = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1138 | } else if (arg_match(&arg, &min_quantizer, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1139 | config->cfg.rc_min_quantizer = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1140 | } else if (arg_match(&arg, &max_quantizer, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1141 | config->cfg.rc_max_quantizer = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1142 | } else if (arg_match(&arg, &undershoot_pct, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1143 | config->cfg.rc_undershoot_pct = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1144 | } else if (arg_match(&arg, &overshoot_pct, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1145 | config->cfg.rc_overshoot_pct = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1146 | } else if (arg_match(&arg, &buf_sz, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1147 | config->cfg.rc_buf_sz = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1148 | } else if (arg_match(&arg, &buf_initial_sz, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1149 | config->cfg.rc_buf_initial_sz = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1150 | } else if (arg_match(&arg, &buf_optimal_sz, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1151 | config->cfg.rc_buf_optimal_sz = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1152 | } else if (arg_match(&arg, &bias_pct, argi)) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1153 | config->cfg.rc_2pass_vbr_bias_pct = arg_parse_uint(&arg); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1154 | if (global->passes < 2) |
| 1155 | warn("option %s ignored in one-pass mode.\n", arg.name); |
| 1156 | } else if (arg_match(&arg, &minsection_pct, argi)) { |
| 1157 | config->cfg.rc_2pass_vbr_minsection_pct = arg_parse_uint(&arg); |
| 1158 | |
| 1159 | if (global->passes < 2) |
| 1160 | warn("option %s ignored in one-pass mode.\n", arg.name); |
| 1161 | } else if (arg_match(&arg, &maxsection_pct, argi)) { |
| 1162 | config->cfg.rc_2pass_vbr_maxsection_pct = arg_parse_uint(&arg); |
| 1163 | |
| 1164 | if (global->passes < 2) |
| 1165 | warn("option %s ignored in one-pass mode.\n", arg.name); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1166 | } else if (arg_match(&arg, &kf_min_dist, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1167 | config->cfg.kf_min_dist = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1168 | } else if (arg_match(&arg, &kf_max_dist, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1169 | config->cfg.kf_max_dist = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1170 | } else if (arg_match(&arg, &kf_disabled, argi)) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1171 | config->cfg.kf_mode = AOM_KF_DISABLED; |
Dominic Symes | 26ad0b2 | 2017-10-01 16:35:13 +0200 | [diff] [blame] | 1172 | #if CONFIG_MAX_TILE |
| 1173 | } else if (arg_match(&arg, &tile_width, argi)) { |
| 1174 | config->cfg.tile_width_count = |
| 1175 | arg_parse_list(&arg, config->cfg.tile_widths, MAX_TILE_WIDTHS); |
| 1176 | } else if (arg_match(&arg, &tile_height, argi)) { |
| 1177 | config->cfg.tile_height_count = |
| 1178 | arg_parse_list(&arg, config->cfg.tile_heights, MAX_TILE_HEIGHTS); |
| 1179 | #endif |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 1180 | } else { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1181 | int i, match = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1182 | for (i = 0; ctrl_args[i]; i++) { |
| 1183 | if (arg_match(&arg, ctrl_args[i], argi)) { |
| 1184 | int j; |
| 1185 | match = 1; |
| 1186 | |
| 1187 | /* Point either to the next free element or the first |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1188 | * instance of this control. |
| 1189 | */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1190 | for (j = 0; j < config->arg_ctrl_cnt; j++) |
Jim Bankoski | c901a4f | 2014-08-21 07:18:07 -0700 | [diff] [blame] | 1191 | if (ctrl_args_map != NULL && |
| 1192 | config->arg_ctrls[j][0] == ctrl_args_map[i]) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1193 | break; |
| 1194 | |
| 1195 | /* Update/insert */ |
Yaowu Xu | 618e7ef | 2014-07-11 16:27:21 -0700 | [diff] [blame] | 1196 | assert(j < (int)ARG_CTRL_CNT_MAX); |
Jim Bankoski | c901a4f | 2014-08-21 07:18:07 -0700 | [diff] [blame] | 1197 | if (ctrl_args_map != NULL && j < (int)ARG_CTRL_CNT_MAX) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1198 | config->arg_ctrls[j][0] = ctrl_args_map[i]; |
| 1199 | config->arg_ctrls[j][1] = arg_parse_enum_or_int(&arg); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1200 | if (j == config->arg_ctrl_cnt) config->arg_ctrl_cnt++; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1201 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1202 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1203 | } |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1204 | if (!match) argj++; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1205 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1206 | } |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1207 | #if CONFIG_HIGHBITDEPTH |
Sebastien Alaiwan | 14af5b9 | 2017-05-12 14:27:30 +0200 | [diff] [blame] | 1208 | config->use_16bit_internal = |
Sebastien Alaiwan | 0b2e403 | 2017-06-05 12:47:04 +0200 | [diff] [blame] | 1209 | config->cfg.g_bit_depth > AOM_BITS_8 || !CONFIG_LOWBITDEPTH; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1210 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1211 | return eos_mark_found; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1212 | } |
| 1213 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1214 | #define FOREACH_STREAM(iterator, list) \ |
| 1215 | for (struct stream_state *iterator = list; iterator; \ |
| 1216 | iterator = iterator->next) |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1217 | |
Alex Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 1218 | static void validate_stream_config(const struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1219 | const struct AvxEncoderConfig *global) { |
Alex Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 1220 | const struct stream_state *streami; |
Johann | 80b344d | 2014-12-16 12:22:10 -0800 | [diff] [blame] | 1221 | (void)global; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1222 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1223 | if (!stream->config.cfg.g_w || !stream->config.cfg.g_h) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1224 | fatal( |
| 1225 | "Stream %d: Specify stream dimensions with --width (-w) " |
| 1226 | " and --height (-h)", |
| 1227 | stream->index); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1228 | |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1229 | // Check that the codec bit depth is greater than the input bit depth. |
| 1230 | if (stream->config.cfg.g_input_bit_depth > |
Yaowu Xu | dbdb87b | 2014-09-03 17:02:31 -0700 | [diff] [blame] | 1231 | (unsigned int)stream->config.cfg.g_bit_depth) { |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1232 | fatal("Stream %d: codec bit depth (%d) less than input bit depth (%d)", |
| 1233 | stream->index, (int)stream->config.cfg.g_bit_depth, |
| 1234 | stream->config.cfg.g_input_bit_depth); |
| 1235 | } |
| 1236 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1237 | for (streami = stream; streami; streami = streami->next) { |
| 1238 | /* All streams require output files */ |
| 1239 | if (!streami->config.out_fn) |
| 1240 | fatal("Stream %d: Output file is required (specify with -o)", |
| 1241 | streami->index); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1242 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1243 | /* Check for two streams outputting to the same file */ |
| 1244 | if (streami != stream) { |
| 1245 | const char *a = stream->config.out_fn; |
| 1246 | const char *b = streami->config.out_fn; |
| 1247 | if (!strcmp(a, b) && strcmp(a, "/dev/null") && strcmp(a, ":nul")) |
| 1248 | fatal("Stream %d: duplicate output file (from stream %d)", |
| 1249 | streami->index, stream->index); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1250 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1251 | |
| 1252 | /* Check for two streams sharing a stats file. */ |
| 1253 | if (streami != stream) { |
| 1254 | const char *a = stream->config.stats_fn; |
| 1255 | const char *b = streami->config.stats_fn; |
| 1256 | if (a && b && !strcmp(a, b)) |
| 1257 | fatal("Stream %d: duplicate stats file (from stream %d)", |
| 1258 | streami->index, stream->index); |
| 1259 | } |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1260 | |
| 1261 | #if CONFIG_FP_MB_STATS |
| 1262 | /* Check for two streams sharing a mb stats file. */ |
| 1263 | if (streami != stream) { |
| 1264 | const char *a = stream->config.fpmb_stats_fn; |
| 1265 | const char *b = streami->config.fpmb_stats_fn; |
| 1266 | if (a && b && !strcmp(a, b)) |
| 1267 | fatal("Stream %d: duplicate mb stats file (from stream %d)", |
| 1268 | streami->index, stream->index); |
| 1269 | } |
| 1270 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1271 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1272 | } |
| 1273 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1274 | static void set_stream_dimensions(struct stream_state *stream, unsigned int w, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1275 | unsigned int h) { |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1276 | if (!stream->config.cfg.g_w) { |
| 1277 | if (!stream->config.cfg.g_h) |
| 1278 | stream->config.cfg.g_w = w; |
| 1279 | else |
| 1280 | stream->config.cfg.g_w = w * stream->config.cfg.g_h / h; |
| 1281 | } |
| 1282 | if (!stream->config.cfg.g_h) { |
| 1283 | stream->config.cfg.g_h = h * stream->config.cfg.g_w / w; |
| 1284 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1285 | } |
| 1286 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1287 | static const char *file_type_to_string(enum VideoFileType t) { |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1288 | switch (t) { |
| 1289 | case FILE_TYPE_RAW: return "RAW"; |
| 1290 | case FILE_TYPE_Y4M: return "Y4M"; |
| 1291 | default: return "Other"; |
| 1292 | } |
| 1293 | } |
| 1294 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1295 | static const char *image_format_to_string(aom_img_fmt_t f) { |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1296 | switch (f) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1297 | case AOM_IMG_FMT_I420: return "I420"; |
| 1298 | case AOM_IMG_FMT_I422: return "I422"; |
| 1299 | case AOM_IMG_FMT_I444: return "I444"; |
| 1300 | case AOM_IMG_FMT_I440: return "I440"; |
| 1301 | case AOM_IMG_FMT_YV12: return "YV12"; |
| 1302 | case AOM_IMG_FMT_I42016: return "I42016"; |
| 1303 | case AOM_IMG_FMT_I42216: return "I42216"; |
| 1304 | case AOM_IMG_FMT_I44416: return "I44416"; |
| 1305 | case AOM_IMG_FMT_I44016: return "I44016"; |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1306 | default: return "Other"; |
| 1307 | } |
| 1308 | } |
Ralph Giles | 061a16d | 2012-01-05 15:05:05 -0600 | [diff] [blame] | 1309 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1310 | static void show_stream_config(struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1311 | struct AvxEncoderConfig *global, |
| 1312 | struct AvxInputContext *input) { |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1313 | #define SHOW(field) \ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1314 | fprintf(stderr, " %-28s = %d\n", #field, stream->config.cfg.field) |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1315 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1316 | if (stream->index == 0) { |
| 1317 | fprintf(stderr, "Codec: %s\n", |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1318 | aom_codec_iface_name(global->codec->codec_interface())); |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1319 | fprintf(stderr, "Source file: %s File Type: %s Format: %s\n", |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1320 | input->filename, file_type_to_string(input->file_type), |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1321 | image_format_to_string(input->fmt)); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1322 | } |
| 1323 | if (stream->next || stream->index) |
| 1324 | fprintf(stderr, "\nStream Index: %d\n", stream->index); |
| 1325 | fprintf(stderr, "Destination file: %s\n", stream->config.out_fn); |
Sebastien Alaiwan | 2751192 | 2017-06-05 15:25:46 +0200 | [diff] [blame] | 1326 | fprintf(stderr, "Coding path: %s\n", |
| 1327 | stream->config.use_16bit_internal ? "HBD" : "LBD"); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1328 | fprintf(stderr, "Encoder parameters:\n"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1329 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1330 | SHOW(g_usage); |
| 1331 | SHOW(g_threads); |
| 1332 | SHOW(g_profile); |
| 1333 | SHOW(g_w); |
| 1334 | SHOW(g_h); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1335 | SHOW(g_bit_depth); |
| 1336 | SHOW(g_input_bit_depth); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1337 | SHOW(g_timebase.num); |
| 1338 | SHOW(g_timebase.den); |
| 1339 | SHOW(g_error_resilient); |
| 1340 | SHOW(g_pass); |
| 1341 | SHOW(g_lag_in_frames); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 1342 | #if CONFIG_EXT_TILE |
| 1343 | SHOW(large_scale_tile); |
| 1344 | #endif // CONFIG_EXT_TILE |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1345 | SHOW(rc_dropframe_thresh); |
Debargha Mukherjee | 29e40a6 | 2017-06-14 09:37:12 -0700 | [diff] [blame] | 1346 | SHOW(rc_resize_mode); |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 1347 | SHOW(rc_resize_denominator); |
| 1348 | SHOW(rc_resize_kf_denominator); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 1349 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | c4e7894 | 2017-04-10 14:59:00 -0700 | [diff] [blame] | 1350 | SHOW(rc_superres_mode); |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 1351 | SHOW(rc_superres_denominator); |
| 1352 | SHOW(rc_superres_kf_denominator); |
Debargha Mukherjee | 7166f22 | 2017-09-05 21:32:42 -0700 | [diff] [blame] | 1353 | SHOW(rc_superres_qthresh); |
| 1354 | SHOW(rc_superres_kf_qthresh); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 1355 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1356 | SHOW(rc_end_usage); |
| 1357 | SHOW(rc_target_bitrate); |
| 1358 | SHOW(rc_min_quantizer); |
| 1359 | SHOW(rc_max_quantizer); |
| 1360 | SHOW(rc_undershoot_pct); |
| 1361 | SHOW(rc_overshoot_pct); |
| 1362 | SHOW(rc_buf_sz); |
| 1363 | SHOW(rc_buf_initial_sz); |
| 1364 | SHOW(rc_buf_optimal_sz); |
| 1365 | SHOW(rc_2pass_vbr_bias_pct); |
| 1366 | SHOW(rc_2pass_vbr_minsection_pct); |
| 1367 | SHOW(rc_2pass_vbr_maxsection_pct); |
| 1368 | SHOW(kf_mode); |
| 1369 | SHOW(kf_min_dist); |
| 1370 | SHOW(kf_max_dist); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1371 | } |
| 1372 | |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1373 | static void open_output_file(struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1374 | struct AvxEncoderConfig *global, |
| 1375 | const struct AvxRational *pixel_aspect_ratio) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1376 | const char *fn = stream->config.out_fn; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1377 | const struct aom_codec_enc_cfg *const cfg = &stream->config.cfg; |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1378 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1379 | if (cfg->g_pass == AOM_RC_FIRST_PASS) return; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1380 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1381 | stream->file = strcmp(fn, "-") ? fopen(fn, "wb") : set_binary_mode(stdout); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1382 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1383 | if (!stream->file) fatal("Failed to open output file"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1384 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1385 | if (stream->config.write_webm && fseek(stream->file, 0, SEEK_CUR)) |
| 1386 | fatal("WebM output to pipes not supported."); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1387 | |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1388 | #if CONFIG_WEBM_IO |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1389 | if (stream->config.write_webm) { |
Vignesh Venkatasubramanian | 9441f10 | 2016-04-25 13:28:24 -0700 | [diff] [blame] | 1390 | stream->webm_ctx.stream = stream->file; |
Urvang Joshi | d71a231 | 2016-07-14 12:33:48 -0700 | [diff] [blame] | 1391 | write_webm_file_header(&stream->webm_ctx, cfg, stream->config.stereo_fmt, |
| 1392 | global->codec->fourcc, pixel_aspect_ratio); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1393 | } |
James Zern | c8e5a77 | 2016-02-11 18:53:50 -0800 | [diff] [blame] | 1394 | #else |
| 1395 | (void)pixel_aspect_ratio; |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1396 | #endif |
| 1397 | |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1398 | if (!stream->config.write_webm |
| 1399 | #if CONFIG_OBU_NO_IVF |
| 1400 | && stream->config.write_ivf |
| 1401 | #endif |
| 1402 | ) { |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1403 | ivf_write_file_header(stream->file, cfg, global->codec->fourcc, 0); |
| 1404 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1405 | } |
| 1406 | |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1407 | static void close_output_file(struct stream_state *stream, |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1408 | unsigned int fourcc) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1409 | const struct aom_codec_enc_cfg *const cfg = &stream->config.cfg; |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1410 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1411 | if (cfg->g_pass == AOM_RC_FIRST_PASS) return; |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1412 | |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1413 | #if CONFIG_WEBM_IO |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1414 | if (stream->config.write_webm) { |
Vignesh Venkatasubramanian | 9441f10 | 2016-04-25 13:28:24 -0700 | [diff] [blame] | 1415 | write_webm_file_footer(&stream->webm_ctx); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1416 | } |
| 1417 | #endif |
| 1418 | |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1419 | if (!stream->config.write_webm |
| 1420 | #if CONFIG_OBU_NO_IVF |
| 1421 | && stream->config.write_ivf |
| 1422 | #endif |
| 1423 | ) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1424 | if (!fseek(stream->file, 0, SEEK_SET)) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1425 | ivf_write_file_header(stream->file, &stream->config.cfg, fourcc, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1426 | stream->frames_out); |
| 1427 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1428 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1429 | fclose(stream->file); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1430 | } |
| 1431 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1432 | static void setup_pass(struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1433 | struct AvxEncoderConfig *global, int pass) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1434 | if (stream->config.stats_fn) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1435 | if (!stats_open_file(&stream->stats, stream->config.stats_fn, pass)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1436 | fatal("Failed to open statistics store"); |
| 1437 | } else { |
| 1438 | if (!stats_open_mem(&stream->stats, pass)) |
| 1439 | fatal("Failed to open statistics store"); |
| 1440 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1441 | |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1442 | #if CONFIG_FP_MB_STATS |
| 1443 | if (stream->config.fpmb_stats_fn) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1444 | if (!stats_open_file(&stream->fpmb_stats, stream->config.fpmb_stats_fn, |
| 1445 | pass)) |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1446 | fatal("Failed to open mb statistics store"); |
| 1447 | } else { |
| 1448 | if (!stats_open_mem(&stream->fpmb_stats, pass)) |
| 1449 | fatal("Failed to open mb statistics store"); |
| 1450 | } |
| 1451 | #endif |
| 1452 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1453 | stream->config.cfg.g_pass = global->passes == 2 |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1454 | ? pass ? AOM_RC_LAST_PASS : AOM_RC_FIRST_PASS |
| 1455 | : AOM_RC_ONE_PASS; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1456 | if (pass) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1457 | stream->config.cfg.rc_twopass_stats_in = stats_get(&stream->stats); |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1458 | #if CONFIG_FP_MB_STATS |
| 1459 | stream->config.cfg.rc_firstpass_mb_stats_in = |
| 1460 | stats_get(&stream->fpmb_stats); |
| 1461 | #endif |
| 1462 | } |
Yunqing Wang | aabae97 | 2012-02-29 08:24:53 -0500 | [diff] [blame] | 1463 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1464 | stream->cx_time = 0; |
| 1465 | stream->nbytes = 0; |
| 1466 | stream->frames_out = 0; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1467 | } |
| 1468 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1469 | static void initialize_encoder(struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1470 | struct AvxEncoderConfig *global) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1471 | int i; |
| 1472 | int flags = 0; |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 1473 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1474 | flags |= global->show_psnr ? AOM_CODEC_USE_PSNR : 0; |
| 1475 | flags |= global->out_part ? AOM_CODEC_USE_OUTPUT_PARTITION : 0; |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1476 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1477 | flags |= stream->config.use_16bit_internal ? AOM_CODEC_USE_HIGHBITDEPTH : 0; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1478 | #endif |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1479 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1480 | /* Construct Encoder Context */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1481 | aom_codec_enc_init(&stream->encoder, global->codec->codec_interface(), |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1482 | &stream->config.cfg, flags); |
| 1483 | ctx_exit_on_error(&stream->encoder, "Failed to initialize encoder"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1484 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1485 | /* Note that we bypass the aom_codec_control wrapper macro because |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1486 | * we're being clever to store the control IDs in an array. Real |
| 1487 | * applications will want to make use of the enumerations directly |
| 1488 | */ |
| 1489 | for (i = 0; i < stream->config.arg_ctrl_cnt; i++) { |
| 1490 | int ctrl = stream->config.arg_ctrls[i][0]; |
| 1491 | int value = stream->config.arg_ctrls[i][1]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1492 | if (aom_codec_control_(&stream->encoder, ctrl, value)) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1493 | fprintf(stderr, "Error: Tried to set control %d = %d\n", ctrl, value); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1494 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1495 | ctx_exit_on_error(&stream->encoder, "Failed to control codec"); |
| 1496 | } |
| 1497 | |
Tom Finegan | ba02c24 | 2017-05-16 15:01:54 -0700 | [diff] [blame] | 1498 | #if CONFIG_AV1_DECODER |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1499 | if (global->test_decode != TEST_DECODE_OFF) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1500 | const AvxInterface *decoder = get_aom_decoder_by_name(global->codec->name); |
Imdad Sardharwalla | 730c805 | 2017-11-30 17:39:15 +0000 | [diff] [blame] | 1501 | aom_codec_dec_cfg_t cfg = { 0, 0, 0, CONFIG_LOWBITDEPTH, 0 }; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1502 | aom_codec_dec_init(&stream->decoder, decoder->codec_interface(), &cfg, 0); |
Yunqing Wang | 8e5e338 | 2016-05-05 16:42:57 -0700 | [diff] [blame] | 1503 | |
Tom Finegan | ba02c24 | 2017-05-16 15:01:54 -0700 | [diff] [blame] | 1504 | #if CONFIG_EXT_TILE |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1505 | if (strcmp(global->codec->name, "av1") == 0) { |
| 1506 | aom_codec_control(&stream->decoder, AV1_SET_DECODE_TILE_ROW, -1); |
Yunqing Wang | 8e5e338 | 2016-05-05 16:42:57 -0700 | [diff] [blame] | 1507 | ctx_exit_on_error(&stream->decoder, "Failed to set decode_tile_row"); |
| 1508 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1509 | aom_codec_control(&stream->decoder, AV1_SET_DECODE_TILE_COL, -1); |
Yunqing Wang | 8e5e338 | 2016-05-05 16:42:57 -0700 | [diff] [blame] | 1510 | ctx_exit_on_error(&stream->decoder, "Failed to set decode_tile_col"); |
| 1511 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 1512 | #endif // CONFIG_EXT_TILE |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1513 | } |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 1514 | #endif |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1515 | } |
| 1516 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1517 | static void encode_frame(struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1518 | struct AvxEncoderConfig *global, struct aom_image *img, |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1519 | unsigned int frames_in) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1520 | aom_codec_pts_t frame_start, next_frame_start; |
| 1521 | struct aom_codec_enc_cfg *cfg = &stream->config.cfg; |
| 1522 | struct aom_usec_timer timer; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1523 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1524 | frame_start = |
| 1525 | (cfg->g_timebase.den * (int64_t)(frames_in - 1) * global->framerate.den) / |
| 1526 | cfg->g_timebase.num / global->framerate.num; |
| 1527 | next_frame_start = |
| 1528 | (cfg->g_timebase.den * (int64_t)(frames_in)*global->framerate.den) / |
| 1529 | cfg->g_timebase.num / global->framerate.num; |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1530 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1531 | /* Scale if necessary */ |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1532 | #if CONFIG_HIGHBITDEPTH |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1533 | if (img) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1534 | if ((img->fmt & AOM_IMG_FMT_HIGHBITDEPTH) && |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1535 | (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1536 | if (img->fmt != AOM_IMG_FMT_I42016) { |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1537 | fprintf(stderr, "%s can only scale 4:2:0 inputs\n", exec_name); |
| 1538 | exit(EXIT_FAILURE); |
| 1539 | } |
| 1540 | #if CONFIG_LIBYUV |
| 1541 | if (!stream->img) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1542 | stream->img = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1543 | aom_img_alloc(NULL, AOM_IMG_FMT_I42016, cfg->g_w, cfg->g_h, 16); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1544 | } |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1545 | I420Scale_16( |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1546 | (uint16 *)img->planes[AOM_PLANE_Y], img->stride[AOM_PLANE_Y] / 2, |
| 1547 | (uint16 *)img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U] / 2, |
| 1548 | (uint16 *)img->planes[AOM_PLANE_V], img->stride[AOM_PLANE_V] / 2, |
| 1549 | img->d_w, img->d_h, (uint16 *)stream->img->planes[AOM_PLANE_Y], |
| 1550 | stream->img->stride[AOM_PLANE_Y] / 2, |
| 1551 | (uint16 *)stream->img->planes[AOM_PLANE_U], |
| 1552 | stream->img->stride[AOM_PLANE_U] / 2, |
| 1553 | (uint16 *)stream->img->planes[AOM_PLANE_V], |
| 1554 | stream->img->stride[AOM_PLANE_V] / 2, stream->img->d_w, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1555 | stream->img->d_h, kFilterBox); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1556 | img = stream->img; |
| 1557 | #else |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1558 | stream->encoder.err = 1; |
| 1559 | ctx_exit_on_error(&stream->encoder, |
| 1560 | "Stream %d: Failed to encode frame.\n" |
| 1561 | "Scaling disabled in this configuration. \n" |
| 1562 | "To enable, configure with --enable-libyuv\n", |
| 1563 | stream->index); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1564 | #endif |
| 1565 | } |
| 1566 | } |
| 1567 | #endif |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1568 | if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1569 | if (img->fmt != AOM_IMG_FMT_I420 && img->fmt != AOM_IMG_FMT_YV12) { |
Alex Converse | 2a3092f | 2014-05-16 18:49:04 -0700 | [diff] [blame] | 1570 | fprintf(stderr, "%s can only scale 4:2:0 8bpp inputs\n", exec_name); |
| 1571 | exit(EXIT_FAILURE); |
| 1572 | } |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 1573 | #if CONFIG_LIBYUV |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1574 | if (!stream->img) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1575 | stream->img = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1576 | aom_img_alloc(NULL, AOM_IMG_FMT_I420, cfg->g_w, cfg->g_h, 16); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1577 | I420Scale( |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1578 | img->planes[AOM_PLANE_Y], img->stride[AOM_PLANE_Y], |
| 1579 | img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U], |
| 1580 | img->planes[AOM_PLANE_V], img->stride[AOM_PLANE_V], img->d_w, img->d_h, |
| 1581 | stream->img->planes[AOM_PLANE_Y], stream->img->stride[AOM_PLANE_Y], |
| 1582 | stream->img->planes[AOM_PLANE_U], stream->img->stride[AOM_PLANE_U], |
| 1583 | stream->img->planes[AOM_PLANE_V], stream->img->stride[AOM_PLANE_V], |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1584 | stream->img->d_w, stream->img->d_h, kFilterBox); |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1585 | img = stream->img; |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 1586 | #else |
| 1587 | stream->encoder.err = 1; |
| 1588 | ctx_exit_on_error(&stream->encoder, |
| 1589 | "Stream %d: Failed to encode frame.\n" |
| 1590 | "Scaling disabled in this configuration. \n" |
| 1591 | "To enable, configure with --enable-libyuv\n", |
| 1592 | stream->index); |
| 1593 | #endif |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1594 | } |
| 1595 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1596 | aom_usec_timer_start(&timer); |
| 1597 | aom_codec_encode(&stream->encoder, img, frame_start, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1598 | (unsigned long)(next_frame_start - frame_start), 0, |
| 1599 | global->deadline); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1600 | aom_usec_timer_mark(&timer); |
| 1601 | stream->cx_time += aom_usec_timer_elapsed(&timer); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1602 | ctx_exit_on_error(&stream->encoder, "Stream %d: Failed to encode frame", |
| 1603 | stream->index); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1604 | } |
| 1605 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1606 | static void update_quantizer_histogram(struct stream_state *stream) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1607 | if (stream->config.cfg.g_pass != AOM_RC_FIRST_PASS) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1608 | int q; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1609 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1610 | aom_codec_control(&stream->encoder, AOME_GET_LAST_QUANTIZER_64, &q); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1611 | ctx_exit_on_error(&stream->encoder, "Failed to read quantizer"); |
| 1612 | stream->counts[q]++; |
| 1613 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1614 | } |
| 1615 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1616 | static void get_cx_data(struct stream_state *stream, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1617 | struct AvxEncoderConfig *global, int *got_data) { |
| 1618 | const aom_codec_cx_pkt_t *pkt; |
| 1619 | const struct aom_codec_enc_cfg *cfg = &stream->config.cfg; |
| 1620 | aom_codec_iter_t iter = NULL; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1621 | |
Ronald S. Bultje | 88d703c | 2012-11-09 09:07:50 -0800 | [diff] [blame] | 1622 | *got_data = 0; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1623 | while ((pkt = aom_codec_get_cx_data(&stream->encoder, &iter))) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1624 | static size_t fsize = 0; |
James Zern | b643036 | 2017-01-14 14:18:01 -0800 | [diff] [blame] | 1625 | static FileOffset ivf_header_pos = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1626 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1627 | switch (pkt->kind) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1628 | case AOM_CODEC_CX_FRAME_PKT: |
| 1629 | if (!(pkt->data.frame.flags & AOM_FRAME_IS_FRAGMENT)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1630 | stream->frames_out++; |
| 1631 | } |
Jingning Han | babbd5d | 2013-02-13 09:03:21 -0800 | [diff] [blame] | 1632 | if (!global->quiet) |
| 1633 | fprintf(stderr, " %6luF", (unsigned long)pkt->data.frame.sz); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1634 | |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 1635 | update_rate_histogram(stream->rate_hist, cfg, pkt); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1636 | #if CONFIG_WEBM_IO |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1637 | if (stream->config.write_webm) { |
Vignesh Venkatasubramanian | 9441f10 | 2016-04-25 13:28:24 -0700 | [diff] [blame] | 1638 | write_webm_block(&stream->webm_ctx, cfg, pkt); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1639 | } |
| 1640 | #endif |
| 1641 | if (!stream->config.write_webm) { |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1642 | #if CONFIG_OBU_NO_IVF |
| 1643 | if (stream->config.write_ivf) { |
| 1644 | #endif |
| 1645 | if (pkt->data.frame.partition_id <= 0) { |
| 1646 | ivf_header_pos = ftello(stream->file); |
| 1647 | fsize = pkt->data.frame.sz; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1648 | |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1649 | ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize); |
| 1650 | } else { |
| 1651 | fsize += pkt->data.frame.sz; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1652 | |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1653 | if (!(pkt->data.frame.flags & AOM_FRAME_IS_FRAGMENT)) { |
| 1654 | const FileOffset currpos = ftello(stream->file); |
| 1655 | fseeko(stream->file, ivf_header_pos, SEEK_SET); |
| 1656 | ivf_write_frame_size(stream->file, fsize); |
| 1657 | fseeko(stream->file, currpos, SEEK_SET); |
| 1658 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1659 | } |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1660 | #if CONFIG_OBU_NO_IVF |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1661 | } |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 1662 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1663 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1664 | (void)fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz, |
| 1665 | stream->file); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1666 | } |
| 1667 | stream->nbytes += pkt->data.raw.sz; |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 1668 | |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1669 | *got_data = 1; |
Tom Finegan | ba02c24 | 2017-05-16 15:01:54 -0700 | [diff] [blame] | 1670 | #if CONFIG_AV1_DECODER |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1671 | if (global->test_decode != TEST_DECODE_OFF && !stream->mismatch_seen) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1672 | aom_codec_decode(&stream->decoder, pkt->data.frame.buf, |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 1673 | (unsigned int)pkt->data.frame.sz, NULL, 0); |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1674 | if (stream->decoder.err) { |
| 1675 | warn_or_exit_on_error(&stream->decoder, |
| 1676 | global->test_decode == TEST_DECODE_FATAL, |
| 1677 | "Failed to decode frame %d in stream %d", |
| 1678 | stream->frames_out + 1, stream->index); |
| 1679 | stream->mismatch_seen = stream->frames_out + 1; |
| 1680 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1681 | } |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 1682 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1683 | break; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1684 | case AOM_CODEC_STATS_PKT: |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1685 | stream->frames_out++; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1686 | stats_write(&stream->stats, pkt->data.twopass_stats.buf, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1687 | pkt->data.twopass_stats.sz); |
| 1688 | stream->nbytes += pkt->data.raw.sz; |
| 1689 | break; |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1690 | #if CONFIG_FP_MB_STATS |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1691 | case AOM_CODEC_FPMB_STATS_PKT: |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1692 | stats_write(&stream->fpmb_stats, pkt->data.firstpass_mb_stats.buf, |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 1693 | pkt->data.firstpass_mb_stats.sz); |
| 1694 | stream->nbytes += pkt->data.raw.sz; |
| 1695 | break; |
| 1696 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1697 | case AOM_CODEC_PSNR_PKT: |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1698 | |
| 1699 | if (global->show_psnr) { |
| 1700 | int i; |
| 1701 | |
| 1702 | stream->psnr_sse_total += pkt->data.psnr.sse[0]; |
| 1703 | stream->psnr_samples_total += pkt->data.psnr.samples[0]; |
| 1704 | for (i = 0; i < 4; i++) { |
Jingning Han | babbd5d | 2013-02-13 09:03:21 -0800 | [diff] [blame] | 1705 | if (!global->quiet) |
| 1706 | fprintf(stderr, "%.3f ", pkt->data.psnr.psnr[i]); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1707 | stream->psnr_totals[i] += pkt->data.psnr.psnr[i]; |
| 1708 | } |
| 1709 | stream->psnr_count++; |
| 1710 | } |
| 1711 | |
| 1712 | break; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1713 | default: break; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1714 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1715 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1716 | } |
| 1717 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1718 | static void show_psnr(struct stream_state *stream, double peak) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1719 | int i; |
| 1720 | double ovpsnr; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1721 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1722 | if (!stream->psnr_count) return; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1723 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1724 | fprintf(stderr, "Stream %d PSNR (Overall/Avg/Y/U/V)", stream->index); |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 1725 | ovpsnr = sse_to_psnr((double)stream->psnr_samples_total, peak, |
Dmitry Kovalev | 2dad0e1 | 2014-02-27 14:00:41 -0800 | [diff] [blame] | 1726 | (double)stream->psnr_sse_total); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1727 | fprintf(stderr, " %.3f", ovpsnr); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1728 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1729 | for (i = 0; i < 4; i++) { |
| 1730 | fprintf(stderr, " %.3f", stream->psnr_totals[i] / stream->psnr_count); |
| 1731 | } |
| 1732 | fprintf(stderr, "\n"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1733 | } |
| 1734 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1735 | static float usec_to_fps(uint64_t usec, unsigned int frames) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1736 | return (float)(usec > 0 ? frames * 1000000.0 / (float)usec : 0); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1737 | } |
| 1738 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1739 | static void test_decode(struct stream_state *stream, |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 1740 | enum TestDecodeFatality fatal, int is_mono) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1741 | aom_image_t enc_img, dec_img; |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1742 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1743 | if (stream->mismatch_seen) return; |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1744 | |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1745 | /* Get the internal reference frame */ |
Sebastien Alaiwan | 34c9d8b | 2017-08-07 09:56:47 +0200 | [diff] [blame] | 1746 | aom_codec_control(&stream->encoder, AV1_GET_NEW_FRAME_IMAGE, &enc_img); |
| 1747 | aom_codec_control(&stream->decoder, AV1_GET_NEW_FRAME_IMAGE, &dec_img); |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1748 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1749 | #if CONFIG_HIGHBITDEPTH |
Sebastien Alaiwan | 34c9d8b | 2017-08-07 09:56:47 +0200 | [diff] [blame] | 1750 | if ((enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) != |
| 1751 | (dec_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH)) { |
| 1752 | if (enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) { |
| 1753 | aom_image_t enc_hbd_img; |
| 1754 | aom_img_alloc(&enc_hbd_img, enc_img.fmt - AOM_IMG_FMT_HIGHBITDEPTH, |
| 1755 | enc_img.d_w, enc_img.d_h, 16); |
| 1756 | aom_img_truncate_16_to_8(&enc_hbd_img, &enc_img); |
| 1757 | enc_img = enc_hbd_img; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1758 | } |
Sebastien Alaiwan | 34c9d8b | 2017-08-07 09:56:47 +0200 | [diff] [blame] | 1759 | if (dec_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) { |
| 1760 | aom_image_t dec_hbd_img; |
| 1761 | aom_img_alloc(&dec_hbd_img, dec_img.fmt - AOM_IMG_FMT_HIGHBITDEPTH, |
| 1762 | dec_img.d_w, dec_img.d_h, 16); |
| 1763 | aom_img_truncate_16_to_8(&dec_hbd_img, &dec_img); |
| 1764 | dec_img = dec_hbd_img; |
| 1765 | } |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1766 | } |
Sebastien Alaiwan | 34c9d8b | 2017-08-07 09:56:47 +0200 | [diff] [blame] | 1767 | #endif |
| 1768 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1769 | ctx_exit_on_error(&stream->encoder, "Failed to get encoder reference frame"); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1770 | ctx_exit_on_error(&stream->decoder, "Failed to get decoder reference frame"); |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1771 | |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 1772 | if (!aom_compare_img(&enc_img, &dec_img, is_mono ? 1 : 3)) { |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 1773 | int y[4], u[4], v[4]; |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1774 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1775 | if (enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) { |
Urvang Joshi | 09c293e | 2017-04-20 17:56:27 -0700 | [diff] [blame] | 1776 | aom_find_mismatch_high(&enc_img, &dec_img, y, u, v); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1777 | } else { |
Urvang Joshi | 09c293e | 2017-04-20 17:56:27 -0700 | [diff] [blame] | 1778 | aom_find_mismatch(&enc_img, &dec_img, y, u, v); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1779 | } |
| 1780 | #else |
Urvang Joshi | 09c293e | 2017-04-20 17:56:27 -0700 | [diff] [blame] | 1781 | aom_find_mismatch(&enc_img, &dec_img, y, u, v); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1782 | #endif |
Ronald S. Bultje | 97dd734 | 2013-03-04 14:12:49 -0800 | [diff] [blame] | 1783 | stream->decoder.err = 1; |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1784 | warn_or_exit_on_error(&stream->decoder, fatal == TEST_DECODE_FATAL, |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 1785 | "Stream %d: Encode/decode mismatch on frame %d at" |
| 1786 | " Y[%d, %d] {%d/%d}," |
| 1787 | " U[%d, %d] {%d/%d}," |
| 1788 | " V[%d, %d] {%d/%d}", |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1789 | stream->index, stream->frames_out, y[0], y[1], y[2], |
| 1790 | y[3], u[0], u[1], u[2], u[3], v[0], v[1], v[2], v[3]); |
Ronald S. Bultje | 195172c | 2012-11-10 16:22:49 -0800 | [diff] [blame] | 1791 | stream->mismatch_seen = stream->frames_out; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1792 | } |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1793 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1794 | aom_img_free(&enc_img); |
| 1795 | aom_img_free(&dec_img); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1796 | } |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1797 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1798 | static void print_time(const char *label, int64_t etl) { |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 1799 | int64_t hours; |
| 1800 | int64_t mins; |
| 1801 | int64_t secs; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1802 | |
| 1803 | if (etl >= 0) { |
| 1804 | hours = etl / 3600; |
| 1805 | etl -= hours * 3600; |
| 1806 | mins = etl / 60; |
| 1807 | etl -= mins * 60; |
| 1808 | secs = etl; |
| 1809 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1810 | fprintf(stderr, "[%3s %2" PRId64 ":%02" PRId64 ":%02" PRId64 "] ", label, |
| 1811 | hours, mins, secs); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1812 | } else { |
| 1813 | fprintf(stderr, "[%3s unknown] ", label); |
| 1814 | } |
| 1815 | } |
| 1816 | |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1817 | int main(int argc, const char **argv_) { |
| 1818 | int pass; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1819 | aom_image_t raw; |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 1820 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1821 | aom_image_t raw_shift; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1822 | int allocated_raw_shift = 0; |
| 1823 | int use_16bit_internal = 0; |
| 1824 | int input_shift = 0; |
| 1825 | #endif |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1826 | int frame_avail, got_data; |
| 1827 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1828 | struct AvxInputContext input; |
| 1829 | struct AvxEncoderConfig global; |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1830 | struct stream_state *streams = NULL; |
| 1831 | char **argv, **argi; |
| 1832 | uint64_t cx_time = 0; |
| 1833 | int stream_cnt = 0; |
| 1834 | int res = 0; |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 1835 | int profile_updated = 0; |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1836 | |
Yaowu Xu | 618e7ef | 2014-07-11 16:27:21 -0700 | [diff] [blame] | 1837 | memset(&input, 0, sizeof(input)); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1838 | exec_name = argv_[0]; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1839 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1840 | /* Setup default input stream settings */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1841 | input.framerate.numerator = 30; |
| 1842 | input.framerate.denominator = 1; |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 1843 | input.only_i420 = 1; |
Deb Mukherjee | 5820c5d | 2014-06-12 16:53:13 -0700 | [diff] [blame] | 1844 | input.bit_depth = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1845 | |
| 1846 | /* First parse the global configuration values, because we want to apply |
| 1847 | * other parameters on top of the default configuration provided by the |
| 1848 | * codec. |
| 1849 | */ |
| 1850 | argv = argv_dup(argc - 1, argv_ + 1); |
| 1851 | parse_global_config(&global, argv); |
| 1852 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 1853 | if (argc < 3) usage_exit(); |
| 1854 | |
Deb Mukherjee | 090f4d4 | 2014-07-16 09:37:13 -0700 | [diff] [blame] | 1855 | switch (global.color_type) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1856 | case I420: input.fmt = AOM_IMG_FMT_I420; break; |
| 1857 | case I422: input.fmt = AOM_IMG_FMT_I422; break; |
| 1858 | case I444: input.fmt = AOM_IMG_FMT_I444; break; |
| 1859 | case I440: input.fmt = AOM_IMG_FMT_I440; break; |
| 1860 | case YV12: input.fmt = AOM_IMG_FMT_YV12; break; |
Deb Mukherjee | 090f4d4 | 2014-07-16 09:37:13 -0700 | [diff] [blame] | 1861 | } |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1862 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1863 | { |
| 1864 | /* Now parse each stream's parameters. Using a local scope here |
| 1865 | * due to the use of 'stream' as loop variable in FOREACH_STREAM |
| 1866 | * loops |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1867 | */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1868 | struct stream_state *stream = NULL; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1869 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1870 | do { |
| 1871 | stream = new_stream(&global, stream); |
| 1872 | stream_cnt++; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1873 | if (!streams) streams = stream; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1874 | } while (parse_stream_params(&global, stream, argv)); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1875 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1876 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1877 | /* Check for unrecognized options */ |
| 1878 | for (argi = argv; *argi; argi++) |
| 1879 | if (argi[0][0] == '-' && argi[0][1]) |
| 1880 | die("Error: Unrecognized option %s\n", *argi); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1881 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1882 | FOREACH_STREAM(stream, streams) { |
| 1883 | check_encoder_config(global.disable_warning_prompt, &global, |
| 1884 | &stream->config.cfg); |
| 1885 | } |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 1886 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1887 | /* Handle non-option arguments */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1888 | input.filename = argv[0]; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1889 | |
James Zern | fd8c78c | 2017-11-27 16:37:33 -0800 | [diff] [blame] | 1890 | if (!input.filename) { |
| 1891 | fprintf(stderr, "No input file specified!\n"); |
| 1892 | usage_exit(); |
| 1893 | } |
John Koleszar | 5329189 | 2010-10-22 14:48:21 -0400 | [diff] [blame] | 1894 | |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 1895 | /* Decide if other chroma subsamplings than 4:2:0 are supported */ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1896 | if (global.codec->fourcc == AV1_FOURCC) input.only_i420 = 0; |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 1897 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1898 | for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) { |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1899 | int frames_in = 0, seen_frames = 0; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1900 | int64_t estimated_time_left = -1; |
| 1901 | int64_t average_rate = -1; |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 1902 | int64_t lagged_count = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1903 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1904 | open_input_file(&input); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1905 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1906 | /* If the input file doesn't specify its w/h (raw files), try to get |
| 1907 | * the data from the first stream's configuration. |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1908 | */ |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 1909 | if (!input.width || !input.height) { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1910 | FOREACH_STREAM(stream, streams) { |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 1911 | if (stream->config.cfg.g_w && stream->config.cfg.g_h) { |
| 1912 | input.width = stream->config.cfg.g_w; |
| 1913 | input.height = stream->config.cfg.g_h; |
| 1914 | break; |
| 1915 | } |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1916 | }; |
Deb Mukherjee | a349ee3 | 2014-10-13 14:27:53 -0700 | [diff] [blame] | 1917 | } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1918 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1919 | /* Update stream configurations from the input file's parameters */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1920 | if (!input.width || !input.height) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 1921 | fatal( |
| 1922 | "Specify stream dimensions with --width (-w) " |
| 1923 | " and --height (-h)"); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1924 | |
| 1925 | /* If input file does not specify bit-depth but input-bit-depth parameter |
| 1926 | * exists, assume that to be the input bit-depth. However, if the |
| 1927 | * input-bit-depth paramter does not exist, assume the input bit-depth |
| 1928 | * to be the same as the codec bit-depth. |
| 1929 | */ |
| 1930 | if (!input.bit_depth) { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1931 | FOREACH_STREAM(stream, streams) { |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1932 | if (stream->config.cfg.g_input_bit_depth) |
| 1933 | input.bit_depth = stream->config.cfg.g_input_bit_depth; |
| 1934 | else |
| 1935 | input.bit_depth = stream->config.cfg.g_input_bit_depth = |
| 1936 | (int)stream->config.cfg.g_bit_depth; |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1937 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1938 | if (input.bit_depth > 8) input.fmt |= AOM_IMG_FMT_HIGHBITDEPTH; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1939 | } else { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1940 | FOREACH_STREAM(stream, streams) { |
| 1941 | stream->config.cfg.g_input_bit_depth = input.bit_depth; |
| 1942 | } |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 1943 | } |
| 1944 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1945 | FOREACH_STREAM(stream, streams) { |
Thomas Daede | 8ec53b2 | 2016-09-19 13:24:51 -0700 | [diff] [blame] | 1946 | if (input.fmt != AOM_IMG_FMT_I420 && input.fmt != AOM_IMG_FMT_I42016) { |
| 1947 | /* Automatically upgrade if input is non-4:2:0 but a 4:2:0 profile |
| 1948 | was selected. */ |
| 1949 | switch (stream->config.cfg.g_profile) { |
| 1950 | case 0: |
| 1951 | stream->config.cfg.g_profile = 1; |
| 1952 | profile_updated = 1; |
| 1953 | break; |
| 1954 | case 2: |
| 1955 | stream->config.cfg.g_profile = 3; |
| 1956 | profile_updated = 1; |
| 1957 | break; |
| 1958 | default: break; |
| 1959 | } |
| 1960 | } |
Thomas Daede | 8ec53b2 | 2016-09-19 13:24:51 -0700 | [diff] [blame] | 1961 | /* Automatically set the codec bit depth to match the input bit depth. |
| 1962 | * Upgrade the profile if required. */ |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 1963 | if (stream->config.cfg.g_input_bit_depth > |
| 1964 | (unsigned int)stream->config.cfg.g_bit_depth) { |
| 1965 | stream->config.cfg.g_bit_depth = stream->config.cfg.g_input_bit_depth; |
| 1966 | } |
| 1967 | if (stream->config.cfg.g_bit_depth > 8) { |
| 1968 | switch (stream->config.cfg.g_profile) { |
| 1969 | case 0: |
| 1970 | stream->config.cfg.g_profile = 2; |
| 1971 | profile_updated = 1; |
| 1972 | break; |
| 1973 | case 1: |
| 1974 | stream->config.cfg.g_profile = 3; |
| 1975 | profile_updated = 1; |
| 1976 | break; |
| 1977 | default: break; |
| 1978 | } |
| 1979 | } |
| 1980 | if (stream->config.cfg.g_profile > 1) { |
Sebastien Alaiwan | fadc7cb | 2017-06-08 22:10:43 +0200 | [diff] [blame] | 1981 | if (!CONFIG_HIGHBITDEPTH) fatal("Unsupported profile."); |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 1982 | stream->config.use_16bit_internal = 1; |
Arild Fuldseth (arilfuld) | 59622cf | 2016-10-24 10:37:37 +0200 | [diff] [blame] | 1983 | } |
Urvang Joshi | 51c048e | 2017-02-16 12:43:52 -0800 | [diff] [blame] | 1984 | if (profile_updated && !global.quiet) { |
Arild Fuldseth (arilfuld) | 59622cf | 2016-10-24 10:37:37 +0200 | [diff] [blame] | 1985 | fprintf(stderr, |
| 1986 | "Warning: automatically upgrading to profile %d to " |
| 1987 | "match input format.\n", |
| 1988 | stream->config.cfg.g_profile); |
| 1989 | } |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1990 | } |
Thomas Daede | c0dca3c | 2016-02-25 17:23:17 -0800 | [diff] [blame] | 1991 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 1992 | FOREACH_STREAM(stream, streams) { |
| 1993 | set_stream_dimensions(stream, input.width, input.height); |
| 1994 | } |
| 1995 | FOREACH_STREAM(stream, streams) { validate_stream_config(stream, &global); } |
John Koleszar | 77e6b45 | 2010-11-03 13:58:40 -0400 | [diff] [blame] | 1996 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1997 | /* Ensure that --passes and --pass are consistent. If --pass is set and |
| 1998 | * --passes=2, ensure --fpf was set. |
| 1999 | */ |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2000 | if (global.pass && global.passes == 2) { |
| 2001 | FOREACH_STREAM(stream, streams) { |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2002 | if (!stream->config.stats_fn) |
clang-format | 67948d3 | 2016-09-07 22:40:40 -0700 | [diff] [blame] | 2003 | die("Stream %d: Must specify --fpf when --pass=%d" |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2004 | " and --passes=2\n", |
| 2005 | stream->index, global.pass); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2006 | } |
| 2007 | } |
John Koleszar | 3245d46 | 2010-06-10 17:10:12 -0400 | [diff] [blame] | 2008 | |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 2009 | #if !CONFIG_WEBM_IO |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2010 | FOREACH_STREAM(stream, streams) { |
Ronald S. Bultje | 3977507 | 2015-12-16 13:35:43 -0500 | [diff] [blame] | 2011 | if (stream->config.write_webm) { |
| 2012 | stream->config.write_webm = 0; |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 2013 | #if CONFIG_OBU_NO_IVF |
| 2014 | stream->config.write_ivf = 0; |
| 2015 | #endif |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2016 | warn( |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2017 | "aomenc was compiled without WebM container support." |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 2018 | #if CONFIG_OBU_NO_IVF |
| 2019 | "Producing OBU output"); |
| 2020 | #else |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2021 | "Producing IVF output"); |
Cyril Concolato | 6c78883 | 2017-10-30 16:30:35 -0700 | [diff] [blame] | 2022 | #endif |
Ronald S. Bultje | 3977507 | 2015-12-16 13:35:43 -0500 | [diff] [blame] | 2023 | } |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2024 | } |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 2025 | #endif |
| 2026 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2027 | /* Use the frame rate from the file only if none was specified |
| 2028 | * on the command-line. |
| 2029 | */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 2030 | if (!global.have_framerate) { |
| 2031 | global.framerate.num = input.framerate.numerator; |
| 2032 | global.framerate.den = input.framerate.denominator; |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2033 | FOREACH_STREAM(stream, streams) { |
| 2034 | stream->config.cfg.g_timebase.den = global.framerate.num; |
| 2035 | stream->config.cfg.g_timebase.num = global.framerate.den; |
| 2036 | } |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 2037 | } |
Timothy B. Terriberry | 44d8949 | 2010-05-26 18:27:51 -0400 | [diff] [blame] | 2038 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2039 | /* Show configuration */ |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2040 | if (global.verbose && pass == 0) { |
| 2041 | FOREACH_STREAM(stream, streams) { |
| 2042 | show_stream_config(stream, &global, &input); |
| 2043 | } |
| 2044 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2045 | |
| 2046 | if (pass == (global.pass ? global.pass - 1 : 0)) { |
| 2047 | if (input.file_type == FILE_TYPE_Y4M) |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2048 | /*The Y4M reader does its own allocation. |
| 2049 | Just initialize this here to avoid problems if we never read any |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2050 | frames.*/ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2051 | memset(&raw, 0, sizeof(raw)); |
| 2052 | else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2053 | aom_img_alloc(&raw, input.fmt, input.width, input.height, 32); |
John Koleszar | 05239f0 | 2011-06-29 09:53:12 -0400 | [diff] [blame] | 2054 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2055 | FOREACH_STREAM(stream, streams) { |
| 2056 | stream->rate_hist = |
| 2057 | init_rate_histogram(&stream->config.cfg, &global.framerate); |
| 2058 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2059 | } |
| 2060 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2061 | FOREACH_STREAM(stream, streams) { setup_pass(stream, &global, pass); } |
| 2062 | FOREACH_STREAM(stream, streams) { |
| 2063 | open_output_file(stream, &global, &input.pixel_aspect_ratio); |
| 2064 | } |
| 2065 | FOREACH_STREAM(stream, streams) { initialize_encoder(stream, &global); } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2066 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 2067 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2068 | if (strcmp(global.codec->name, "av1") == 0 || |
| 2069 | strcmp(global.codec->name, "av1") == 0) { |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2070 | // Check to see if at least one stream uses 16 bit internal. |
| 2071 | // Currently assume that the bit_depths for all streams using |
| 2072 | // highbitdepth are the same. |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2073 | FOREACH_STREAM(stream, streams) { |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2074 | if (stream->config.use_16bit_internal) { |
| 2075 | use_16bit_internal = 1; |
| 2076 | } |
| 2077 | if (stream->config.cfg.g_profile == 0) { |
| 2078 | input_shift = 0; |
| 2079 | } else { |
| 2080 | input_shift = (int)stream->config.cfg.g_bit_depth - |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2081 | stream->config.cfg.g_input_bit_depth; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2082 | } |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2083 | }; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2084 | } |
| 2085 | #endif |
| 2086 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2087 | frame_avail = 1; |
| 2088 | got_data = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2089 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2090 | while (frame_avail || got_data) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2091 | struct aom_usec_timer timer; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2092 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2093 | if (!global.limit || frames_in < global.limit) { |
| 2094 | frame_avail = read_frame(&input, &raw); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2095 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2096 | if (frame_avail) frames_in++; |
| 2097 | seen_frames = |
| 2098 | frames_in > global.skip_frames ? frames_in - global.skip_frames : 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2099 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2100 | if (!global.quiet) { |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 2101 | float fps = usec_to_fps(cx_time, seen_frames); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2102 | fprintf(stderr, "\rPass %d/%d ", pass + 1, global.passes); |
| 2103 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2104 | if (stream_cnt == 1) |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2105 | fprintf(stderr, "frame %4d/%-4d %7" PRId64 "B ", frames_in, |
| 2106 | streams->frames_out, (int64_t)streams->nbytes); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2107 | else |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2108 | fprintf(stderr, "frame %4d ", frames_in); |
| 2109 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2110 | fprintf(stderr, "%7" PRId64 " %s %.2f %s ", |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2111 | cx_time > 9999999 ? cx_time / 1000 : cx_time, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2112 | cx_time > 9999999 ? "ms" : "us", fps >= 1.0 ? fps : fps * 60, |
Yaowu Xu | 014acfa | 2013-09-17 16:31:46 -0700 | [diff] [blame] | 2113 | fps >= 1.0 ? "fps" : "fpm"); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2114 | print_time("ETA", estimated_time_left); |
John Koleszar | 3245d46 | 2010-06-10 17:10:12 -0400 | [diff] [blame] | 2115 | } |
| 2116 | |
hui su | 251e151 | 2016-10-03 15:48:43 -0700 | [diff] [blame] | 2117 | } else { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2118 | frame_avail = 0; |
hui su | 251e151 | 2016-10-03 15:48:43 -0700 | [diff] [blame] | 2119 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2120 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2121 | if (frames_in > global.skip_frames) { |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 2122 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2123 | aom_image_t *frame_to_encode; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2124 | if (input_shift || (use_16bit_internal && input.bit_depth == 8)) { |
| 2125 | assert(use_16bit_internal); |
| 2126 | // Input bit depth and stream bit depth do not match, so up |
| 2127 | // shift frame to stream bit depth |
| 2128 | if (!allocated_raw_shift) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2129 | aom_img_alloc(&raw_shift, raw.fmt | AOM_IMG_FMT_HIGHBITDEPTH, |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2130 | input.width, input.height, 32); |
| 2131 | allocated_raw_shift = 1; |
| 2132 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2133 | aom_img_upshift(&raw_shift, &raw, input_shift); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2134 | frame_to_encode = &raw_shift; |
| 2135 | } else { |
| 2136 | frame_to_encode = &raw; |
| 2137 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2138 | aom_usec_timer_start(&timer); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2139 | if (use_16bit_internal) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2140 | assert(frame_to_encode->fmt & AOM_IMG_FMT_HIGHBITDEPTH); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2141 | FOREACH_STREAM(stream, streams) { |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2142 | if (stream->config.use_16bit_internal) |
| 2143 | encode_frame(stream, &global, |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2144 | frame_avail ? frame_to_encode : NULL, frames_in); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2145 | else |
| 2146 | assert(0); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2147 | }; |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2148 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2149 | assert((frame_to_encode->fmt & AOM_IMG_FMT_HIGHBITDEPTH) == 0); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2150 | FOREACH_STREAM(stream, streams) { |
| 2151 | encode_frame(stream, &global, frame_avail ? frame_to_encode : NULL, |
| 2152 | frames_in); |
| 2153 | } |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2154 | } |
| 2155 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2156 | aom_usec_timer_start(&timer); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2157 | FOREACH_STREAM(stream, streams) { |
| 2158 | encode_frame(stream, &global, frame_avail ? &raw : NULL, frames_in); |
| 2159 | } |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2160 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2161 | aom_usec_timer_mark(&timer); |
| 2162 | cx_time += aom_usec_timer_elapsed(&timer); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2163 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2164 | FOREACH_STREAM(stream, streams) { update_quantizer_histogram(stream); } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2165 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2166 | got_data = 0; |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2167 | FOREACH_STREAM(stream, streams) { |
| 2168 | get_cx_data(stream, &global, &got_data); |
| 2169 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2170 | |
Jim Bankoski | c901a4f | 2014-08-21 07:18:07 -0700 | [diff] [blame] | 2171 | if (!got_data && input.length && streams != NULL && |
| 2172 | !streams->frames_out) { |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 2173 | lagged_count = global.limit ? seen_frames : ftello(input.file); |
John Koleszar | ebf8b9f | 2013-02-27 11:14:23 -0800 | [diff] [blame] | 2174 | } else if (input.length) { |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2175 | int64_t remaining; |
| 2176 | int64_t rate; |
| 2177 | |
| 2178 | if (global.limit) { |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 2179 | const int64_t frame_in_lagged = (seen_frames - lagged_count) * 1000; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2180 | |
| 2181 | rate = cx_time ? frame_in_lagged * (int64_t)1000000 / cx_time : 0; |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2182 | remaining = 1000 * (global.limit - global.skip_frames - |
| 2183 | seen_frames + lagged_count); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2184 | } else { |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 2185 | const int64_t input_pos = ftello(input.file); |
| 2186 | const int64_t input_pos_lagged = input_pos - lagged_count; |
Urvang Joshi | 4145bf0 | 2016-10-17 14:53:33 -0700 | [diff] [blame] | 2187 | const int64_t input_limit = input.length; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2188 | |
| 2189 | rate = cx_time ? input_pos_lagged * (int64_t)1000000 / cx_time : 0; |
Urvang Joshi | 4145bf0 | 2016-10-17 14:53:33 -0700 | [diff] [blame] | 2190 | remaining = input_limit - input_pos + lagged_count; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2191 | } |
| 2192 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2193 | average_rate = |
| 2194 | (average_rate <= 0) ? rate : (average_rate * 7 + rate) / 8; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 2195 | estimated_time_left = average_rate ? remaining / average_rate : -1; |
| 2196 | } |
| 2197 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2198 | if (got_data && global.test_decode != TEST_DECODE_OFF) { |
| 2199 | FOREACH_STREAM(stream, streams) { |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2200 | test_decode(stream, global.test_decode, |
| 2201 | stream->config.cfg.monochrome); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2202 | } |
| 2203 | } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2204 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2205 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2206 | fflush(stdout); |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2207 | if (!global.quiet) fprintf(stderr, "\033[K"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2208 | } |
| 2209 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2210 | if (stream_cnt > 1) fprintf(stderr, "\n"); |
John Koleszar | 3fde996 | 2011-06-20 17:09:29 -0400 | [diff] [blame] | 2211 | |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 2212 | if (!global.quiet) { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2213 | FOREACH_STREAM(stream, streams) { |
| 2214 | fprintf(stderr, "\rPass %d/%d frame %4d/%-4d %7" PRId64 "B %7" PRId64 |
| 2215 | "b/f %7" PRId64 |
| 2216 | "b/s" |
| 2217 | " %7" PRId64 " %s (%.2f fps)\033[K\n", |
| 2218 | pass + 1, global.passes, frames_in, stream->frames_out, |
| 2219 | (int64_t)stream->nbytes, |
| 2220 | seen_frames ? (int64_t)(stream->nbytes * 8 / seen_frames) : 0, |
| 2221 | seen_frames |
| 2222 | ? (int64_t)stream->nbytes * 8 * |
| 2223 | (int64_t)global.framerate.num / global.framerate.den / |
| 2224 | seen_frames |
| 2225 | : 0, |
| 2226 | stream->cx_time > 9999999 ? stream->cx_time / 1000 |
| 2227 | : stream->cx_time, |
| 2228 | stream->cx_time > 9999999 ? "ms" : "us", |
| 2229 | usec_to_fps(stream->cx_time, seen_frames)); |
| 2230 | } |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 2231 | } |
John Koleszar | c96f8e2 | 2011-06-21 16:42:33 -0400 | [diff] [blame] | 2232 | |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 2233 | if (global.show_psnr) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2234 | if (global.codec->fourcc == AV1_FOURCC) { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2235 | FOREACH_STREAM(stream, streams) { |
| 2236 | show_psnr(stream, (1 << stream->config.cfg.g_input_bit_depth) - 1); |
| 2237 | } |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 2238 | } else { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2239 | FOREACH_STREAM(stream, streams) { show_psnr(stream, 255.0); } |
Deb Mukherjee | a160d72 | 2014-09-30 21:56:33 -0700 | [diff] [blame] | 2240 | } |
| 2241 | } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2242 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2243 | FOREACH_STREAM(stream, streams) { aom_codec_destroy(&stream->encoder); } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2244 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 2245 | if (global.test_decode != TEST_DECODE_OFF) { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2246 | FOREACH_STREAM(stream, streams) { aom_codec_destroy(&stream->decoder); } |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 2247 | } |
| 2248 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2249 | close_input_file(&input); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2250 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 2251 | if (global.test_decode == TEST_DECODE_FATAL) { |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2252 | FOREACH_STREAM(stream, streams) { res |= stream->mismatch_seen; } |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 2253 | } |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2254 | FOREACH_STREAM(stream, streams) { |
| 2255 | close_output_file(stream, global.codec->fourcc); |
| 2256 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2257 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2258 | FOREACH_STREAM(stream, streams) { |
| 2259 | stats_close(&stream->stats, global.passes - 1); |
| 2260 | } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2261 | |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 2262 | #if CONFIG_FP_MB_STATS |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2263 | FOREACH_STREAM(stream, streams) { |
| 2264 | stats_close(&stream->fpmb_stats, global.passes - 1); |
| 2265 | } |
Pengchong Jin | f349b07 | 2014-07-14 09:13:38 -0700 | [diff] [blame] | 2266 | #endif |
| 2267 | |
clang-format | 6c4d83e | 2016-08-08 19:03:30 -0700 | [diff] [blame] | 2268 | if (global.pass) break; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2269 | } |
| 2270 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2271 | if (global.show_q_hist_buckets) { |
| 2272 | FOREACH_STREAM(stream, streams) { |
| 2273 | show_q_histogram(stream->counts, global.show_q_hist_buckets); |
| 2274 | } |
| 2275 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2276 | |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2277 | if (global.show_rate_hist_buckets) { |
| 2278 | FOREACH_STREAM(stream, streams) { |
| 2279 | show_rate_histogram(stream->rate_hist, &stream->config.cfg, |
| 2280 | global.show_rate_hist_buckets); |
| 2281 | } |
| 2282 | } |
| 2283 | FOREACH_STREAM(stream, streams) { destroy_rate_histogram(stream->rate_hist); } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2284 | |
Ronald S. Bultje | 3121497 | 2012-10-11 10:13:48 -0700 | [diff] [blame] | 2285 | #if CONFIG_INTERNAL_STATS |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2286 | /* TODO(jkoleszar): This doesn't belong in this executable. Do it for now, |
| 2287 | * to match some existing utilities. |
| 2288 | */ |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2289 | if (!(global.pass == 1 && global.passes == 2)) { |
| 2290 | FOREACH_STREAM(stream, streams) { |
Yaowu Xu | 47e784e | 2013-10-16 16:29:28 -0700 | [diff] [blame] | 2291 | FILE *f = fopen("opsnr.stt", "a"); |
| 2292 | if (stream->mismatch_seen) { |
| 2293 | fprintf(f, "First mismatch occurred in frame %d\n", |
| 2294 | stream->mismatch_seen); |
| 2295 | } else { |
| 2296 | fprintf(f, "No mismatch detected in recon buffers\n"); |
| 2297 | } |
| 2298 | fclose(f); |
Sebastien Alaiwan | 0b99384 | 2017-06-09 10:28:29 +0200 | [diff] [blame] | 2299 | } |
| 2300 | } |
Ronald S. Bultje | 3121497 | 2012-10-11 10:13:48 -0700 | [diff] [blame] | 2301 | #endif |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2302 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 2303 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2304 | if (allocated_raw_shift) aom_img_free(&raw_shift); |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 2305 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2306 | aom_img_free(&raw); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 2307 | free(argv); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 2308 | free(streams); |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 2309 | return res ? EXIT_FAILURE : EXIT_SUCCESS; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2310 | } |