blob: b665ac159262450e3a2ac8a2115a86b48151787d [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
John Koleszar0ea50ce2010-05-18 11:58:33 -04003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004 * 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 Koleszar0ea50ce2010-05-18 11:58:33 -040010 */
11
Yaowu Xuf883b422016-08-30 14:01:10 -070012#include "./aomenc.h"
13#include "./aom_config.h"
John Koleszar0ea50ce2010-05-18 11:58:33 -040014
Tom Finegan00a35aa2013-11-14 12:37:42 -080015#include <assert.h>
16#include <limits.h>
Tom Finegan78cb2e62013-11-07 21:28:45 -080017#include <math.h>
Tom Finegan00a35aa2013-11-14 12:37:42 -080018#include <stdarg.h>
John Koleszar0ea50ce2010-05-18 11:58:33 -040019#include <stdio.h>
20#include <stdlib.h>
John Koleszar0ea50ce2010-05-18 11:58:33 -040021#include <string.h>
Tom Finegan00a35aa2013-11-14 12:37:42 -080022
James Zern58058812014-08-15 21:00:31 -070023#if CONFIG_LIBYUV
24#include "third_party/libyuv/include/libyuv/scale.h"
25#endif
26
Yaowu Xuf883b422016-08-30 14:01:10 -070027#include "aom/aom_encoder.h"
Tom Fineganba02c242017-05-16 15:01:54 -070028#if CONFIG_AV1_DECODER
Yaowu Xuf883b422016-08-30 14:01:10 -070029#include "aom/aom_decoder.h"
John Koleszar5ebe94f2012-12-23 07:20:10 -080030#endif
John Koleszar6ad3b742012-11-06 12:02:42 -080031
Tom Finegan00a35aa2013-11-14 12:37:42 -080032#include "./args.h"
Tom Finegan00a35aa2013-11-14 12:37:42 -080033#include "./ivfenc.h"
Tom Finegan7a691f12014-02-10 14:55:25 -080034#include "./tools_common.h"
Urvang Joshi09c293e2017-04-20 17:56:27 -070035#include "examples/encoder_util.h"
Tom Finegan03848f52013-11-05 10:02:18 -080036
Yaowu Xuf883b422016-08-30 14:01:10 -070037#if CONFIG_AV1_ENCODER
38#include "aom/aomcx.h"
John Koleszar6ad3b742012-11-06 12:02:42 -080039#endif
Yaowu Xuf883b422016-08-30 14:01:10 -070040#if CONFIG_AV1_DECODER
41#include "aom/aomdx.h"
John Koleszar6ad3b742012-11-06 12:02:42 -080042#endif
43
Yaowu Xuf883b422016-08-30 14:01:10 -070044#include "./aomstats.h"
Thomas Daedec0dca3c2016-02-25 17:23:17 -080045#include "./rate_hist.h"
Tom Finegan249366b2013-11-25 12:05:19 -080046#include "./warnings.h"
Thomas Daedec0dca3c2016-02-25 17:23:17 -080047#include "aom/aom_integer.h"
hui suefdad1f2017-05-16 18:01:25 -070048#include "aom_dsp/aom_dsp_common.h"
Thomas Daedec0dca3c2016-02-25 17:23:17 -080049#include "aom_ports/aom_timer.h"
50#include "aom_ports/mem_ops.h"
James Zerndba73762014-05-10 17:44:12 -070051#if CONFIG_WEBM_IO
Tom Finegan78cb2e62013-11-07 21:28:45 -080052#include "./webmenc.h"
James Zerndba73762014-05-10 17:44:12 -070053#endif
Tom Finegan78cb2e62013-11-07 21:28:45 -080054#include "./y4minput.h"
Tom Finegan03848f52013-11-05 10:02:18 -080055
John Koleszar6291dd42012-06-19 21:05:36 -070056/* Swallow warnings about unused results of fread/fwrite */
clang-format6c4d83e2016-08-08 19:03:30 -070057static size_t wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *stream) {
John Koleszar6ad3b742012-11-06 12:02:42 -080058 return fread(ptr, size, nmemb, stream);
John Koleszar6291dd42012-06-19 21:05:36 -070059}
60#define fread wrap_fread
61
62static size_t wrap_fwrite(const void *ptr, size_t size, size_t nmemb,
John Koleszar6ad3b742012-11-06 12:02:42 -080063 FILE *stream) {
64 return fwrite(ptr, size, nmemb, stream);
John Koleszar6291dd42012-06-19 21:05:36 -070065}
66#define fwrite wrap_fwrite
67
John Koleszar0ea50ce2010-05-18 11:58:33 -040068static const char *exec_name;
69
Yaowu Xuf883b422016-08-30 14:01:10 -070070static void warn_or_exit_on_errorv(aom_codec_ctx_t *ctx, int fatal,
Ronald S. Bultje9837bf42013-02-15 16:31:02 -080071 const char *s, va_list ap) {
John Koleszarc6b90392012-07-13 15:21:29 -070072 if (ctx->err) {
Yaowu Xuf883b422016-08-30 14:01:10 -070073 const char *detail = aom_codec_error_detail(ctx);
John Koleszar0ea50ce2010-05-18 11:58:33 -040074
John Koleszar6ad3b742012-11-06 12:02:42 -080075 vfprintf(stderr, s, ap);
Yaowu Xuf883b422016-08-30 14:01:10 -070076 fprintf(stderr, ": %s\n", aom_codec_error(ctx));
John Koleszar0ea50ce2010-05-18 11:58:33 -040077
clang-format6c4d83e2016-08-08 19:03:30 -070078 if (detail) fprintf(stderr, " %s\n", detail);
John Koleszar0ea50ce2010-05-18 11:58:33 -040079
clang-format6c4d83e2016-08-08 19:03:30 -070080 if (fatal) exit(EXIT_FAILURE);
John Koleszarc6b90392012-07-13 15:21:29 -070081 }
John Koleszar0ea50ce2010-05-18 11:58:33 -040082}
83
Yaowu Xuf883b422016-08-30 14:01:10 -070084static void ctx_exit_on_error(aom_codec_ctx_t *ctx, const char *s, ...) {
Ronald S. Bultje9837bf42013-02-15 16:31:02 -080085 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 Xuf883b422016-08-30 14:01:10 -070092static void warn_or_exit_on_error(aom_codec_ctx_t *ctx, int fatal,
Ronald S. Bultje9837bf42013-02-15 16:31:02 -080093 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 Xuf883b422016-08-30 14:01:10 -0700101static int read_frame(struct AvxInputContext *input_ctx, aom_image_t *img) {
Tom Finegan00a35aa2013-11-14 12:37:42 -0800102 FILE *f = input_ctx->file;
103 y4m_input *y4m = &input_ctx->y4m;
John Koleszarc6b90392012-07-13 15:21:29 -0700104 int shortread = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400105
Tom Finegan00a35aa2013-11-14 12:37:42 -0800106 if (input_ctx->file_type == FILE_TYPE_Y4M) {
clang-format6c4d83e2016-08-08 19:03:30 -0700107 if (y4m_input_fetch_frame(y4m, f, img) < 1) return 0;
John Koleszarc6b90392012-07-13 15:21:29 -0700108 } else {
Tom Finegan00a35aa2013-11-14 12:37:42 -0800109 shortread = read_yuv_frame(input_ctx, img);
John Koleszarc6b90392012-07-13 15:21:29 -0700110 }
111
112 return !shortread;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400113}
114
James Zern5c337fd2015-05-09 10:42:58 -0700115static int file_is_y4m(const char detect[4]) {
John Koleszarc6b90392012-07-13 15:21:29 -0700116 if (memcmp(detect, "YUV4", 4) == 0) {
117 return 1;
118 }
119 return 0;
Timothy B. Terriberry44d89492010-05-26 18:27:51 -0400120}
121
James Zern5c337fd2015-05-09 10:42:58 -0700122static int fourcc_is_ivf(const char detect[4]) {
Alex Converse64b89f12014-01-06 16:29:09 -0800123 if (memcmp(detect, "DKIF", 4) == 0) {
124 return 1;
125 }
126 return 0;
127}
John Koleszardc666302010-10-20 12:05:48 -0400128
clang-format6c4d83e2016-08-08 19:03:30 -0700129static const arg_def_t debugmode =
130 ARG_DEF("D", "debug", 0, "Debug mode (makes output deterministic)");
131static const arg_def_t outputfile =
132 ARG_DEF("o", "output", 1, "Output filename");
133static const arg_def_t use_yv12 =
134 ARG_DEF(NULL, "yv12", 0, "Input file is YV12 ");
135static const arg_def_t use_i420 =
136 ARG_DEF(NULL, "i420", 0, "Input file is I420 (default)");
137static const arg_def_t use_i422 =
138 ARG_DEF(NULL, "i422", 0, "Input file is I422");
139static const arg_def_t use_i444 =
140 ARG_DEF(NULL, "i444", 0, "Input file is I444");
141static const arg_def_t use_i440 =
142 ARG_DEF(NULL, "i440", 0, "Input file is I440");
143static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use");
144static const arg_def_t passes =
145 ARG_DEF("p", "passes", 1, "Number of passes (1/2)");
146static const arg_def_t pass_arg =
147 ARG_DEF(NULL, "pass", 1, "Pass to execute (1/2)");
148static const arg_def_t fpf_name =
149 ARG_DEF(NULL, "fpf", 1, "First pass statistics file name");
Pengchong Jinf349b072014-07-14 09:13:38 -0700150#if CONFIG_FP_MB_STATS
clang-format6c4d83e2016-08-08 19:03:30 -0700151static const arg_def_t fpmbf_name =
152 ARG_DEF(NULL, "fpmbf", 1, "First pass block statistics file name");
Pengchong Jinf349b072014-07-14 09:13:38 -0700153#endif
clang-format6c4d83e2016-08-08 19:03:30 -0700154static const arg_def_t limit =
155 ARG_DEF(NULL, "limit", 1, "Stop encoding after n input frames");
156static const arg_def_t skip =
157 ARG_DEF(NULL, "skip", 1, "Skip the first n input frames");
158static const arg_def_t deadline =
159 ARG_DEF("d", "deadline", 1, "Deadline per frame (usec)");
clang-format6c4d83e2016-08-08 19:03:30 -0700160static const arg_def_t good_dl =
161 ARG_DEF(NULL, "good", 0, "Use Good Quality Deadline");
clang-format6c4d83e2016-08-08 19:03:30 -0700162static const arg_def_t quietarg =
163 ARG_DEF("q", "quiet", 0, "Do not print encode progress");
164static const arg_def_t verbosearg =
165 ARG_DEF("v", "verbose", 0, "Show encoder parameters");
166static const arg_def_t psnrarg =
167 ARG_DEF(NULL, "psnr", 0, "Show PSNR in status line");
Tom Finegan49dc9ca2013-11-21 16:46:40 -0800168
Ronald S. Bultje9837bf42013-02-15 16:31:02 -0800169static const struct arg_enum_list test_decode_enum[] = {
clang-format6c4d83e2016-08-08 19:03:30 -0700170 { "off", TEST_DECODE_OFF },
171 { "fatal", TEST_DECODE_FATAL },
172 { "warn", TEST_DECODE_WARN },
173 { NULL, 0 }
Ronald S. Bultje9837bf42013-02-15 16:31:02 -0800174};
Deb Mukherjeea349ee32014-10-13 14:27:53 -0700175static const arg_def_t recontest = ARG_DEF_ENUM(
176 NULL, "test-decode", 1, "Test encode/decode mismatch", test_decode_enum);
clang-format6c4d83e2016-08-08 19:03:30 -0700177static const arg_def_t framerate =
178 ARG_DEF(NULL, "fps", 1, "Stream frame rate (rate/scale)");
179static const arg_def_t use_webm =
180 ARG_DEF(NULL, "webm", 0, "Output WebM (default when WebM IO is enabled)");
181static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0, "Output IVF");
182static const arg_def_t out_part =
183 ARG_DEF("P", "output-partitions", 0,
184 "Makes encoder output partitions. Requires IVF output!");
185static const arg_def_t q_hist_n =
186 ARG_DEF(NULL, "q-hist", 1, "Show quantizer histogram (n-buckets)");
187static const arg_def_t rate_hist_n =
188 ARG_DEF(NULL, "rate-hist", 1, "Show rate histogram (n-buckets)");
189static const arg_def_t disable_warnings =
190 ARG_DEF(NULL, "disable-warnings", 0,
191 "Disable warnings about potentially incorrect encode settings.");
192static const arg_def_t disable_warning_prompt =
193 ARG_DEF("y", "disable-warning-prompt", 0,
194 "Display warnings, but do not prompt user to continue.");
Alex Conversed66bd222014-02-21 10:52:09 -0800195
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200196#if CONFIG_HIGHBITDEPTH
Nathan E. Egged1b239c2016-07-12 18:03:18 -0400197static const struct arg_enum_list bitdepth_enum[] = {
198 { "8", AOM_BITS_8 }, { "10", AOM_BITS_10 }, { "12", AOM_BITS_12 }, { NULL, 0 }
199};
200
201static const arg_def_t bitdeptharg = ARG_DEF_ENUM(
202 "b", "bit-depth", 1,
203 "Bit depth for codec (8 for version <=1, 10 or 12 for version 2)",
204 bitdepth_enum);
205static const arg_def_t inbitdeptharg =
206 ARG_DEF(NULL, "input-bit-depth", 1, "Bit depth of input");
Deb Mukherjee5acfafb2014-08-26 12:35:15 -0700207#endif
Tom Finegan44dd3272013-11-20 17:18:28 -0800208
clang-format6c4d83e2016-08-08 19:03:30 -0700209static const arg_def_t *main_args[] = { &debugmode,
210 &outputfile,
211 &codecarg,
212 &passes,
213 &pass_arg,
214 &fpf_name,
215 &limit,
216 &skip,
217 &deadline,
clang-format6c4d83e2016-08-08 19:03:30 -0700218 &good_dl,
clang-format6c4d83e2016-08-08 19:03:30 -0700219 &quietarg,
220 &verbosearg,
221 &psnrarg,
222 &use_webm,
223 &use_ivf,
224 &out_part,
225 &q_hist_n,
226 &rate_hist_n,
227 &disable_warnings,
228 &disable_warning_prompt,
229 &recontest,
230 NULL };
John Koleszar0ea50ce2010-05-18 11:58:33 -0400231
clang-format6c4d83e2016-08-08 19:03:30 -0700232static const arg_def_t usage =
233 ARG_DEF("u", "usage", 1, "Usage profile number to use");
234static const arg_def_t threads =
235 ARG_DEF("t", "threads", 1, "Max number of threads to use");
236static const arg_def_t profile =
237 ARG_DEF(NULL, "profile", 1, "Bitstream profile number to use");
Deb Mukherjeea349ee32014-10-13 14:27:53 -0700238static const arg_def_t width = ARG_DEF("w", "width", 1, "Frame width");
239static const arg_def_t height = ARG_DEF("h", "height", 1, "Frame height");
James Zerndba73762014-05-10 17:44:12 -0700240#if CONFIG_WEBM_IO
Alok Ahuja72c76ca2011-04-21 00:50:07 -0700241static const struct arg_enum_list stereo_mode_enum[] = {
clang-format6c4d83e2016-08-08 19:03:30 -0700242 { "mono", STEREO_FORMAT_MONO },
243 { "left-right", STEREO_FORMAT_LEFT_RIGHT },
244 { "bottom-top", STEREO_FORMAT_BOTTOM_TOP },
245 { "top-bottom", STEREO_FORMAT_TOP_BOTTOM },
246 { "right-left", STEREO_FORMAT_RIGHT_LEFT },
247 { NULL, 0 }
Alok Ahuja72c76ca2011-04-21 00:50:07 -0700248};
Deb Mukherjeea349ee32014-10-13 14:27:53 -0700249static const arg_def_t stereo_mode = ARG_DEF_ENUM(
250 NULL, "stereo-mode", 1, "Stereo 3D video format", stereo_mode_enum);
James Zerndba73762014-05-10 17:44:12 -0700251#endif
Deb Mukherjeea349ee32014-10-13 14:27:53 -0700252static const arg_def_t timebase = ARG_DEF(
253 NULL, "timebase", 1, "Output timestamp precision (fractional seconds)");
clang-format6c4d83e2016-08-08 19:03:30 -0700254static const arg_def_t error_resilient =
255 ARG_DEF(NULL, "error-resilient", 1, "Enable error resiliency features");
256static const arg_def_t lag_in_frames =
257 ARG_DEF(NULL, "lag-in-frames", 1, "Max number of frames to lag");
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700258#if CONFIG_EXT_TILE
259static const arg_def_t large_scale_tile =
260 ARG_DEF(NULL, "large-scale-tile", 1,
261 "Large scale tile coding (0: off (default), 1: on)");
262#endif // CONFIG_EXT_TILE
Rupert Swarbricke0b15992017-11-09 15:04:32 +0000263#if CONFIG_MONO_VIDEO
264static const arg_def_t monochrome =
265 ARG_DEF(NULL, "monochrome", 0, "Monochrome video (no chroma planes)");
266#endif // MONOCHROME
John Koleszar0ea50ce2010-05-18 11:58:33 -0400267
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700268static const arg_def_t *global_args[] = { &use_yv12,
269 &use_i420,
270 &use_i422,
271 &use_i444,
272 &use_i440,
273 &usage,
274 &threads,
275 &profile,
276 &width,
277 &height,
James Zerndba73762014-05-10 17:44:12 -0700278#if CONFIG_WEBM_IO
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700279 &stereo_mode,
James Zerndba73762014-05-10 17:44:12 -0700280#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700281 &timebase,
282 &framerate,
283 &error_resilient,
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200284#if CONFIG_HIGHBITDEPTH
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700285 &bitdeptharg,
Deb Mukherjee5acfafb2014-08-26 12:35:15 -0700286#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700287 &lag_in_frames,
288#if CONFIG_EXT_TILE
289 &large_scale_tile,
290#endif // CONFIG_EXT_TILE
Rupert Swarbricke0b15992017-11-09 15:04:32 +0000291#if CONFIG_MONO_VIDEO
292 &monochrome,
293#endif // CONFIG_MONO_VIDEO
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700294 NULL };
John Koleszar0ea50ce2010-05-18 11:58:33 -0400295
clang-format6c4d83e2016-08-08 19:03:30 -0700296static const arg_def_t dropframe_thresh =
297 ARG_DEF(NULL, "drop-frame", 1, "Temporal resampling threshold (buf %)");
Debargha Mukherjee29e40a62017-06-14 09:37:12 -0700298static const arg_def_t resize_mode =
299 ARG_DEF(NULL, "resize-mode", 1, "Frame resize mode");
Urvang Joshide71d142017-10-05 12:12:15 -0700300static const arg_def_t resize_denominator =
301 ARG_DEF(NULL, "resize-denominator", 1, "Frame resize denominator");
302static const arg_def_t resize_kf_denominator = ARG_DEF(
303 NULL, "resize-kf-denominator", 1, "Frame resize keyframe denominator");
Fergus Simpsonc4e78942017-04-10 14:59:00 -0700304#if CONFIG_FRAME_SUPERRES
305static const arg_def_t superres_mode =
306 ARG_DEF(NULL, "superres-mode", 1, "Frame super-resolution mode");
Urvang Joshide71d142017-10-05 12:12:15 -0700307static const arg_def_t superres_denominator = ARG_DEF(
308 NULL, "superres-denominator", 1, "Frame super-resolution denominator");
309static const arg_def_t superres_kf_denominator =
310 ARG_DEF(NULL, "superres-kf-denominator", 1,
311 "Frame super-resolution keyframe denominator");
Debargha Mukherjee7166f222017-09-05 21:32:42 -0700312static const arg_def_t superres_qthresh = ARG_DEF(
313 NULL, "superres-qthresh", 1, "Frame super-resolution qindex threshold");
314static const arg_def_t superres_kf_qthresh =
315 ARG_DEF(NULL, "superres-kf-qthresh", 1,
316 "Frame super-resolution keyframe qindex threshold");
Fergus Simpsonc4e78942017-04-10 14:59:00 -0700317#endif // CONFIG_FRAME_SUPERRES
Fergus Simpson7a3f4b32017-06-23 10:32:37 -0700318static const struct arg_enum_list end_usage_enum[] = { { "vbr", AOM_VBR },
319 { "cbr", AOM_CBR },
320 { "cq", AOM_CQ },
321 { "q", AOM_Q },
322 { NULL, 0 } };
clang-format6c4d83e2016-08-08 19:03:30 -0700323static const arg_def_t end_usage =
324 ARG_DEF_ENUM(NULL, "end-usage", 1, "Rate control mode", end_usage_enum);
325static const arg_def_t target_bitrate =
326 ARG_DEF(NULL, "target-bitrate", 1, "Bitrate (kbps)");
327static const arg_def_t min_quantizer =
328 ARG_DEF(NULL, "min-q", 1, "Minimum (best) quantizer");
329static const arg_def_t max_quantizer =
330 ARG_DEF(NULL, "max-q", 1, "Maximum (worst) quantizer");
331static const arg_def_t undershoot_pct =
332 ARG_DEF(NULL, "undershoot-pct", 1, "Datarate undershoot (min) target (%)");
333static const arg_def_t overshoot_pct =
334 ARG_DEF(NULL, "overshoot-pct", 1, "Datarate overshoot (max) target (%)");
335static const arg_def_t buf_sz =
336 ARG_DEF(NULL, "buf-sz", 1, "Client buffer size (ms)");
337static const arg_def_t buf_initial_sz =
338 ARG_DEF(NULL, "buf-initial-sz", 1, "Client initial buffer size (ms)");
339static const arg_def_t buf_optimal_sz =
340 ARG_DEF(NULL, "buf-optimal-sz", 1, "Client optimal buffer size (ms)");
Fergus Simpson7a3f4b32017-06-23 10:32:37 -0700341static const arg_def_t *rc_args[] = { &dropframe_thresh,
342 &resize_mode,
Urvang Joshide71d142017-10-05 12:12:15 -0700343 &resize_denominator,
344 &resize_kf_denominator,
Fergus Simpsonc4e78942017-04-10 14:59:00 -0700345#if CONFIG_FRAME_SUPERRES
Fergus Simpson7a3f4b32017-06-23 10:32:37 -0700346 &superres_mode,
Urvang Joshide71d142017-10-05 12:12:15 -0700347 &superres_denominator,
348 &superres_kf_denominator,
Debargha Mukherjee7166f222017-09-05 21:32:42 -0700349 &superres_qthresh,
350 &superres_kf_qthresh,
Fergus Simpsonc4e78942017-04-10 14:59:00 -0700351#endif // CONFIG_FRAME_SUPERRES
Fergus Simpson7a3f4b32017-06-23 10:32:37 -0700352 &end_usage,
353 &target_bitrate,
354 &min_quantizer,
355 &max_quantizer,
356 &undershoot_pct,
357 &overshoot_pct,
358 &buf_sz,
359 &buf_initial_sz,
360 &buf_optimal_sz,
361 NULL };
John Koleszar0ea50ce2010-05-18 11:58:33 -0400362
clang-format6c4d83e2016-08-08 19:03:30 -0700363static const arg_def_t bias_pct =
364 ARG_DEF(NULL, "bias-pct", 1, "CBR/VBR bias (0=CBR, 100=VBR)");
365static const arg_def_t minsection_pct =
366 ARG_DEF(NULL, "minsection-pct", 1, "GOP min bitrate (% of target)");
367static const arg_def_t maxsection_pct =
368 ARG_DEF(NULL, "maxsection-pct", 1, "GOP max bitrate (% of target)");
369static const arg_def_t *rc_twopass_args[] = { &bias_pct, &minsection_pct,
370 &maxsection_pct, NULL };
John Koleszar0ea50ce2010-05-18 11:58:33 -0400371
clang-format6c4d83e2016-08-08 19:03:30 -0700372static const arg_def_t kf_min_dist =
373 ARG_DEF(NULL, "kf-min-dist", 1, "Minimum keyframe interval (frames)");
374static const arg_def_t kf_max_dist =
375 ARG_DEF(NULL, "kf-max-dist", 1, "Maximum keyframe interval (frames)");
376static const arg_def_t kf_disabled =
377 ARG_DEF(NULL, "disable-kf", 0, "Disable keyframe placement");
378static const arg_def_t *kf_args[] = { &kf_min_dist, &kf_max_dist, &kf_disabled,
379 NULL };
John Koleszar0ea50ce2010-05-18 11:58:33 -0400380
clang-format6c4d83e2016-08-08 19:03:30 -0700381static const arg_def_t noise_sens =
382 ARG_DEF(NULL, "noise-sensitivity", 1, "Noise sensitivity (frames to blur)");
383static const arg_def_t sharpness =
384 ARG_DEF(NULL, "sharpness", 1, "Loop filter sharpness (0..7)");
385static const arg_def_t static_thresh =
386 ARG_DEF(NULL, "static-thresh", 1, "Motion detection threshold");
387static const arg_def_t auto_altref =
388 ARG_DEF(NULL, "auto-alt-ref", 1, "Enable automatic alt reference frames");
389static const arg_def_t arnr_maxframes =
390 ARG_DEF(NULL, "arnr-maxframes", 1, "AltRef max frames (0..15)");
391static const arg_def_t arnr_strength =
392 ARG_DEF(NULL, "arnr-strength", 1, "AltRef filter strength (0..6)");
John Koleszarb0da9b32010-12-17 09:43:39 -0500393static const struct arg_enum_list tuning_enum[] = {
Yushin Chod808bfc2017-08-10 15:54:36 -0700394 { "psnr", AOM_TUNE_PSNR },
395 { "ssim", AOM_TUNE_SSIM },
396#ifdef CONFIG_DIST_8X8
397 { "cdef-dist", AOM_TUNE_CDEF_DIST },
398 { "daala-dist", AOM_TUNE_DAALA_DIST },
399#endif
400 { NULL, 0 }
John Koleszarb0da9b32010-12-17 09:43:39 -0500401};
Yushin Chod808bfc2017-08-10 15:54:36 -0700402static const arg_def_t tune_metric =
403 ARG_DEF_ENUM(NULL, "tune", 1, "Distortion metric tuned with", tuning_enum);
clang-format6c4d83e2016-08-08 19:03:30 -0700404static const arg_def_t cq_level =
405 ARG_DEF(NULL, "cq-level", 1, "Constant/Constrained Quality level");
406static const arg_def_t max_intra_rate_pct =
407 ARG_DEF(NULL, "max-intra-rate", 1, "Max I-frame bitrate (pct)");
John Koleszara9c75972012-11-08 17:09:30 -0800408
Yaowu Xuf883b422016-08-30 14:01:10 -0700409#if CONFIG_AV1_ENCODER
410static const arg_def_t cpu_used_av1 =
Yaowu Xu39737592017-04-21 16:39:09 -0700411 ARG_DEF(NULL, "cpu-used", 1, "CPU Used (0..8)");
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700412#if CONFIG_EXT_TILE
413static const arg_def_t single_tile_decoding =
414 ARG_DEF(NULL, "single-tile-decoding", 1,
415 "Single tile decoding (0: off (default), 1: on)");
416#endif // CONFIG_EXT_TILE
clang-format6c4d83e2016-08-08 19:03:30 -0700417static const arg_def_t tile_cols =
418 ARG_DEF(NULL, "tile-columns", 1, "Number of tile columns to use, log2");
419static const arg_def_t tile_rows =
420 ARG_DEF(NULL, "tile-rows", 1,
421 "Number of tile rows to use, log2 (set to 0 while threads > 1)");
Dominic Symesf58f1112017-09-25 12:47:40 +0200422#if CONFIG_MAX_TILE
423static const arg_def_t tile_width =
Dominic Symes26ad0b22017-10-01 16:35:13 +0200424 ARG_DEF(NULL, "tile-width", 1, "Tile widths (comma separated)");
Dominic Symesf58f1112017-09-25 12:47:40 +0200425static const arg_def_t tile_height =
Dominic Symes26ad0b22017-10-01 16:35:13 +0200426 ARG_DEF(NULL, "tile-height", 1, "Tile heights (command separated)");
Dominic Symesf58f1112017-09-25 12:47:40 +0200427#endif
Fangwen Fu7b9f2b32017-01-17 14:01:52 -0800428#if CONFIG_DEPENDENT_HORZTILES
429static const arg_def_t tile_dependent_rows =
430 ARG_DEF(NULL, "tile-dependent-rows", 1, "Enable dependent Tile rows");
431#endif
Ryan Lei9b02b0e2017-01-30 15:52:20 -0800432#if CONFIG_LOOPFILTERING_ACROSS_TILES
Ryan Lei7386eda2016-12-08 21:08:31 -0800433static const arg_def_t tile_loopfilter = ARG_DEF(
434 NULL, "tile-loopfilter", 1, "Enable loop filter across tile boundary");
Ryan Lei9b02b0e2017-01-30 15:52:20 -0800435#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
clang-format6c4d83e2016-08-08 19:03:30 -0700436static const arg_def_t lossless =
437 ARG_DEF(NULL, "lossless", 1, "Lossless mode (0: false (default), 1: true)");
Steinar Midtskogene44c6222017-11-09 13:22:09 +0100438static const arg_def_t enable_cdef =
439 ARG_DEF(NULL, "enable-cdef", 1,
440 "Enable the constrained directional enhancement filter (0: false, "
441 "1: true (default))");
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700442#if CONFIG_AOM_QM
443static const arg_def_t enable_qm =
Yaowu Xu9dcf5602016-11-09 15:11:22 -0800444 ARG_DEF(NULL, "enable-qm", 1,
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700445 "Enable quantisation matrices (0: false (default), 1: true)");
446static const arg_def_t qm_min = ARG_DEF(
Yaowu Xu9dcf5602016-11-09 15:11:22 -0800447 NULL, "qm-min", 1, "Min quant matrix flatness (0..15), default is 8");
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700448static const arg_def_t qm_max = ARG_DEF(
Yaowu Xu9dcf5602016-11-09 15:11:22 -0800449 NULL, "qm-max", 1, "Max quant matrix flatness (0..15), default is 16");
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700450#endif
Yushin Chod808bfc2017-08-10 15:54:36 -0700451#if CONFIG_DIST_8X8
452static const arg_def_t enable_dist_8x8 =
453 ARG_DEF(NULL, "enable-dist-8x8", 1,
454 "Enable dist-8x8 (0: false (default), 1: true)");
455#endif // CONFIG_DIST_8X8
Yaowu Xu859a5272016-11-10 15:32:21 -0800456static const arg_def_t num_tg = ARG_DEF(
457 NULL, "num-tile-groups", 1, "Maximum number of tile groups, default is 1");
Thomas Daviesaf6df172016-11-09 14:04:18 +0000458static const arg_def_t mtu_size =
459 ARG_DEF(NULL, "mtu-size", 1,
Yaowu Xu859a5272016-11-10 15:32:21 -0800460 "MTU size for a tile group, default is 0 (no MTU targeting), "
461 "overrides maximum number of tile groups");
Fangwen Fu8d164de2016-12-14 13:40:54 -0800462#if CONFIG_TEMPMV_SIGNALING
463static const arg_def_t disable_tempmv = ARG_DEF(
464 NULL, "disable-tempmv", 1, "Disable temporal mv prediction (default is 0)");
465#endif
Yaowu Xud59fb482016-09-30 15:39:53 -0700466static const arg_def_t frame_parallel_decoding =
467 ARG_DEF(NULL, "frame-parallel", 1,
468 "Enable frame parallel decodability features "
469 "(0: false (default), 1: true)");
Thomas Davies3ab20b42017-09-19 10:30:53 +0100470#if !CONFIG_EXT_DELTA_Q
Thomas Daviesf6936102016-09-05 16:51:31 +0100471static const arg_def_t aq_mode = ARG_DEF(
472 NULL, "aq-mode", 1,
473 "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, "
Thomas Daviesf6936102016-09-05 16:51:31 +0100474 "3: cyclic refresh, 4: delta quant)");
Arild Fuldseth07441162016-08-15 15:07:52 +0200475#else
Thomase28d92b2016-09-20 12:07:11 +0100476static const arg_def_t aq_mode = ARG_DEF(
477 NULL, "aq-mode", 1,
478 "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, "
Thomas Daviesf6936102016-09-05 16:51:31 +0100479 "3: cyclic refresh)");
Arild Fuldseth07441162016-08-15 15:07:52 +0200480#endif
Fangwen Fu6160df22017-04-24 09:45:51 -0700481#if CONFIG_EXT_DELTA_Q
482static const arg_def_t deltaq_mode = ARG_DEF(
483 NULL, "deltaq-mode", 1,
484 "Delta qindex mode (0: off (default), 1: deltaq 2: deltaq + deltalf)");
485#endif
clang-format6c4d83e2016-08-08 19:03:30 -0700486static const arg_def_t frame_periodic_boost =
487 ARG_DEF(NULL, "frame-boost", 1,
488 "Enable frame periodic boost (0: off (default), 1: on)");
James Zernf82cfc22015-06-05 16:07:20 -0700489static const arg_def_t gf_cbr_boost_pct = ARG_DEF(
490 NULL, "gf-cbr-boost", 1, "Boost for Golden Frame in CBR mode (pct)");
clang-format6c4d83e2016-08-08 19:03:30 -0700491static const arg_def_t max_inter_rate_pct =
492 ARG_DEF(NULL, "max-inter-rate", 1, "Max P-frame bitrate (pct)");
Debargha Mukherjee98526432015-04-01 16:39:06 -0700493static const arg_def_t min_gf_interval = ARG_DEF(
494 NULL, "min-gf-interval", 1,
495 "min gf/arf frame interval (default 0, indicating in-built behavior)");
496static const arg_def_t max_gf_interval = ARG_DEF(
497 NULL, "max-gf-interval", 1,
498 "max gf/arf frame interval (default 0, indicating in-built behavior)");
James Zern5248d712014-01-14 17:56:45 -0800499
Yaowu Xufc996362015-02-10 15:03:05 -0800500static const struct arg_enum_list color_space_enum[] = {
Tom Finegan01d43e12017-08-17 09:21:42 -0700501 { "unknown", AOM_CS_UNKNOWN }, { "bt601", AOM_CS_BT_601 },
502 { "bt709", AOM_CS_BT_709 }, { "smpte170", AOM_CS_SMPTE_170 },
503 { "smpte240", AOM_CS_SMPTE_240 }, { "bt2020ncl", AOM_CS_BT_2020_NCL },
504 { "bt2020cl", AOM_CS_BT_2020_CL }, { "sRGB", AOM_CS_SRGB },
505 { "ICtCp", AOM_CS_ICTCP }, { NULL, 0 }
Yaowu Xufc996362015-02-10 15:03:05 -0800506};
507
clang-format6c4d83e2016-08-08 19:03:30 -0700508static const arg_def_t input_color_space =
clang-format4eafefe2017-09-04 12:51:20 -0700509 ARG_DEF_ENUM(NULL, "color-space", 1,
510 "The color space of input content:", color_space_enum);
Yaowu Xufc996362015-02-10 15:03:05 -0800511
anorkin76fb1262017-03-22 15:12:12 -0700512static const struct arg_enum_list transfer_function_enum[] = {
513 { "unknown", AOM_TF_UNKNOWN },
514 { "bt709", AOM_TF_BT_709 },
515 { "pq", AOM_TF_PQ },
516 { "hlg", AOM_TF_HLG },
517 { NULL, 0 }
518};
519
520static const arg_def_t input_transfer_function = ARG_DEF_ENUM(
clang-format4eafefe2017-09-04 12:51:20 -0700521 NULL, "transfer-function", 1,
522 "The transfer function of input content:", transfer_function_enum);
anorkin76fb1262017-03-22 15:12:12 -0700523
524static const struct arg_enum_list chroma_sample_position_enum[] = {
525 { "unknown", AOM_CSP_UNKNOWN },
526 { "vertical", AOM_CSP_VERTICAL },
527 { "colocated", AOM_CSP_COLOCATED },
528 { NULL, 0 }
529};
530
531static const arg_def_t input_chroma_sample_position =
532 ARG_DEF_ENUM(NULL, "chroma-sample-position", 1,
533 "The chroma sample position when chroma 4:2:0 is signaled:",
534 chroma_sample_position_enum);
anorkin76fb1262017-03-22 15:12:12 -0700535
Alex Converse219f6452014-08-06 11:01:18 -0700536static const struct arg_enum_list tune_content_enum[] = {
Yaowu Xuf883b422016-08-30 14:01:10 -0700537 { "default", AOM_CONTENT_DEFAULT },
538 { "screen", AOM_CONTENT_SCREEN },
clang-format6c4d83e2016-08-08 19:03:30 -0700539 { NULL, 0 }
Alex Converse219f6452014-08-06 11:01:18 -0700540};
541
542static const arg_def_t tune_content = ARG_DEF_ENUM(
543 NULL, "tune-content", 1, "Tune content type", tune_content_enum);
hui su82331e02015-08-16 18:21:56 -0700544#endif
Alex Converse219f6452014-08-06 11:01:18 -0700545
Yaowu Xuf883b422016-08-30 14:01:10 -0700546#if CONFIG_AV1_ENCODER
Geza Lore454989f2016-03-24 13:56:05 +0000547#if CONFIG_EXT_PARTITION
548static const struct arg_enum_list superblock_size_enum[] = {
Yaowu Xuf883b422016-08-30 14:01:10 -0700549 { "dynamic", AOM_SUPERBLOCK_SIZE_DYNAMIC },
550 { "64", AOM_SUPERBLOCK_SIZE_64X64 },
551 { "128", AOM_SUPERBLOCK_SIZE_128X128 },
clang-format6c4d83e2016-08-08 19:03:30 -0700552 { NULL, 0 }
Geza Lore454989f2016-03-24 13:56:05 +0000553};
554static const arg_def_t superblock_size = ARG_DEF_ENUM(
555 NULL, "sb-size", 1, "Superblock size to use", superblock_size_enum);
556#endif // CONFIG_EXT_PARTITION
557
Yaowu Xuf883b422016-08-30 14:01:10 -0700558static const arg_def_t *av1_args[] = { &cpu_used_av1,
559 &auto_altref,
560 &sharpness,
561 &static_thresh,
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700562#if CONFIG_EXT_TILE
563 &single_tile_decoding,
564#endif // CONFIG_EXT_TILE
Yaowu Xuf883b422016-08-30 14:01:10 -0700565 &tile_cols,
566 &tile_rows,
Fangwen Fu7b9f2b32017-01-17 14:01:52 -0800567#if CONFIG_DEPENDENT_HORZTILES
568 &tile_dependent_rows,
569#endif
Ryan Lei9b02b0e2017-01-30 15:52:20 -0800570#if CONFIG_LOOPFILTERING_ACROSS_TILES
Ryan Lei7386eda2016-12-08 21:08:31 -0800571 &tile_loopfilter,
Ryan Lei9b02b0e2017-01-30 15:52:20 -0800572#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
Yaowu Xuf883b422016-08-30 14:01:10 -0700573 &arnr_maxframes,
574 &arnr_strength,
Yushin Chod808bfc2017-08-10 15:54:36 -0700575 &tune_metric,
Yaowu Xuf883b422016-08-30 14:01:10 -0700576 &cq_level,
577 &max_intra_rate_pct,
578 &max_inter_rate_pct,
579 &gf_cbr_boost_pct,
580 &lossless,
Steinar Midtskogene44c6222017-11-09 13:22:09 +0100581 &enable_cdef,
Yaowu Xu6c8ec652016-11-09 13:58:25 -0800582#if CONFIG_AOM_QM
583 &enable_qm,
584 &qm_min,
585 &qm_max,
586#endif
Yushin Chod808bfc2017-08-10 15:54:36 -0700587#if CONFIG_DIST_8X8
588 &enable_dist_8x8,
589#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700590 &frame_parallel_decoding,
591 &aq_mode,
Fangwen Fu6160df22017-04-24 09:45:51 -0700592#if CONFIG_EXT_DELTA_Q
593 &deltaq_mode,
594#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700595 &frame_periodic_boost,
596 &noise_sens,
597 &tune_content,
598 &input_color_space,
anorkin76fb1262017-03-22 15:12:12 -0700599 &input_transfer_function,
600 &input_chroma_sample_position,
Yaowu Xuf883b422016-08-30 14:01:10 -0700601 &min_gf_interval,
602 &max_gf_interval,
Geza Lore454989f2016-03-24 13:56:05 +0000603#if CONFIG_EXT_PARTITION
Yaowu Xuf883b422016-08-30 14:01:10 -0700604 &superblock_size,
Geza Lore454989f2016-03-24 13:56:05 +0000605#endif // CONFIG_EXT_PARTITION
Thomas Daviesaf6df172016-11-09 14:04:18 +0000606 &num_tg,
607 &mtu_size,
Fangwen Fu8d164de2016-12-14 13:40:54 -0800608#if CONFIG_TEMPMV_SIGNALING
609 &disable_tempmv,
610#endif
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200611#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -0700612 &bitdeptharg,
613 &inbitdeptharg,
Sebastien Alaiwan71e87842017-04-12 16:03:28 +0200614#endif // CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -0700615 NULL };
616static const int av1_arg_ctrl_map[] = { AOME_SET_CPUUSED,
617 AOME_SET_ENABLEAUTOALTREF,
618 AOME_SET_SHARPNESS,
619 AOME_SET_STATIC_THRESHOLD,
Yunqing Wangeeb08a92017-07-07 21:25:18 -0700620#if CONFIG_EXT_TILE
621 AV1E_SET_SINGLE_TILE_DECODING,
622#endif // CONFIG_EXT_TILE
Yaowu Xuf883b422016-08-30 14:01:10 -0700623 AV1E_SET_TILE_COLUMNS,
624 AV1E_SET_TILE_ROWS,
Fangwen Fu7b9f2b32017-01-17 14:01:52 -0800625#if CONFIG_DEPENDENT_HORZTILES
626 AV1E_SET_TILE_DEPENDENT_ROWS,
627#endif
Ryan Lei9b02b0e2017-01-30 15:52:20 -0800628#if CONFIG_LOOPFILTERING_ACROSS_TILES
Ryan Lei7386eda2016-12-08 21:08:31 -0800629 AV1E_SET_TILE_LOOPFILTER,
Ryan Lei9b02b0e2017-01-30 15:52:20 -0800630#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
Yaowu Xuf883b422016-08-30 14:01:10 -0700631 AOME_SET_ARNR_MAXFRAMES,
632 AOME_SET_ARNR_STRENGTH,
Yaowu Xuf883b422016-08-30 14:01:10 -0700633 AOME_SET_TUNING,
634 AOME_SET_CQ_LEVEL,
635 AOME_SET_MAX_INTRA_BITRATE_PCT,
636 AV1E_SET_MAX_INTER_BITRATE_PCT,
637 AV1E_SET_GF_CBR_BOOST_PCT,
638 AV1E_SET_LOSSLESS,
Steinar Midtskogene44c6222017-11-09 13:22:09 +0100639 AV1E_SET_ENABLE_CDEF,
Yaowu Xu6c8ec652016-11-09 13:58:25 -0800640#if CONFIG_AOM_QM
641 AV1E_SET_ENABLE_QM,
642 AV1E_SET_QM_MIN,
643 AV1E_SET_QM_MAX,
644#endif
Yushin Chod808bfc2017-08-10 15:54:36 -0700645#if CONFIG_DIST_8X8
646 AV1E_SET_ENABLE_DIST_8X8,
647#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700648 AV1E_SET_FRAME_PARALLEL_DECODING,
649 AV1E_SET_AQ_MODE,
Fangwen Fu6160df22017-04-24 09:45:51 -0700650#if CONFIG_EXT_DELTA_Q
651 AV1E_SET_DELTAQ_MODE,
652#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700653 AV1E_SET_FRAME_PERIODIC_BOOST,
654 AV1E_SET_NOISE_SENSITIVITY,
655 AV1E_SET_TUNE_CONTENT,
656 AV1E_SET_COLOR_SPACE,
anorkin76fb1262017-03-22 15:12:12 -0700657 AV1E_SET_TRANSFER_FUNCTION,
658 AV1E_SET_CHROMA_SAMPLE_POSITION,
Yaowu Xuf883b422016-08-30 14:01:10 -0700659 AV1E_SET_MIN_GF_INTERVAL,
660 AV1E_SET_MAX_GF_INTERVAL,
Geza Lore454989f2016-03-24 13:56:05 +0000661#if CONFIG_EXT_PARTITION
Yaowu Xuf883b422016-08-30 14:01:10 -0700662 AV1E_SET_SUPERBLOCK_SIZE,
Geza Lore454989f2016-03-24 13:56:05 +0000663#endif // CONFIG_EXT_PARTITION
Thomas Daviesaf6df172016-11-09 14:04:18 +0000664 AV1E_SET_NUM_TG,
665 AV1E_SET_MTU,
Fangwen Fu8d164de2016-12-14 13:40:54 -0800666#if CONFIG_TEMPMV_SIGNALING
667 AV1E_SET_DISABLE_TEMPMV,
668#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700669 0 };
hui su82331e02015-08-16 18:21:56 -0700670#endif
671
John Koleszar0ea50ce2010-05-18 11:58:33 -0400672static const arg_def_t *no_args[] = { NULL };
673
James Zern59e7a472015-05-09 10:33:26 -0700674void usage_exit(void) {
John Koleszarc6b90392012-07-13 15:21:29 -0700675 int i;
Yaowu Xuf883b422016-08-30 14:01:10 -0700676 const int num_encoder = get_aom_encoder_count();
John Koleszar0ea50ce2010-05-18 11:58:33 -0400677
John Koleszarc6b90392012-07-13 15:21:29 -0700678 fprintf(stderr, "Usage: %s <options> -o dst_filename src_filename \n",
679 exec_name);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400680
John Koleszarc6b90392012-07-13 15:21:29 -0700681 fprintf(stderr, "\nOptions:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700682 arg_show_usage(stderr, main_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700683 fprintf(stderr, "\nEncoder Global Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700684 arg_show_usage(stderr, global_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700685 fprintf(stderr, "\nRate Control Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700686 arg_show_usage(stderr, rc_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700687 fprintf(stderr, "\nTwopass Rate Control Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700688 arg_show_usage(stderr, rc_twopass_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700689 fprintf(stderr, "\nKeyframe Placement Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700690 arg_show_usage(stderr, kf_args);
Yaowu Xuf883b422016-08-30 14:01:10 -0700691#if CONFIG_AV1_ENCODER
692 fprintf(stderr, "\nAV1 Specific Options:\n");
693 arg_show_usage(stderr, av1_args);
hui su82331e02015-08-16 18:21:56 -0700694#endif
clang-format6c4d83e2016-08-08 19:03:30 -0700695 fprintf(stderr,
696 "\nStream timebase (--timebase):\n"
John Koleszarc6b90392012-07-13 15:21:29 -0700697 " The desired precision of timestamps in the output, expressed\n"
698 " in fractional seconds. Default is 1/1000.\n");
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800699 fprintf(stderr, "\nIncluded encoders:\n\n");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400700
Yaowu Xuf990b352015-06-01 09:13:59 -0700701 for (i = 0; i < num_encoder; ++i) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700702 const AvxInterface *const encoder = get_aom_encoder_by_index(i);
clang-format6c4d83e2016-08-08 19:03:30 -0700703 const char *defstr = (i == (num_encoder - 1)) ? "(default)" : "";
704 fprintf(stderr, " %-6s - %s %s\n", encoder->name,
Yaowu Xuf883b422016-08-30 14:01:10 -0700705 aom_codec_iface_name(encoder->codec_interface()), defstr);
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800706 }
Yaowu Xuf990b352015-06-01 09:13:59 -0700707 fprintf(stderr, "\n ");
708 fprintf(stderr, "Use --codec to switch to a non-default encoder.\n\n");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400709
John Koleszarc6b90392012-07-13 15:21:29 -0700710 exit(EXIT_FAILURE);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400711}
712
Yaowu Xuf883b422016-08-30 14:01:10 -0700713#if CONFIG_AV1_ENCODER
714#define ARG_CTRL_CNT_MAX NELEMENTS(av1_arg_ctrl_map)
John Koleszara9c75972012-11-08 17:09:30 -0800715#endif
John Koleszarefd54f82012-02-13 16:52:18 -0800716
James Zerndba73762014-05-10 17:44:12 -0700717#if !CONFIG_WEBM_IO
718typedef int stereo_format_t;
clang-format6c4d83e2016-08-08 19:03:30 -0700719struct WebmOutputContext {
720 int debug;
721};
James Zerndba73762014-05-10 17:44:12 -0700722#endif
723
John Koleszar9e50ed72012-02-15 12:39:38 -0800724/* Per-stream configuration */
John Koleszar6ad3b742012-11-06 12:02:42 -0800725struct stream_config {
Yaowu Xuf883b422016-08-30 14:01:10 -0700726 struct aom_codec_enc_cfg cfg;
clang-format6c4d83e2016-08-08 19:03:30 -0700727 const char *out_fn;
728 const char *stats_fn;
Pengchong Jinf349b072014-07-14 09:13:38 -0700729#if CONFIG_FP_MB_STATS
clang-format6c4d83e2016-08-08 19:03:30 -0700730 const char *fpmb_stats_fn;
Pengchong Jinf349b072014-07-14 09:13:38 -0700731#endif
clang-format6c4d83e2016-08-08 19:03:30 -0700732 stereo_format_t stereo_fmt;
733 int arg_ctrls[ARG_CTRL_CNT_MAX][2];
734 int arg_ctrl_cnt;
735 int write_webm;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -0700736 // whether to use 16bit internal buffers
clang-format6c4d83e2016-08-08 19:03:30 -0700737 int use_16bit_internal;
John Koleszar9e50ed72012-02-15 12:39:38 -0800738};
739
John Koleszar6ad3b742012-11-06 12:02:42 -0800740struct stream_state {
clang-format6c4d83e2016-08-08 19:03:30 -0700741 int index;
742 struct stream_state *next;
743 struct stream_config config;
744 FILE *file;
745 struct rate_hist *rate_hist;
746 struct WebmOutputContext webm_ctx;
747 uint64_t psnr_sse_total;
748 uint64_t psnr_samples_total;
749 double psnr_totals[4];
750 int psnr_count;
751 int counts[64];
Yaowu Xuf883b422016-08-30 14:01:10 -0700752 aom_codec_ctx_t encoder;
clang-format6c4d83e2016-08-08 19:03:30 -0700753 unsigned int frames_out;
754 uint64_t cx_time;
755 size_t nbytes;
756 stats_io_t stats;
Pengchong Jinf349b072014-07-14 09:13:38 -0700757#if CONFIG_FP_MB_STATS
clang-format6c4d83e2016-08-08 19:03:30 -0700758 stats_io_t fpmb_stats;
Pengchong Jinf349b072014-07-14 09:13:38 -0700759#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700760 struct aom_image *img;
761 aom_codec_ctx_t decoder;
clang-format6c4d83e2016-08-08 19:03:30 -0700762 int mismatch_seen;
John Koleszar9e50ed72012-02-15 12:39:38 -0800763};
764
clang-format6c4d83e2016-08-08 19:03:30 -0700765static void validate_positive_rational(const char *msg,
Yaowu Xuf883b422016-08-30 14:01:10 -0700766 struct aom_rational *rat) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800767 if (rat->den < 0) {
768 rat->num *= -1;
769 rat->den *= -1;
770 }
John Koleszar1b27e932012-04-25 17:08:56 -0700771
clang-format6c4d83e2016-08-08 19:03:30 -0700772 if (rat->num < 0) die("Error: %s must be positive\n", msg);
John Koleszar1b27e932012-04-25 17:08:56 -0700773
clang-format6c4d83e2016-08-08 19:03:30 -0700774 if (!rat->den) die("Error: %s has zero denominator\n", msg);
John Koleszar1b27e932012-04-25 17:08:56 -0700775}
776
Yaowu Xuf883b422016-08-30 14:01:10 -0700777static void parse_global_config(struct AvxEncoderConfig *global, char **argv) {
clang-format6c4d83e2016-08-08 19:03:30 -0700778 char **argi, **argj;
779 struct arg arg;
Yaowu Xuf883b422016-08-30 14:01:10 -0700780 const int num_encoder = get_aom_encoder_count();
Yaowu Xuf990b352015-06-01 09:13:59 -0700781
clang-format6c4d83e2016-08-08 19:03:30 -0700782 if (num_encoder < 1) die("Error: no valid encoder available\n");
John Koleszarefd54f82012-02-13 16:52:18 -0800783
John Koleszar6ad3b742012-11-06 12:02:42 -0800784 /* Initialize default parameters */
785 memset(global, 0, sizeof(*global));
Yaowu Xuf883b422016-08-30 14:01:10 -0700786 global->codec = get_aom_encoder_by_index(num_encoder - 1);
Deb Mukherjee0d8723f2013-08-19 14:16:26 -0700787 global->passes = 0;
Deb Mukherjee090f4d42014-07-16 09:37:13 -0700788 global->color_type = I420;
Deb Mukherjee0d8723f2013-08-19 14:16:26 -0700789 /* Assign default deadline to good quality */
Yaowu Xuf883b422016-08-30 14:01:10 -0700790 global->deadline = AOM_DL_GOOD_QUALITY;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400791
John Koleszarc6b90392012-07-13 15:21:29 -0700792 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
793 arg.argv_step = 1;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400794
John Koleszarc6b90392012-07-13 15:21:29 -0700795 if (arg_match(&arg, &codecarg, argi)) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700796 global->codec = get_aom_encoder_by_name(arg.val);
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800797 if (!global->codec)
798 die("Error: Unrecognized argument (%s) to --codec\n", arg.val);
John Koleszarc6b90392012-07-13 15:21:29 -0700799 } else if (arg_match(&arg, &passes, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800800 global->passes = arg_parse_uint(&arg);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400801
John Koleszar6ad3b742012-11-06 12:02:42 -0800802 if (global->passes < 1 || global->passes > 2)
803 die("Error: Invalid number of passes (%d)\n", global->passes);
John Koleszarc6b90392012-07-13 15:21:29 -0700804 } else if (arg_match(&arg, &pass_arg, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800805 global->pass = arg_parse_uint(&arg);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400806
John Koleszar6ad3b742012-11-06 12:02:42 -0800807 if (global->pass < 1 || global->pass > 2)
clang-format6c4d83e2016-08-08 19:03:30 -0700808 die("Error: Invalid pass selected (%d)\n", global->pass);
John Koleszar6ad3b742012-11-06 12:02:42 -0800809 } else if (arg_match(&arg, &usage, argi))
810 global->usage = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700811 else if (arg_match(&arg, &deadline, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800812 global->deadline = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700813 else if (arg_match(&arg, &good_dl, argi))
Yaowu Xuf883b422016-08-30 14:01:10 -0700814 global->deadline = AOM_DL_GOOD_QUALITY;
John Koleszar6ad3b742012-11-06 12:02:42 -0800815 else if (arg_match(&arg, &use_yv12, argi))
Deb Mukherjee090f4d42014-07-16 09:37:13 -0700816 global->color_type = YV12;
John Koleszar6ad3b742012-11-06 12:02:42 -0800817 else if (arg_match(&arg, &use_i420, argi))
Deb Mukherjee090f4d42014-07-16 09:37:13 -0700818 global->color_type = I420;
819 else if (arg_match(&arg, &use_i422, argi))
820 global->color_type = I422;
821 else if (arg_match(&arg, &use_i444, argi))
822 global->color_type = I444;
Deb Mukherjeea30774c2014-10-01 12:17:37 -0700823 else if (arg_match(&arg, &use_i440, argi))
824 global->color_type = I440;
John Koleszar6ad3b742012-11-06 12:02:42 -0800825 else if (arg_match(&arg, &quietarg, argi))
826 global->quiet = 1;
827 else if (arg_match(&arg, &verbosearg, argi))
828 global->verbose = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700829 else if (arg_match(&arg, &limit, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800830 global->limit = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700831 else if (arg_match(&arg, &skip, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800832 global->skip_frames = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700833 else if (arg_match(&arg, &psnrarg, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800834 global->show_psnr = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700835 else if (arg_match(&arg, &recontest, argi))
Ronald S. Bultje9837bf42013-02-15 16:31:02 -0800836 global->test_decode = arg_parse_enum_or_int(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700837 else if (arg_match(&arg, &framerate, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800838 global->framerate = arg_parse_rational(&arg);
839 validate_positive_rational(arg.name, &global->framerate);
840 global->have_framerate = 1;
841 } else if (arg_match(&arg, &out_part, argi))
842 global->out_part = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700843 else if (arg_match(&arg, &debugmode, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800844 global->debug = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700845 else if (arg_match(&arg, &q_hist_n, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800846 global->show_q_hist_buckets = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700847 else if (arg_match(&arg, &rate_hist_n, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800848 global->show_rate_hist_buckets = arg_parse_uint(&arg);
Tom Finegan249366b2013-11-25 12:05:19 -0800849 else if (arg_match(&arg, &disable_warnings, argi))
850 global->disable_warnings = 1;
851 else if (arg_match(&arg, &disable_warning_prompt, argi))
852 global->disable_warning_prompt = 1;
John Koleszar732cb9a2012-02-14 12:30:17 -0800853 else
John Koleszarc6b90392012-07-13 15:21:29 -0700854 argj++;
855 }
856
John Koleszar6ad3b742012-11-06 12:02:42 -0800857 if (global->pass) {
John Koleszarc6b90392012-07-13 15:21:29 -0700858 /* DWIM: Assume the user meant passes=2 if pass=2 is specified */
John Koleszar6ad3b742012-11-06 12:02:42 -0800859 if (global->pass > global->passes) {
clang-format6c4d83e2016-08-08 19:03:30 -0700860 warn("Assuming --pass=%d implies --passes=%d\n", global->pass,
861 global->pass);
John Koleszar6ad3b742012-11-06 12:02:42 -0800862 global->passes = global->pass;
John Koleszar732cb9a2012-02-14 12:30:17 -0800863 }
John Koleszarc6b90392012-07-13 15:21:29 -0700864 }
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800865 /* Validate global config */
866 if (global->passes == 0) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700867#if CONFIG_AV1_ENCODER
868 // Make default AV1 passes = 2 until there is a better quality 1-pass
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800869 // encoder
Jim Bankoskic901a4f2014-08-21 07:18:07 -0700870 if (global->codec != NULL && global->codec->name != NULL)
Thomas Daede80826142017-03-20 15:44:24 -0700871 global->passes = (strcmp(global->codec->name, "av1") == 0) ? 2 : 1;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800872#else
873 global->passes = 1;
874#endif
875 }
John Koleszar732cb9a2012-02-14 12:30:17 -0800876}
877
Yaowu Xuf883b422016-08-30 14:01:10 -0700878static void open_input_file(struct AvxInputContext *input) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800879 /* Parse certain options from the input file, if possible */
clang-format6c4d83e2016-08-08 19:03:30 -0700880 input->file = strcmp(input->filename, "-") ? fopen(input->filename, "rb")
881 : set_binary_mode(stdin);
John Koleszar6ad3b742012-11-06 12:02:42 -0800882
clang-format6c4d83e2016-08-08 19:03:30 -0700883 if (!input->file) fatal("Failed to open input file");
John Koleszar6ad3b742012-11-06 12:02:42 -0800884
John Koleszar25b6e9f2013-02-12 21:17:56 -0800885 if (!fseeko(input->file, 0, SEEK_END)) {
886 /* Input file is seekable. Figure out how long it is, so we can get
887 * progress info.
888 */
889 input->length = ftello(input->file);
890 rewind(input->file);
891 }
892
Frank Galligan09acd262015-06-01 10:20:58 -0700893 /* Default to 1:1 pixel aspect ratio. */
894 input->pixel_aspect_ratio.numerator = 1;
895 input->pixel_aspect_ratio.denominator = 1;
896
John Koleszar6ad3b742012-11-06 12:02:42 -0800897 /* For RAW input sources, these bytes will applied on the first frame
898 * in read_frame().
John Koleszarc6b90392012-07-13 15:21:29 -0700899 */
John Koleszar6ad3b742012-11-06 12:02:42 -0800900 input->detect.buf_read = fread(input->detect.buf, 1, 4, input->file);
901 input->detect.position = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400902
clang-format6c4d83e2016-08-08 19:03:30 -0700903 if (input->detect.buf_read == 4 && file_is_y4m(input->detect.buf)) {
John Koleszar8dd82872013-05-06 11:01:35 -0700904 if (y4m_input_open(&input->y4m, input->file, input->detect.buf, 4,
905 input->only_i420) >= 0) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800906 input->file_type = FILE_TYPE_Y4M;
Tom Finegan00a35aa2013-11-14 12:37:42 -0800907 input->width = input->y4m.pic_w;
908 input->height = input->y4m.pic_h;
Frank Galligan09acd262015-06-01 10:20:58 -0700909 input->pixel_aspect_ratio.numerator = input->y4m.par_n;
910 input->pixel_aspect_ratio.denominator = input->y4m.par_d;
Tom Finegan00a35aa2013-11-14 12:37:42 -0800911 input->framerate.numerator = input->y4m.fps_n;
912 input->framerate.denominator = input->y4m.fps_d;
Yaowu Xuf883b422016-08-30 14:01:10 -0700913 input->fmt = input->y4m.aom_fmt;
Deb Mukherjee5820c5d2014-06-12 16:53:13 -0700914 input->bit_depth = input->y4m.bit_depth;
John Koleszar6ad3b742012-11-06 12:02:42 -0800915 } else
916 fatal("Unsupported Y4M stream.");
Alex Converse64b89f12014-01-06 16:29:09 -0800917 } else if (input->detect.buf_read == 4 && fourcc_is_ivf(input->detect.buf)) {
Tom Finegan6c270ed2013-11-08 11:32:23 -0800918 fatal("IVF is not supported as input.");
John Koleszar6ad3b742012-11-06 12:02:42 -0800919 } else {
920 input->file_type = FILE_TYPE_RAW;
John Koleszarc6b90392012-07-13 15:21:29 -0700921 }
John Koleszar6ad3b742012-11-06 12:02:42 -0800922}
923
Yaowu Xuf883b422016-08-30 14:01:10 -0700924static void close_input_file(struct AvxInputContext *input) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800925 fclose(input->file);
clang-format6c4d83e2016-08-08 19:03:30 -0700926 if (input->file_type == FILE_TYPE_Y4M) y4m_input_close(&input->y4m);
John Koleszar732cb9a2012-02-14 12:30:17 -0800927}
928
Yaowu Xuf883b422016-08-30 14:01:10 -0700929static struct stream_state *new_stream(struct AvxEncoderConfig *global,
Tom Finegan6c270ed2013-11-08 11:32:23 -0800930 struct stream_state *prev) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800931 struct stream_state *stream;
John Koleszar9e50ed72012-02-15 12:39:38 -0800932
John Koleszar6ad3b742012-11-06 12:02:42 -0800933 stream = calloc(1, sizeof(*stream));
Jim Bankoskic901a4f2014-08-21 07:18:07 -0700934 if (stream == NULL) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800935 fatal("Failed to allocate new stream.");
Jim Bankoskic901a4f2014-08-21 07:18:07 -0700936 }
937
John Koleszar6ad3b742012-11-06 12:02:42 -0800938 if (prev) {
939 memcpy(stream, prev, sizeof(*stream));
940 stream->index++;
941 prev->next = stream;
942 } else {
Yaowu Xuf883b422016-08-30 14:01:10 -0700943 aom_codec_err_t res;
John Koleszar9e50ed72012-02-15 12:39:38 -0800944
John Koleszar6ad3b742012-11-06 12:02:42 -0800945 /* Populate encoder configuration */
Yaowu Xuf883b422016-08-30 14:01:10 -0700946 res = aom_codec_enc_config_default(global->codec->codec_interface(),
clang-format6c4d83e2016-08-08 19:03:30 -0700947 &stream->config.cfg, global->usage);
Yaowu Xuf883b422016-08-30 14:01:10 -0700948 if (res) fatal("Failed to get config: %s\n", aom_codec_err_to_string(res));
John Koleszar9e50ed72012-02-15 12:39:38 -0800949
John Koleszar6ad3b742012-11-06 12:02:42 -0800950 /* Change the default timebase to a high enough value so that the
951 * encoder will always create strictly increasing timestamps.
952 */
953 stream->config.cfg.g_timebase.den = 1000;
John Koleszar9e50ed72012-02-15 12:39:38 -0800954
John Koleszar6ad3b742012-11-06 12:02:42 -0800955 /* Never use the library's default resolution, require it be parsed
956 * from the file or set on the command line.
957 */
958 stream->config.cfg.g_w = 0;
959 stream->config.cfg.g_h = 0;
John Koleszar9e50ed72012-02-15 12:39:38 -0800960
John Koleszar6ad3b742012-11-06 12:02:42 -0800961 /* Initialize remaining stream parameters */
John Koleszar6ad3b742012-11-06 12:02:42 -0800962 stream->config.write_webm = 1;
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700963#if CONFIG_WEBM_IO
James Zerndba73762014-05-10 17:44:12 -0700964 stream->config.stereo_fmt = STEREO_FORMAT_MONO;
Vignesh Venkatasubramanian9441f102016-04-25 13:28:24 -0700965 stream->webm_ctx.last_pts_ns = -1;
966 stream->webm_ctx.writer = NULL;
967 stream->webm_ctx.segment = NULL;
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700968#endif
Johann87c40b32012-03-01 16:12:53 -0800969
John Koleszar6ad3b742012-11-06 12:02:42 -0800970 /* Allows removal of the application version from the EBML tags */
Vignesh Venkatasubramanian9441f102016-04-25 13:28:24 -0700971 stream->webm_ctx.debug = global->debug;
John Koleszar6ad3b742012-11-06 12:02:42 -0800972 }
John Koleszar9e50ed72012-02-15 12:39:38 -0800973
John Koleszar6ad3b742012-11-06 12:02:42 -0800974 /* Output files must be specified for each stream */
975 stream->config.out_fn = NULL;
John Koleszar9e50ed72012-02-15 12:39:38 -0800976
John Koleszar6ad3b742012-11-06 12:02:42 -0800977 stream->next = NULL;
978 return stream;
John Koleszar9e50ed72012-02-15 12:39:38 -0800979}
980
Yaowu Xuf883b422016-08-30 14:01:10 -0700981static int parse_stream_params(struct AvxEncoderConfig *global,
clang-format6c4d83e2016-08-08 19:03:30 -0700982 struct stream_state *stream, char **argv) {
983 char **argi, **argj;
984 struct arg arg;
John Koleszar6ad3b742012-11-06 12:02:42 -0800985 static const arg_def_t **ctrl_args = no_args;
clang-format6c4d83e2016-08-08 19:03:30 -0700986 static const int *ctrl_args_map = NULL;
987 struct stream_config *config = &stream->config;
988 int eos_mark_found = 0;
Tristan Matthewsed858d62017-07-24 15:33:44 -0400989 int webm_forced = 0;
John Koleszar9e50ed72012-02-15 12:39:38 -0800990
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800991 // Handle codec specific options
John Koleszara9c75972012-11-08 17:09:30 -0800992 if (0) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700993#if CONFIG_AV1_ENCODER
994 } else if (strcmp(global->codec->name, "av1") == 0) {
995 // TODO(jingning): Reuse AV1 specific encoder configuration parameters.
996 // Consider to expand this set for AV1 encoder control.
997 ctrl_args = av1_args;
998 ctrl_args_map = av1_arg_ctrl_map;
Jingning Han3ee6db62015-08-05 19:00:31 -0700999#endif
John Koleszarc6b90392012-07-13 15:21:29 -07001000 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04001001
John Koleszarc6b90392012-07-13 15:21:29 -07001002 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
John Koleszarc6b90392012-07-13 15:21:29 -07001003 arg.argv_step = 1;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001004
John Koleszar6ad3b742012-11-06 12:02:42 -08001005 /* Once we've found an end-of-stream marker (--) we want to continue
1006 * shifting arguments but not consuming them.
1007 */
1008 if (eos_mark_found) {
1009 argj++;
1010 continue;
1011 } else if (!strcmp(*argj, "--")) {
1012 eos_mark_found = 1;
1013 continue;
John Koleszar9e50ed72012-02-15 12:39:38 -08001014 }
1015
Adrian Granged2401802015-02-13 14:51:32 -08001016 if (arg_match(&arg, &outputfile, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001017 config->out_fn = arg.val;
Tristan Matthewsed858d62017-07-24 15:33:44 -04001018 if (!webm_forced) {
1019 const size_t out_fn_len = strlen(config->out_fn);
1020 if (out_fn_len >= 4 &&
1021 !strcmp(config->out_fn + out_fn_len - 4, ".ivf")) {
1022 config->write_webm = 0;
1023 }
1024 }
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001025 } else if (arg_match(&arg, &fpf_name, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001026 config->stats_fn = arg.val;
Pengchong Jinf349b072014-07-14 09:13:38 -07001027#if CONFIG_FP_MB_STATS
1028 } else if (arg_match(&arg, &fpmbf_name, argi)) {
1029 config->fpmb_stats_fn = arg.val;
1030#endif
Johannb50e5182015-01-30 15:05:14 -08001031 } else if (arg_match(&arg, &use_webm, argi)) {
1032#if CONFIG_WEBM_IO
1033 config->write_webm = 1;
Tristan Matthewsed858d62017-07-24 15:33:44 -04001034 webm_forced = 1;
Johannb50e5182015-01-30 15:05:14 -08001035#else
1036 die("Error: --webm specified but webm is disabled.");
1037#endif
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001038 } else if (arg_match(&arg, &use_ivf, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001039 config->write_webm = 0;
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001040 } else if (arg_match(&arg, &threads, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001041 config->cfg.g_threads = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001042 } else if (arg_match(&arg, &profile, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001043 config->cfg.g_profile = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001044 } else if (arg_match(&arg, &width, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001045 config->cfg.g_w = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001046 } else if (arg_match(&arg, &height, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001047 config->cfg.g_h = arg_parse_uint(&arg);
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001048#if CONFIG_HIGHBITDEPTH
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001049 } else if (arg_match(&arg, &bitdeptharg, argi)) {
1050 config->cfg.g_bit_depth = arg_parse_enum_or_int(&arg);
1051 } else if (arg_match(&arg, &inbitdeptharg, argi)) {
1052 config->cfg.g_input_bit_depth = arg_parse_uint(&arg);
1053#endif
James Zerndba73762014-05-10 17:44:12 -07001054#if CONFIG_WEBM_IO
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001055 } else if (arg_match(&arg, &stereo_mode, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001056 config->stereo_fmt = arg_parse_enum_or_int(&arg);
James Zerndba73762014-05-10 17:44:12 -07001057#endif
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001058 } else if (arg_match(&arg, &timebase, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001059 config->cfg.g_timebase = arg_parse_rational(&arg);
1060 validate_positive_rational(arg.name, &config->cfg.g_timebase);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001061 } else if (arg_match(&arg, &error_resilient, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001062 config->cfg.g_error_resilient = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001063 } else if (arg_match(&arg, &lag_in_frames, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001064 config->cfg.g_lag_in_frames = arg_parse_uint(&arg);
Yunqing Wangeeb08a92017-07-07 21:25:18 -07001065#if CONFIG_EXT_TILE
1066 } else if (arg_match(&arg, &large_scale_tile, argi)) {
1067 config->cfg.large_scale_tile = arg_parse_uint(&arg);
1068#endif // CONFIG_EXT_TILE
Rupert Swarbricke0b15992017-11-09 15:04:32 +00001069#if CONFIG_MONO_VIDEO
1070 } else if (arg_match(&arg, &monochrome, argi)) {
1071 config->cfg.monochrome = 1;
1072#endif // CONFIG_MONO_VIDEO
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001073 } else if (arg_match(&arg, &dropframe_thresh, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001074 config->cfg.rc_dropframe_thresh = arg_parse_uint(&arg);
Debargha Mukherjee29e40a62017-06-14 09:37:12 -07001075 } else if (arg_match(&arg, &resize_mode, argi)) {
1076 config->cfg.rc_resize_mode = arg_parse_uint(&arg);
Urvang Joshide71d142017-10-05 12:12:15 -07001077 } else if (arg_match(&arg, &resize_denominator, argi)) {
1078 config->cfg.rc_resize_denominator = arg_parse_uint(&arg);
1079 } else if (arg_match(&arg, &resize_kf_denominator, argi)) {
1080 config->cfg.rc_resize_kf_denominator = arg_parse_uint(&arg);
Fergus Simpsonc4e78942017-04-10 14:59:00 -07001081#if CONFIG_FRAME_SUPERRES
1082 } else if (arg_match(&arg, &superres_mode, argi)) {
1083 config->cfg.rc_superres_mode = arg_parse_uint(&arg);
Urvang Joshide71d142017-10-05 12:12:15 -07001084 } else if (arg_match(&arg, &superres_denominator, argi)) {
1085 config->cfg.rc_superres_denominator = arg_parse_uint(&arg);
1086 } else if (arg_match(&arg, &superres_kf_denominator, argi)) {
1087 config->cfg.rc_superres_kf_denominator = arg_parse_uint(&arg);
Debargha Mukherjee7166f222017-09-05 21:32:42 -07001088 } else if (arg_match(&arg, &superres_qthresh, argi)) {
1089 config->cfg.rc_superres_qthresh = arg_parse_uint(&arg);
1090 } else if (arg_match(&arg, &superres_kf_qthresh, argi)) {
1091 config->cfg.rc_superres_kf_qthresh = arg_parse_uint(&arg);
Fergus Simpsonc4e78942017-04-10 14:59:00 -07001092#endif // CONFIG_FRAME_SUPERRES
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001093 } else if (arg_match(&arg, &end_usage, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001094 config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001095 } else if (arg_match(&arg, &target_bitrate, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001096 config->cfg.rc_target_bitrate = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001097 } else if (arg_match(&arg, &min_quantizer, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001098 config->cfg.rc_min_quantizer = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001099 } else if (arg_match(&arg, &max_quantizer, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001100 config->cfg.rc_max_quantizer = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001101 } else if (arg_match(&arg, &undershoot_pct, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001102 config->cfg.rc_undershoot_pct = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001103 } else if (arg_match(&arg, &overshoot_pct, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001104 config->cfg.rc_overshoot_pct = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001105 } else if (arg_match(&arg, &buf_sz, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001106 config->cfg.rc_buf_sz = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001107 } else if (arg_match(&arg, &buf_initial_sz, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001108 config->cfg.rc_buf_initial_sz = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001109 } else if (arg_match(&arg, &buf_optimal_sz, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001110 config->cfg.rc_buf_optimal_sz = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001111 } else if (arg_match(&arg, &bias_pct, argi)) {
clang-format6c4d83e2016-08-08 19:03:30 -07001112 config->cfg.rc_2pass_vbr_bias_pct = arg_parse_uint(&arg);
John Koleszar6ad3b742012-11-06 12:02:42 -08001113 if (global->passes < 2)
1114 warn("option %s ignored in one-pass mode.\n", arg.name);
1115 } else if (arg_match(&arg, &minsection_pct, argi)) {
1116 config->cfg.rc_2pass_vbr_minsection_pct = arg_parse_uint(&arg);
1117
1118 if (global->passes < 2)
1119 warn("option %s ignored in one-pass mode.\n", arg.name);
1120 } else if (arg_match(&arg, &maxsection_pct, argi)) {
1121 config->cfg.rc_2pass_vbr_maxsection_pct = arg_parse_uint(&arg);
1122
1123 if (global->passes < 2)
1124 warn("option %s ignored in one-pass mode.\n", arg.name);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001125 } else if (arg_match(&arg, &kf_min_dist, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001126 config->cfg.kf_min_dist = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001127 } else if (arg_match(&arg, &kf_max_dist, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001128 config->cfg.kf_max_dist = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001129 } else if (arg_match(&arg, &kf_disabled, argi)) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001130 config->cfg.kf_mode = AOM_KF_DISABLED;
Dominic Symes26ad0b22017-10-01 16:35:13 +02001131#if CONFIG_MAX_TILE
1132 } else if (arg_match(&arg, &tile_width, argi)) {
1133 config->cfg.tile_width_count =
1134 arg_parse_list(&arg, config->cfg.tile_widths, MAX_TILE_WIDTHS);
1135 } else if (arg_match(&arg, &tile_height, argi)) {
1136 config->cfg.tile_height_count =
1137 arg_parse_list(&arg, config->cfg.tile_heights, MAX_TILE_HEIGHTS);
1138#endif
Deb Mukherjee25f22d22014-02-13 15:34:42 -08001139 } else {
John Koleszar6ad3b742012-11-06 12:02:42 -08001140 int i, match = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -08001141 for (i = 0; ctrl_args[i]; i++) {
1142 if (arg_match(&arg, ctrl_args[i], argi)) {
1143 int j;
1144 match = 1;
1145
1146 /* Point either to the next free element or the first
1147 * instance of this control.
1148 */
1149 for (j = 0; j < config->arg_ctrl_cnt; j++)
Jim Bankoskic901a4f2014-08-21 07:18:07 -07001150 if (ctrl_args_map != NULL &&
1151 config->arg_ctrls[j][0] == ctrl_args_map[i])
John Koleszar6ad3b742012-11-06 12:02:42 -08001152 break;
1153
1154 /* Update/insert */
Yaowu Xu618e7ef2014-07-11 16:27:21 -07001155 assert(j < (int)ARG_CTRL_CNT_MAX);
Jim Bankoskic901a4f2014-08-21 07:18:07 -07001156 if (ctrl_args_map != NULL && j < (int)ARG_CTRL_CNT_MAX) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001157 config->arg_ctrls[j][0] = ctrl_args_map[i];
1158 config->arg_ctrls[j][1] = arg_parse_enum_or_int(&arg);
clang-format6c4d83e2016-08-08 19:03:30 -07001159 if (j == config->arg_ctrl_cnt) config->arg_ctrl_cnt++;
John Koleszar6ad3b742012-11-06 12:02:42 -08001160 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001161 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001162 }
clang-format6c4d83e2016-08-08 19:03:30 -07001163 if (!match) argj++;
John Koleszar9e50ed72012-02-15 12:39:38 -08001164 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001165 }
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001166#if CONFIG_HIGHBITDEPTH
Sebastien Alaiwan14af5b92017-05-12 14:27:30 +02001167 config->use_16bit_internal =
Sebastien Alaiwan0b2e4032017-06-05 12:47:04 +02001168 config->cfg.g_bit_depth > AOM_BITS_8 || !CONFIG_LOWBITDEPTH;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001169#endif
John Koleszar6ad3b742012-11-06 12:02:42 -08001170 return eos_mark_found;
John Koleszar9e50ed72012-02-15 12:39:38 -08001171}
1172
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001173#define FOREACH_STREAM(iterator, list) \
1174 for (struct stream_state *iterator = list; iterator; \
1175 iterator = iterator->next)
John Koleszar9e50ed72012-02-15 12:39:38 -08001176
Alex Conversed66bd222014-02-21 10:52:09 -08001177static void validate_stream_config(const struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001178 const struct AvxEncoderConfig *global) {
Alex Conversed66bd222014-02-21 10:52:09 -08001179 const struct stream_state *streami;
Johann80b344d2014-12-16 12:22:10 -08001180 (void)global;
John Koleszar9e50ed72012-02-15 12:39:38 -08001181
John Koleszar6ad3b742012-11-06 12:02:42 -08001182 if (!stream->config.cfg.g_w || !stream->config.cfg.g_h)
clang-format6c4d83e2016-08-08 19:03:30 -07001183 fatal(
1184 "Stream %d: Specify stream dimensions with --width (-w) "
1185 " and --height (-h)",
1186 stream->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001187
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001188 // Check that the codec bit depth is greater than the input bit depth.
1189 if (stream->config.cfg.g_input_bit_depth >
Yaowu Xudbdb87b2014-09-03 17:02:31 -07001190 (unsigned int)stream->config.cfg.g_bit_depth) {
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001191 fatal("Stream %d: codec bit depth (%d) less than input bit depth (%d)",
1192 stream->index, (int)stream->config.cfg.g_bit_depth,
1193 stream->config.cfg.g_input_bit_depth);
1194 }
1195
John Koleszar6ad3b742012-11-06 12:02:42 -08001196 for (streami = stream; streami; streami = streami->next) {
1197 /* All streams require output files */
1198 if (!streami->config.out_fn)
1199 fatal("Stream %d: Output file is required (specify with -o)",
1200 streami->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001201
John Koleszar6ad3b742012-11-06 12:02:42 -08001202 /* Check for two streams outputting to the same file */
1203 if (streami != stream) {
1204 const char *a = stream->config.out_fn;
1205 const char *b = streami->config.out_fn;
1206 if (!strcmp(a, b) && strcmp(a, "/dev/null") && strcmp(a, ":nul"))
1207 fatal("Stream %d: duplicate output file (from stream %d)",
1208 streami->index, stream->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001209 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001210
1211 /* Check for two streams sharing a stats file. */
1212 if (streami != stream) {
1213 const char *a = stream->config.stats_fn;
1214 const char *b = streami->config.stats_fn;
1215 if (a && b && !strcmp(a, b))
1216 fatal("Stream %d: duplicate stats file (from stream %d)",
1217 streami->index, stream->index);
1218 }
Pengchong Jinf349b072014-07-14 09:13:38 -07001219
1220#if CONFIG_FP_MB_STATS
1221 /* Check for two streams sharing a mb stats file. */
1222 if (streami != stream) {
1223 const char *a = stream->config.fpmb_stats_fn;
1224 const char *b = streami->config.fpmb_stats_fn;
1225 if (a && b && !strcmp(a, b))
1226 fatal("Stream %d: duplicate mb stats file (from stream %d)",
1227 streami->index, stream->index);
1228 }
1229#endif
John Koleszar6ad3b742012-11-06 12:02:42 -08001230 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001231}
1232
clang-format6c4d83e2016-08-08 19:03:30 -07001233static void set_stream_dimensions(struct stream_state *stream, unsigned int w,
John Koleszar6ad3b742012-11-06 12:02:42 -08001234 unsigned int h) {
John Koleszar34882b92012-03-01 12:50:40 -08001235 if (!stream->config.cfg.g_w) {
1236 if (!stream->config.cfg.g_h)
1237 stream->config.cfg.g_w = w;
1238 else
1239 stream->config.cfg.g_w = w * stream->config.cfg.g_h / h;
1240 }
1241 if (!stream->config.cfg.g_h) {
1242 stream->config.cfg.g_h = h * stream->config.cfg.g_w / w;
1243 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001244}
1245
clang-format6c4d83e2016-08-08 19:03:30 -07001246static const char *file_type_to_string(enum VideoFileType t) {
Alex Converse6c2e88e2014-05-16 12:29:36 -07001247 switch (t) {
1248 case FILE_TYPE_RAW: return "RAW";
1249 case FILE_TYPE_Y4M: return "Y4M";
1250 default: return "Other";
1251 }
1252}
1253
Yaowu Xuf883b422016-08-30 14:01:10 -07001254static const char *image_format_to_string(aom_img_fmt_t f) {
Alex Converse6c2e88e2014-05-16 12:29:36 -07001255 switch (f) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001256 case AOM_IMG_FMT_I420: return "I420";
1257 case AOM_IMG_FMT_I422: return "I422";
1258 case AOM_IMG_FMT_I444: return "I444";
1259 case AOM_IMG_FMT_I440: return "I440";
1260 case AOM_IMG_FMT_YV12: return "YV12";
1261 case AOM_IMG_FMT_I42016: return "I42016";
1262 case AOM_IMG_FMT_I42216: return "I42216";
1263 case AOM_IMG_FMT_I44416: return "I44416";
1264 case AOM_IMG_FMT_I44016: return "I44016";
Alex Converse6c2e88e2014-05-16 12:29:36 -07001265 default: return "Other";
1266 }
1267}
Ralph Giles061a16d2012-01-05 15:05:05 -06001268
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001269static void show_stream_config(struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001270 struct AvxEncoderConfig *global,
1271 struct AvxInputContext *input) {
John Koleszar9e50ed72012-02-15 12:39:38 -08001272#define SHOW(field) \
John Koleszar6ad3b742012-11-06 12:02:42 -08001273 fprintf(stderr, " %-28s = %d\n", #field, stream->config.cfg.field)
John Koleszar9e50ed72012-02-15 12:39:38 -08001274
John Koleszar6ad3b742012-11-06 12:02:42 -08001275 if (stream->index == 0) {
1276 fprintf(stderr, "Codec: %s\n",
Yaowu Xuf883b422016-08-30 14:01:10 -07001277 aom_codec_iface_name(global->codec->codec_interface()));
Alex Converse6c2e88e2014-05-16 12:29:36 -07001278 fprintf(stderr, "Source file: %s File Type: %s Format: %s\n",
clang-format6c4d83e2016-08-08 19:03:30 -07001279 input->filename, file_type_to_string(input->file_type),
Alex Converse6c2e88e2014-05-16 12:29:36 -07001280 image_format_to_string(input->fmt));
John Koleszar6ad3b742012-11-06 12:02:42 -08001281 }
1282 if (stream->next || stream->index)
1283 fprintf(stderr, "\nStream Index: %d\n", stream->index);
1284 fprintf(stderr, "Destination file: %s\n", stream->config.out_fn);
Sebastien Alaiwan27511922017-06-05 15:25:46 +02001285 fprintf(stderr, "Coding path: %s\n",
1286 stream->config.use_16bit_internal ? "HBD" : "LBD");
John Koleszar6ad3b742012-11-06 12:02:42 -08001287 fprintf(stderr, "Encoder parameters:\n");
John Koleszar9e50ed72012-02-15 12:39:38 -08001288
John Koleszar6ad3b742012-11-06 12:02:42 -08001289 SHOW(g_usage);
1290 SHOW(g_threads);
1291 SHOW(g_profile);
1292 SHOW(g_w);
1293 SHOW(g_h);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001294 SHOW(g_bit_depth);
1295 SHOW(g_input_bit_depth);
John Koleszar6ad3b742012-11-06 12:02:42 -08001296 SHOW(g_timebase.num);
1297 SHOW(g_timebase.den);
1298 SHOW(g_error_resilient);
1299 SHOW(g_pass);
1300 SHOW(g_lag_in_frames);
Yunqing Wangeeb08a92017-07-07 21:25:18 -07001301#if CONFIG_EXT_TILE
1302 SHOW(large_scale_tile);
1303#endif // CONFIG_EXT_TILE
John Koleszar6ad3b742012-11-06 12:02:42 -08001304 SHOW(rc_dropframe_thresh);
Debargha Mukherjee29e40a62017-06-14 09:37:12 -07001305 SHOW(rc_resize_mode);
Urvang Joshide71d142017-10-05 12:12:15 -07001306 SHOW(rc_resize_denominator);
1307 SHOW(rc_resize_kf_denominator);
Fergus Simpsonc4e78942017-04-10 14:59:00 -07001308#if CONFIG_FRAME_SUPERRES
1309 SHOW(rc_superres_mode);
Urvang Joshide71d142017-10-05 12:12:15 -07001310 SHOW(rc_superres_denominator);
1311 SHOW(rc_superres_kf_denominator);
Debargha Mukherjee7166f222017-09-05 21:32:42 -07001312 SHOW(rc_superres_qthresh);
1313 SHOW(rc_superres_kf_qthresh);
Fergus Simpsonc4e78942017-04-10 14:59:00 -07001314#endif // CONFIG_FRAME_SUPERRES
John Koleszar6ad3b742012-11-06 12:02:42 -08001315 SHOW(rc_end_usage);
1316 SHOW(rc_target_bitrate);
1317 SHOW(rc_min_quantizer);
1318 SHOW(rc_max_quantizer);
1319 SHOW(rc_undershoot_pct);
1320 SHOW(rc_overshoot_pct);
1321 SHOW(rc_buf_sz);
1322 SHOW(rc_buf_initial_sz);
1323 SHOW(rc_buf_optimal_sz);
1324 SHOW(rc_2pass_vbr_bias_pct);
1325 SHOW(rc_2pass_vbr_minsection_pct);
1326 SHOW(rc_2pass_vbr_maxsection_pct);
1327 SHOW(kf_mode);
1328 SHOW(kf_min_dist);
1329 SHOW(kf_max_dist);
John Koleszar9e50ed72012-02-15 12:39:38 -08001330}
1331
John Koleszar9e50ed72012-02-15 12:39:38 -08001332static void open_output_file(struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001333 struct AvxEncoderConfig *global,
1334 const struct AvxRational *pixel_aspect_ratio) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001335 const char *fn = stream->config.out_fn;
Yaowu Xuf883b422016-08-30 14:01:10 -07001336 const struct aom_codec_enc_cfg *const cfg = &stream->config.cfg;
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001337
Yaowu Xuf883b422016-08-30 14:01:10 -07001338 if (cfg->g_pass == AOM_RC_FIRST_PASS) return;
John Koleszar9e50ed72012-02-15 12:39:38 -08001339
John Koleszar6ad3b742012-11-06 12:02:42 -08001340 stream->file = strcmp(fn, "-") ? fopen(fn, "wb") : set_binary_mode(stdout);
John Koleszar9e50ed72012-02-15 12:39:38 -08001341
clang-format6c4d83e2016-08-08 19:03:30 -07001342 if (!stream->file) fatal("Failed to open output file");
John Koleszar9e50ed72012-02-15 12:39:38 -08001343
John Koleszar6ad3b742012-11-06 12:02:42 -08001344 if (stream->config.write_webm && fseek(stream->file, 0, SEEK_CUR))
1345 fatal("WebM output to pipes not supported.");
John Koleszar9e50ed72012-02-15 12:39:38 -08001346
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001347#if CONFIG_WEBM_IO
John Koleszar6ad3b742012-11-06 12:02:42 -08001348 if (stream->config.write_webm) {
Vignesh Venkatasubramanian9441f102016-04-25 13:28:24 -07001349 stream->webm_ctx.stream = stream->file;
Urvang Joshid71a2312016-07-14 12:33:48 -07001350 write_webm_file_header(&stream->webm_ctx, cfg, stream->config.stereo_fmt,
1351 global->codec->fourcc, pixel_aspect_ratio);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001352 }
James Zernc8e5a772016-02-11 18:53:50 -08001353#else
1354 (void)pixel_aspect_ratio;
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001355#endif
1356
1357 if (!stream->config.write_webm) {
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001358 ivf_write_file_header(stream->file, cfg, global->codec->fourcc, 0);
1359 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001360}
1361
John Koleszar9e50ed72012-02-15 12:39:38 -08001362static void close_output_file(struct stream_state *stream,
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001363 unsigned int fourcc) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001364 const struct aom_codec_enc_cfg *const cfg = &stream->config.cfg;
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001365
Yaowu Xuf883b422016-08-30 14:01:10 -07001366 if (cfg->g_pass == AOM_RC_FIRST_PASS) return;
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001367
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001368#if CONFIG_WEBM_IO
John Koleszar6ad3b742012-11-06 12:02:42 -08001369 if (stream->config.write_webm) {
Vignesh Venkatasubramanian9441f102016-04-25 13:28:24 -07001370 write_webm_file_footer(&stream->webm_ctx);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001371 }
1372#endif
1373
1374 if (!stream->config.write_webm) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001375 if (!fseek(stream->file, 0, SEEK_SET))
clang-format6c4d83e2016-08-08 19:03:30 -07001376 ivf_write_file_header(stream->file, &stream->config.cfg, fourcc,
John Koleszar6ad3b742012-11-06 12:02:42 -08001377 stream->frames_out);
1378 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001379
John Koleszar6ad3b742012-11-06 12:02:42 -08001380 fclose(stream->file);
John Koleszar9e50ed72012-02-15 12:39:38 -08001381}
1382
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001383static void setup_pass(struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001384 struct AvxEncoderConfig *global, int pass) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001385 if (stream->config.stats_fn) {
clang-format6c4d83e2016-08-08 19:03:30 -07001386 if (!stats_open_file(&stream->stats, stream->config.stats_fn, pass))
John Koleszar6ad3b742012-11-06 12:02:42 -08001387 fatal("Failed to open statistics store");
1388 } else {
1389 if (!stats_open_mem(&stream->stats, pass))
1390 fatal("Failed to open statistics store");
1391 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001392
Pengchong Jinf349b072014-07-14 09:13:38 -07001393#if CONFIG_FP_MB_STATS
1394 if (stream->config.fpmb_stats_fn) {
clang-format6c4d83e2016-08-08 19:03:30 -07001395 if (!stats_open_file(&stream->fpmb_stats, stream->config.fpmb_stats_fn,
1396 pass))
Pengchong Jinf349b072014-07-14 09:13:38 -07001397 fatal("Failed to open mb statistics store");
1398 } else {
1399 if (!stats_open_mem(&stream->fpmb_stats, pass))
1400 fatal("Failed to open mb statistics store");
1401 }
1402#endif
1403
John Koleszar6ad3b742012-11-06 12:02:42 -08001404 stream->config.cfg.g_pass = global->passes == 2
Yaowu Xuf883b422016-08-30 14:01:10 -07001405 ? pass ? AOM_RC_LAST_PASS : AOM_RC_FIRST_PASS
1406 : AOM_RC_ONE_PASS;
Pengchong Jinf349b072014-07-14 09:13:38 -07001407 if (pass) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001408 stream->config.cfg.rc_twopass_stats_in = stats_get(&stream->stats);
Pengchong Jinf349b072014-07-14 09:13:38 -07001409#if CONFIG_FP_MB_STATS
1410 stream->config.cfg.rc_firstpass_mb_stats_in =
1411 stats_get(&stream->fpmb_stats);
1412#endif
1413 }
Yunqing Wangaabae972012-02-29 08:24:53 -05001414
John Koleszar6ad3b742012-11-06 12:02:42 -08001415 stream->cx_time = 0;
1416 stream->nbytes = 0;
1417 stream->frames_out = 0;
John Koleszar9e50ed72012-02-15 12:39:38 -08001418}
1419
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001420static void initialize_encoder(struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001421 struct AvxEncoderConfig *global) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001422 int i;
1423 int flags = 0;
Attila Nagy52cf4dc2012-02-09 12:37:03 +02001424
Yaowu Xuf883b422016-08-30 14:01:10 -07001425 flags |= global->show_psnr ? AOM_CODEC_USE_PSNR : 0;
1426 flags |= global->out_part ? AOM_CODEC_USE_OUTPUT_PARTITION : 0;
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001427#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -07001428 flags |= stream->config.use_16bit_internal ? AOM_CODEC_USE_HIGHBITDEPTH : 0;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001429#endif
John Koleszar9e50ed72012-02-15 12:39:38 -08001430
John Koleszar6ad3b742012-11-06 12:02:42 -08001431 /* Construct Encoder Context */
Yaowu Xuf883b422016-08-30 14:01:10 -07001432 aom_codec_enc_init(&stream->encoder, global->codec->codec_interface(),
John Koleszar6ad3b742012-11-06 12:02:42 -08001433 &stream->config.cfg, flags);
1434 ctx_exit_on_error(&stream->encoder, "Failed to initialize encoder");
John Koleszar9e50ed72012-02-15 12:39:38 -08001435
Yaowu Xuf883b422016-08-30 14:01:10 -07001436 /* Note that we bypass the aom_codec_control wrapper macro because
John Koleszar6ad3b742012-11-06 12:02:42 -08001437 * we're being clever to store the control IDs in an array. Real
1438 * applications will want to make use of the enumerations directly
1439 */
1440 for (i = 0; i < stream->config.arg_ctrl_cnt; i++) {
1441 int ctrl = stream->config.arg_ctrls[i][0];
1442 int value = stream->config.arg_ctrls[i][1];
Yaowu Xuf883b422016-08-30 14:01:10 -07001443 if (aom_codec_control_(&stream->encoder, ctrl, value))
clang-format6c4d83e2016-08-08 19:03:30 -07001444 fprintf(stderr, "Error: Tried to set control %d = %d\n", ctrl, value);
John Koleszar9e50ed72012-02-15 12:39:38 -08001445
John Koleszar6ad3b742012-11-06 12:02:42 -08001446 ctx_exit_on_error(&stream->encoder, "Failed to control codec");
1447 }
1448
Tom Fineganba02c242017-05-16 15:01:54 -07001449#if CONFIG_AV1_DECODER
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001450 if (global->test_decode != TEST_DECODE_OFF) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001451 const AvxInterface *decoder = get_aom_decoder_by_name(global->codec->name);
Sebastien Alaiwan8b7a4e12017-06-13 11:25:57 +02001452 aom_codec_dec_cfg_t cfg = { 0, 0, 0, CONFIG_LOWBITDEPTH };
Yaowu Xuf883b422016-08-30 14:01:10 -07001453 aom_codec_dec_init(&stream->decoder, decoder->codec_interface(), &cfg, 0);
Yunqing Wang8e5e3382016-05-05 16:42:57 -07001454
Tom Fineganba02c242017-05-16 15:01:54 -07001455#if CONFIG_EXT_TILE
Yaowu Xuf883b422016-08-30 14:01:10 -07001456 if (strcmp(global->codec->name, "av1") == 0) {
1457 aom_codec_control(&stream->decoder, AV1_SET_DECODE_TILE_ROW, -1);
Yunqing Wang8e5e3382016-05-05 16:42:57 -07001458 ctx_exit_on_error(&stream->decoder, "Failed to set decode_tile_row");
1459
Yaowu Xuf883b422016-08-30 14:01:10 -07001460 aom_codec_control(&stream->decoder, AV1_SET_DECODE_TILE_COL, -1);
Yunqing Wang8e5e3382016-05-05 16:42:57 -07001461 ctx_exit_on_error(&stream->decoder, "Failed to set decode_tile_col");
1462 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07001463#endif // CONFIG_EXT_TILE
John Koleszar6ad3b742012-11-06 12:02:42 -08001464 }
John Koleszar5ebe94f2012-12-23 07:20:10 -08001465#endif
John Koleszar9e50ed72012-02-15 12:39:38 -08001466}
1467
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001468static void encode_frame(struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001469 struct AvxEncoderConfig *global, struct aom_image *img,
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001470 unsigned int frames_in) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001471 aom_codec_pts_t frame_start, next_frame_start;
1472 struct aom_codec_enc_cfg *cfg = &stream->config.cfg;
1473 struct aom_usec_timer timer;
John Koleszar9e50ed72012-02-15 12:39:38 -08001474
clang-format6c4d83e2016-08-08 19:03:30 -07001475 frame_start =
1476 (cfg->g_timebase.den * (int64_t)(frames_in - 1) * global->framerate.den) /
1477 cfg->g_timebase.num / global->framerate.num;
1478 next_frame_start =
1479 (cfg->g_timebase.den * (int64_t)(frames_in)*global->framerate.den) /
1480 cfg->g_timebase.num / global->framerate.num;
John Koleszar34882b92012-03-01 12:50:40 -08001481
clang-format6c4d83e2016-08-08 19:03:30 -07001482/* Scale if necessary */
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001483#if CONFIG_HIGHBITDEPTH
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001484 if (img) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001485 if ((img->fmt & AOM_IMG_FMT_HIGHBITDEPTH) &&
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001486 (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001487 if (img->fmt != AOM_IMG_FMT_I42016) {
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001488 fprintf(stderr, "%s can only scale 4:2:0 inputs\n", exec_name);
1489 exit(EXIT_FAILURE);
1490 }
1491#if CONFIG_LIBYUV
1492 if (!stream->img) {
clang-format6c4d83e2016-08-08 19:03:30 -07001493 stream->img =
Yaowu Xuf883b422016-08-30 14:01:10 -07001494 aom_img_alloc(NULL, AOM_IMG_FMT_I42016, cfg->g_w, cfg->g_h, 16);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001495 }
clang-format6c4d83e2016-08-08 19:03:30 -07001496 I420Scale_16(
Yaowu Xuf883b422016-08-30 14:01:10 -07001497 (uint16 *)img->planes[AOM_PLANE_Y], img->stride[AOM_PLANE_Y] / 2,
1498 (uint16 *)img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U] / 2,
1499 (uint16 *)img->planes[AOM_PLANE_V], img->stride[AOM_PLANE_V] / 2,
1500 img->d_w, img->d_h, (uint16 *)stream->img->planes[AOM_PLANE_Y],
1501 stream->img->stride[AOM_PLANE_Y] / 2,
1502 (uint16 *)stream->img->planes[AOM_PLANE_U],
1503 stream->img->stride[AOM_PLANE_U] / 2,
1504 (uint16 *)stream->img->planes[AOM_PLANE_V],
1505 stream->img->stride[AOM_PLANE_V] / 2, stream->img->d_w,
clang-format6c4d83e2016-08-08 19:03:30 -07001506 stream->img->d_h, kFilterBox);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001507 img = stream->img;
1508#else
clang-format6c4d83e2016-08-08 19:03:30 -07001509 stream->encoder.err = 1;
1510 ctx_exit_on_error(&stream->encoder,
1511 "Stream %d: Failed to encode frame.\n"
1512 "Scaling disabled in this configuration. \n"
1513 "To enable, configure with --enable-libyuv\n",
1514 stream->index);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001515#endif
1516 }
1517 }
1518#endif
John Koleszar34882b92012-03-01 12:50:40 -08001519 if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001520 if (img->fmt != AOM_IMG_FMT_I420 && img->fmt != AOM_IMG_FMT_YV12) {
Alex Converse2a3092f2014-05-16 18:49:04 -07001521 fprintf(stderr, "%s can only scale 4:2:0 8bpp inputs\n", exec_name);
1522 exit(EXIT_FAILURE);
1523 }
Deb Mukherjee47031c02014-05-16 18:52:01 -07001524#if CONFIG_LIBYUV
John Koleszar34882b92012-03-01 12:50:40 -08001525 if (!stream->img)
clang-format6c4d83e2016-08-08 19:03:30 -07001526 stream->img =
Yaowu Xuf883b422016-08-30 14:01:10 -07001527 aom_img_alloc(NULL, AOM_IMG_FMT_I420, cfg->g_w, cfg->g_h, 16);
clang-format6c4d83e2016-08-08 19:03:30 -07001528 I420Scale(
Yaowu Xuf883b422016-08-30 14:01:10 -07001529 img->planes[AOM_PLANE_Y], img->stride[AOM_PLANE_Y],
1530 img->planes[AOM_PLANE_U], img->stride[AOM_PLANE_U],
1531 img->planes[AOM_PLANE_V], img->stride[AOM_PLANE_V], img->d_w, img->d_h,
1532 stream->img->planes[AOM_PLANE_Y], stream->img->stride[AOM_PLANE_Y],
1533 stream->img->planes[AOM_PLANE_U], stream->img->stride[AOM_PLANE_U],
1534 stream->img->planes[AOM_PLANE_V], stream->img->stride[AOM_PLANE_V],
clang-format6c4d83e2016-08-08 19:03:30 -07001535 stream->img->d_w, stream->img->d_h, kFilterBox);
John Koleszar34882b92012-03-01 12:50:40 -08001536 img = stream->img;
Deb Mukherjee47031c02014-05-16 18:52:01 -07001537#else
1538 stream->encoder.err = 1;
1539 ctx_exit_on_error(&stream->encoder,
1540 "Stream %d: Failed to encode frame.\n"
1541 "Scaling disabled in this configuration. \n"
1542 "To enable, configure with --enable-libyuv\n",
1543 stream->index);
1544#endif
John Koleszar34882b92012-03-01 12:50:40 -08001545 }
1546
Yaowu Xuf883b422016-08-30 14:01:10 -07001547 aom_usec_timer_start(&timer);
1548 aom_codec_encode(&stream->encoder, img, frame_start,
clang-format6c4d83e2016-08-08 19:03:30 -07001549 (unsigned long)(next_frame_start - frame_start), 0,
1550 global->deadline);
Yaowu Xuf883b422016-08-30 14:01:10 -07001551 aom_usec_timer_mark(&timer);
1552 stream->cx_time += aom_usec_timer_elapsed(&timer);
John Koleszar6ad3b742012-11-06 12:02:42 -08001553 ctx_exit_on_error(&stream->encoder, "Stream %d: Failed to encode frame",
1554 stream->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001555}
1556
John Koleszar6ad3b742012-11-06 12:02:42 -08001557static void update_quantizer_histogram(struct stream_state *stream) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001558 if (stream->config.cfg.g_pass != AOM_RC_FIRST_PASS) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001559 int q;
John Koleszar9e50ed72012-02-15 12:39:38 -08001560
Yaowu Xuf883b422016-08-30 14:01:10 -07001561 aom_codec_control(&stream->encoder, AOME_GET_LAST_QUANTIZER_64, &q);
John Koleszar6ad3b742012-11-06 12:02:42 -08001562 ctx_exit_on_error(&stream->encoder, "Failed to read quantizer");
1563 stream->counts[q]++;
1564 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001565}
1566
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001567static void get_cx_data(struct stream_state *stream,
Yaowu Xuf883b422016-08-30 14:01:10 -07001568 struct AvxEncoderConfig *global, int *got_data) {
1569 const aom_codec_cx_pkt_t *pkt;
1570 const struct aom_codec_enc_cfg *cfg = &stream->config.cfg;
1571 aom_codec_iter_t iter = NULL;
John Koleszar9e50ed72012-02-15 12:39:38 -08001572
Ronald S. Bultje88d703c2012-11-09 09:07:50 -08001573 *got_data = 0;
Yaowu Xuf883b422016-08-30 14:01:10 -07001574 while ((pkt = aom_codec_get_cx_data(&stream->encoder, &iter))) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001575 static size_t fsize = 0;
James Zernb6430362017-01-14 14:18:01 -08001576 static FileOffset ivf_header_pos = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -08001577
John Koleszar6ad3b742012-11-06 12:02:42 -08001578 switch (pkt->kind) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001579 case AOM_CODEC_CX_FRAME_PKT:
1580 if (!(pkt->data.frame.flags & AOM_FRAME_IS_FRAGMENT)) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001581 stream->frames_out++;
1582 }
Jingning Hanbabbd5d2013-02-13 09:03:21 -08001583 if (!global->quiet)
1584 fprintf(stderr, " %6luF", (unsigned long)pkt->data.frame.sz);
John Koleszar6ad3b742012-11-06 12:02:42 -08001585
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -08001586 update_rate_histogram(stream->rate_hist, cfg, pkt);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001587#if CONFIG_WEBM_IO
John Koleszar6ad3b742012-11-06 12:02:42 -08001588 if (stream->config.write_webm) {
Vignesh Venkatasubramanian9441f102016-04-25 13:28:24 -07001589 write_webm_block(&stream->webm_ctx, cfg, pkt);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001590 }
1591#endif
1592 if (!stream->config.write_webm) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001593 if (pkt->data.frame.partition_id <= 0) {
1594 ivf_header_pos = ftello(stream->file);
1595 fsize = pkt->data.frame.sz;
1596
Dmitry Kovalev373b0f92014-01-29 17:57:21 -08001597 ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize);
John Koleszar6ad3b742012-11-06 12:02:42 -08001598 } else {
1599 fsize += pkt->data.frame.sz;
1600
Yaowu Xuf883b422016-08-30 14:01:10 -07001601 if (!(pkt->data.frame.flags & AOM_FRAME_IS_FRAGMENT)) {
James Zernb6430362017-01-14 14:18:01 -08001602 const FileOffset currpos = ftello(stream->file);
John Koleszar6ad3b742012-11-06 12:02:42 -08001603 fseeko(stream->file, ivf_header_pos, SEEK_SET);
Tom Finegan00a35aa2013-11-14 12:37:42 -08001604 ivf_write_frame_size(stream->file, fsize);
John Koleszar6ad3b742012-11-06 12:02:42 -08001605 fseeko(stream->file, currpos, SEEK_SET);
1606 }
1607 }
1608
clang-format6c4d83e2016-08-08 19:03:30 -07001609 (void)fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz,
1610 stream->file);
John Koleszar6ad3b742012-11-06 12:02:42 -08001611 }
1612 stream->nbytes += pkt->data.raw.sz;
Attila Nagy52cf4dc2012-02-09 12:37:03 +02001613
John Koleszar9e50ed72012-02-15 12:39:38 -08001614 *got_data = 1;
Tom Fineganba02c242017-05-16 15:01:54 -07001615#if CONFIG_AV1_DECODER
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001616 if (global->test_decode != TEST_DECODE_OFF && !stream->mismatch_seen) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001617 aom_codec_decode(&stream->decoder, pkt->data.frame.buf,
Tom Finegan7a691f12014-02-10 14:55:25 -08001618 (unsigned int)pkt->data.frame.sz, NULL, 0);
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001619 if (stream->decoder.err) {
1620 warn_or_exit_on_error(&stream->decoder,
1621 global->test_decode == TEST_DECODE_FATAL,
1622 "Failed to decode frame %d in stream %d",
1623 stream->frames_out + 1, stream->index);
1624 stream->mismatch_seen = stream->frames_out + 1;
1625 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001626 }
John Koleszar5ebe94f2012-12-23 07:20:10 -08001627#endif
John Koleszar6ad3b742012-11-06 12:02:42 -08001628 break;
Yaowu Xuf883b422016-08-30 14:01:10 -07001629 case AOM_CODEC_STATS_PKT:
John Koleszar6ad3b742012-11-06 12:02:42 -08001630 stream->frames_out++;
clang-format6c4d83e2016-08-08 19:03:30 -07001631 stats_write(&stream->stats, pkt->data.twopass_stats.buf,
John Koleszar6ad3b742012-11-06 12:02:42 -08001632 pkt->data.twopass_stats.sz);
1633 stream->nbytes += pkt->data.raw.sz;
1634 break;
Pengchong Jinf349b072014-07-14 09:13:38 -07001635#if CONFIG_FP_MB_STATS
Yaowu Xuf883b422016-08-30 14:01:10 -07001636 case AOM_CODEC_FPMB_STATS_PKT:
clang-format6c4d83e2016-08-08 19:03:30 -07001637 stats_write(&stream->fpmb_stats, pkt->data.firstpass_mb_stats.buf,
Pengchong Jinf349b072014-07-14 09:13:38 -07001638 pkt->data.firstpass_mb_stats.sz);
1639 stream->nbytes += pkt->data.raw.sz;
1640 break;
1641#endif
Yaowu Xuf883b422016-08-30 14:01:10 -07001642 case AOM_CODEC_PSNR_PKT:
John Koleszar6ad3b742012-11-06 12:02:42 -08001643
1644 if (global->show_psnr) {
1645 int i;
1646
1647 stream->psnr_sse_total += pkt->data.psnr.sse[0];
1648 stream->psnr_samples_total += pkt->data.psnr.samples[0];
1649 for (i = 0; i < 4; i++) {
Jingning Hanbabbd5d2013-02-13 09:03:21 -08001650 if (!global->quiet)
1651 fprintf(stderr, "%.3f ", pkt->data.psnr.psnr[i]);
John Koleszar6ad3b742012-11-06 12:02:42 -08001652 stream->psnr_totals[i] += pkt->data.psnr.psnr[i];
1653 }
1654 stream->psnr_count++;
1655 }
1656
1657 break;
clang-format6c4d83e2016-08-08 19:03:30 -07001658 default: break;
John Koleszar9e50ed72012-02-15 12:39:38 -08001659 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001660 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001661}
1662
clang-format6c4d83e2016-08-08 19:03:30 -07001663static void show_psnr(struct stream_state *stream, double peak) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001664 int i;
1665 double ovpsnr;
John Koleszar9e50ed72012-02-15 12:39:38 -08001666
clang-format6c4d83e2016-08-08 19:03:30 -07001667 if (!stream->psnr_count) return;
John Koleszar9e50ed72012-02-15 12:39:38 -08001668
John Koleszar6ad3b742012-11-06 12:02:42 -08001669 fprintf(stderr, "Stream %d PSNR (Overall/Avg/Y/U/V)", stream->index);
Deb Mukherjeea160d722014-09-30 21:56:33 -07001670 ovpsnr = sse_to_psnr((double)stream->psnr_samples_total, peak,
Dmitry Kovalev2dad0e12014-02-27 14:00:41 -08001671 (double)stream->psnr_sse_total);
John Koleszar6ad3b742012-11-06 12:02:42 -08001672 fprintf(stderr, " %.3f", ovpsnr);
John Koleszar9e50ed72012-02-15 12:39:38 -08001673
John Koleszar6ad3b742012-11-06 12:02:42 -08001674 for (i = 0; i < 4; i++) {
1675 fprintf(stderr, " %.3f", stream->psnr_totals[i] / stream->psnr_count);
1676 }
1677 fprintf(stderr, "\n");
John Koleszar9e50ed72012-02-15 12:39:38 -08001678}
1679
John Koleszar25b6e9f2013-02-12 21:17:56 -08001680static float usec_to_fps(uint64_t usec, unsigned int frames) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001681 return (float)(usec > 0 ? frames * 1000000.0 / (float)usec : 0);
John Koleszar9e50ed72012-02-15 12:39:38 -08001682}
1683
clang-format6c4d83e2016-08-08 19:03:30 -07001684static void test_decode(struct stream_state *stream,
Sebastien Alaiwan34c9d8b2017-08-07 09:56:47 +02001685 enum TestDecodeFatality fatal) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001686 aom_image_t enc_img, dec_img;
John Koleszarb3c350a2013-03-13 12:15:43 -07001687
clang-format6c4d83e2016-08-08 19:03:30 -07001688 if (stream->mismatch_seen) return;
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001689
John Koleszarb3c350a2013-03-13 12:15:43 -07001690 /* Get the internal reference frame */
Sebastien Alaiwan34c9d8b2017-08-07 09:56:47 +02001691 aom_codec_control(&stream->encoder, AV1_GET_NEW_FRAME_IMAGE, &enc_img);
1692 aom_codec_control(&stream->decoder, AV1_GET_NEW_FRAME_IMAGE, &dec_img);
John Koleszarb3c350a2013-03-13 12:15:43 -07001693
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001694#if CONFIG_HIGHBITDEPTH
Sebastien Alaiwan34c9d8b2017-08-07 09:56:47 +02001695 if ((enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) !=
1696 (dec_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH)) {
1697 if (enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) {
1698 aom_image_t enc_hbd_img;
1699 aom_img_alloc(&enc_hbd_img, enc_img.fmt - AOM_IMG_FMT_HIGHBITDEPTH,
1700 enc_img.d_w, enc_img.d_h, 16);
1701 aom_img_truncate_16_to_8(&enc_hbd_img, &enc_img);
1702 enc_img = enc_hbd_img;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001703 }
Sebastien Alaiwan34c9d8b2017-08-07 09:56:47 +02001704 if (dec_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) {
1705 aom_image_t dec_hbd_img;
1706 aom_img_alloc(&dec_hbd_img, dec_img.fmt - AOM_IMG_FMT_HIGHBITDEPTH,
1707 dec_img.d_w, dec_img.d_h, 16);
1708 aom_img_truncate_16_to_8(&dec_hbd_img, &dec_img);
1709 dec_img = dec_hbd_img;
1710 }
John Koleszarb3c350a2013-03-13 12:15:43 -07001711 }
Sebastien Alaiwan34c9d8b2017-08-07 09:56:47 +02001712#endif
1713
John Koleszar6ad3b742012-11-06 12:02:42 -08001714 ctx_exit_on_error(&stream->encoder, "Failed to get encoder reference frame");
John Koleszar6ad3b742012-11-06 12:02:42 -08001715 ctx_exit_on_error(&stream->decoder, "Failed to get decoder reference frame");
John Koleszarefd54f82012-02-13 16:52:18 -08001716
Urvang Joshi09c293e2017-04-20 17:56:27 -07001717 if (!aom_compare_img(&enc_img, &dec_img)) {
Deb Mukherjee23144d22013-03-12 14:21:08 -07001718 int y[4], u[4], v[4];
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001719#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -07001720 if (enc_img.fmt & AOM_IMG_FMT_HIGHBITDEPTH) {
Urvang Joshi09c293e2017-04-20 17:56:27 -07001721 aom_find_mismatch_high(&enc_img, &dec_img, y, u, v);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001722 } else {
Urvang Joshi09c293e2017-04-20 17:56:27 -07001723 aom_find_mismatch(&enc_img, &dec_img, y, u, v);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001724 }
1725#else
Urvang Joshi09c293e2017-04-20 17:56:27 -07001726 aom_find_mismatch(&enc_img, &dec_img, y, u, v);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001727#endif
Ronald S. Bultje97dd7342013-03-04 14:12:49 -08001728 stream->decoder.err = 1;
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001729 warn_or_exit_on_error(&stream->decoder, fatal == TEST_DECODE_FATAL,
Deb Mukherjee23144d22013-03-12 14:21:08 -07001730 "Stream %d: Encode/decode mismatch on frame %d at"
1731 " Y[%d, %d] {%d/%d},"
1732 " U[%d, %d] {%d/%d},"
1733 " V[%d, %d] {%d/%d}",
clang-format6c4d83e2016-08-08 19:03:30 -07001734 stream->index, stream->frames_out, y[0], y[1], y[2],
1735 y[3], u[0], u[1], u[2], u[3], v[0], v[1], v[2], v[3]);
Ronald S. Bultje195172c2012-11-10 16:22:49 -08001736 stream->mismatch_seen = stream->frames_out;
John Koleszar6ad3b742012-11-06 12:02:42 -08001737 }
John Koleszarb3c350a2013-03-13 12:15:43 -07001738
Yaowu Xuf883b422016-08-30 14:01:10 -07001739 aom_img_free(&enc_img);
1740 aom_img_free(&dec_img);
John Koleszar6ad3b742012-11-06 12:02:42 -08001741}
John Koleszarefd54f82012-02-13 16:52:18 -08001742
John Koleszar25b6e9f2013-02-12 21:17:56 -08001743static void print_time(const char *label, int64_t etl) {
Tom Finegan7a691f12014-02-10 14:55:25 -08001744 int64_t hours;
1745 int64_t mins;
1746 int64_t secs;
John Koleszar25b6e9f2013-02-12 21:17:56 -08001747
1748 if (etl >= 0) {
1749 hours = etl / 3600;
1750 etl -= hours * 3600;
1751 mins = etl / 60;
1752 etl -= mins * 60;
1753 secs = etl;
1754
clang-format6c4d83e2016-08-08 19:03:30 -07001755 fprintf(stderr, "[%3s %2" PRId64 ":%02" PRId64 ":%02" PRId64 "] ", label,
1756 hours, mins, secs);
John Koleszar25b6e9f2013-02-12 21:17:56 -08001757 } else {
1758 fprintf(stderr, "[%3s unknown] ", label);
1759 }
1760}
1761
Tom Finegan44dd3272013-11-20 17:18:28 -08001762int main(int argc, const char **argv_) {
1763 int pass;
Yaowu Xuf883b422016-08-30 14:01:10 -07001764 aom_image_t raw;
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02001765#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -07001766 aom_image_t raw_shift;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001767 int allocated_raw_shift = 0;
1768 int use_16bit_internal = 0;
1769 int input_shift = 0;
1770#endif
Tom Finegan44dd3272013-11-20 17:18:28 -08001771 int frame_avail, got_data;
1772
Yaowu Xuf883b422016-08-30 14:01:10 -07001773 struct AvxInputContext input;
1774 struct AvxEncoderConfig global;
Tom Finegan44dd3272013-11-20 17:18:28 -08001775 struct stream_state *streams = NULL;
1776 char **argv, **argi;
1777 uint64_t cx_time = 0;
1778 int stream_cnt = 0;
1779 int res = 0;
Thomas Daedec0dca3c2016-02-25 17:23:17 -08001780 int profile_updated = 0;
John Koleszarefd54f82012-02-13 16:52:18 -08001781
Yaowu Xu618e7ef2014-07-11 16:27:21 -07001782 memset(&input, 0, sizeof(input));
John Koleszar6ad3b742012-11-06 12:02:42 -08001783 exec_name = argv_[0];
John Koleszar9e50ed72012-02-15 12:39:38 -08001784
clang-format6c4d83e2016-08-08 19:03:30 -07001785 if (argc < 3) usage_exit();
John Koleszar6ad3b742012-11-06 12:02:42 -08001786
1787 /* Setup default input stream settings */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001788 input.framerate.numerator = 30;
1789 input.framerate.denominator = 1;
John Koleszar8dd82872013-05-06 11:01:35 -07001790 input.only_i420 = 1;
Deb Mukherjee5820c5d2014-06-12 16:53:13 -07001791 input.bit_depth = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -08001792
1793 /* First parse the global configuration values, because we want to apply
1794 * other parameters on top of the default configuration provided by the
1795 * codec.
1796 */
1797 argv = argv_dup(argc - 1, argv_ + 1);
1798 parse_global_config(&global, argv);
1799
Deb Mukherjee090f4d42014-07-16 09:37:13 -07001800 switch (global.color_type) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001801 case I420: input.fmt = AOM_IMG_FMT_I420; break;
1802 case I422: input.fmt = AOM_IMG_FMT_I422; break;
1803 case I444: input.fmt = AOM_IMG_FMT_I444; break;
1804 case I440: input.fmt = AOM_IMG_FMT_I440; break;
1805 case YV12: input.fmt = AOM_IMG_FMT_YV12; break;
Deb Mukherjee090f4d42014-07-16 09:37:13 -07001806 }
Tom Finegan44dd3272013-11-20 17:18:28 -08001807
John Koleszar6ad3b742012-11-06 12:02:42 -08001808 {
1809 /* Now parse each stream's parameters. Using a local scope here
1810 * due to the use of 'stream' as loop variable in FOREACH_STREAM
1811 * loops
John Koleszarefd54f82012-02-13 16:52:18 -08001812 */
John Koleszar6ad3b742012-11-06 12:02:42 -08001813 struct stream_state *stream = NULL;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001814
John Koleszar6ad3b742012-11-06 12:02:42 -08001815 do {
1816 stream = new_stream(&global, stream);
1817 stream_cnt++;
clang-format6c4d83e2016-08-08 19:03:30 -07001818 if (!streams) streams = stream;
John Koleszar6ad3b742012-11-06 12:02:42 -08001819 } while (parse_stream_params(&global, stream, argv));
John Koleszarc6b90392012-07-13 15:21:29 -07001820 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04001821
John Koleszarc6b90392012-07-13 15:21:29 -07001822 /* Check for unrecognized options */
1823 for (argi = argv; *argi; argi++)
1824 if (argi[0][0] == '-' && argi[0][1])
1825 die("Error: Unrecognized option %s\n", *argi);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001826
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001827 FOREACH_STREAM(stream, streams) {
1828 check_encoder_config(global.disable_warning_prompt, &global,
1829 &stream->config.cfg);
1830 }
Tom Finegan249366b2013-11-25 12:05:19 -08001831
John Koleszarc6b90392012-07-13 15:21:29 -07001832 /* Handle non-option arguments */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001833 input.filename = argv[0];
John Koleszar0ea50ce2010-05-18 11:58:33 -04001834
clang-format6c4d83e2016-08-08 19:03:30 -07001835 if (!input.filename) usage_exit();
John Koleszar53291892010-10-22 14:48:21 -04001836
John Koleszar8dd82872013-05-06 11:01:35 -07001837 /* Decide if other chroma subsamplings than 4:2:0 are supported */
Yaowu Xuf883b422016-08-30 14:01:10 -07001838 if (global.codec->fourcc == AV1_FOURCC) input.only_i420 = 0;
John Koleszar8dd82872013-05-06 11:01:35 -07001839
John Koleszar6ad3b742012-11-06 12:02:42 -08001840 for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) {
John Koleszar2bf563c2013-03-11 15:03:00 -07001841 int frames_in = 0, seen_frames = 0;
John Koleszar25b6e9f2013-02-12 21:17:56 -08001842 int64_t estimated_time_left = -1;
1843 int64_t average_rate = -1;
James Zerne3578af2014-04-17 10:47:08 -07001844 int64_t lagged_count = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001845
John Koleszar6ad3b742012-11-06 12:02:42 -08001846 open_input_file(&input);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001847
John Koleszar6ad3b742012-11-06 12:02:42 -08001848 /* If the input file doesn't specify its w/h (raw files), try to get
1849 * the data from the first stream's configuration.
John Koleszarc6b90392012-07-13 15:21:29 -07001850 */
Deb Mukherjeea349ee32014-10-13 14:27:53 -07001851 if (!input.width || !input.height) {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001852 FOREACH_STREAM(stream, streams) {
Deb Mukherjeea349ee32014-10-13 14:27:53 -07001853 if (stream->config.cfg.g_w && stream->config.cfg.g_h) {
1854 input.width = stream->config.cfg.g_w;
1855 input.height = stream->config.cfg.g_h;
1856 break;
1857 }
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001858 };
Deb Mukherjeea349ee32014-10-13 14:27:53 -07001859 }
John Koleszarc6b90392012-07-13 15:21:29 -07001860
John Koleszar6ad3b742012-11-06 12:02:42 -08001861 /* Update stream configurations from the input file's parameters */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001862 if (!input.width || !input.height)
clang-format6c4d83e2016-08-08 19:03:30 -07001863 fatal(
1864 "Specify stream dimensions with --width (-w) "
1865 " and --height (-h)");
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001866
1867 /* If input file does not specify bit-depth but input-bit-depth parameter
1868 * exists, assume that to be the input bit-depth. However, if the
1869 * input-bit-depth paramter does not exist, assume the input bit-depth
1870 * to be the same as the codec bit-depth.
1871 */
1872 if (!input.bit_depth) {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001873 FOREACH_STREAM(stream, streams) {
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001874 if (stream->config.cfg.g_input_bit_depth)
1875 input.bit_depth = stream->config.cfg.g_input_bit_depth;
1876 else
1877 input.bit_depth = stream->config.cfg.g_input_bit_depth =
1878 (int)stream->config.cfg.g_bit_depth;
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001879 }
Yaowu Xuf883b422016-08-30 14:01:10 -07001880 if (input.bit_depth > 8) input.fmt |= AOM_IMG_FMT_HIGHBITDEPTH;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001881 } else {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001882 FOREACH_STREAM(stream, streams) {
1883 stream->config.cfg.g_input_bit_depth = input.bit_depth;
1884 }
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07001885 }
1886
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001887 FOREACH_STREAM(stream, streams) {
Thomas Daede8ec53b22016-09-19 13:24:51 -07001888 if (input.fmt != AOM_IMG_FMT_I420 && input.fmt != AOM_IMG_FMT_I42016) {
1889 /* Automatically upgrade if input is non-4:2:0 but a 4:2:0 profile
1890 was selected. */
1891 switch (stream->config.cfg.g_profile) {
1892 case 0:
1893 stream->config.cfg.g_profile = 1;
1894 profile_updated = 1;
1895 break;
1896 case 2:
1897 stream->config.cfg.g_profile = 3;
1898 profile_updated = 1;
1899 break;
1900 default: break;
1901 }
1902 }
Thomas Daede8ec53b22016-09-19 13:24:51 -07001903 /* Automatically set the codec bit depth to match the input bit depth.
1904 * Upgrade the profile if required. */
Thomas Daedec0dca3c2016-02-25 17:23:17 -08001905 if (stream->config.cfg.g_input_bit_depth >
1906 (unsigned int)stream->config.cfg.g_bit_depth) {
1907 stream->config.cfg.g_bit_depth = stream->config.cfg.g_input_bit_depth;
1908 }
1909 if (stream->config.cfg.g_bit_depth > 8) {
1910 switch (stream->config.cfg.g_profile) {
1911 case 0:
1912 stream->config.cfg.g_profile = 2;
1913 profile_updated = 1;
1914 break;
1915 case 1:
1916 stream->config.cfg.g_profile = 3;
1917 profile_updated = 1;
1918 break;
1919 default: break;
1920 }
1921 }
1922 if (stream->config.cfg.g_profile > 1) {
Sebastien Alaiwanfadc7cb2017-06-08 22:10:43 +02001923 if (!CONFIG_HIGHBITDEPTH) fatal("Unsupported profile.");
Thomas Daedec0dca3c2016-02-25 17:23:17 -08001924 stream->config.use_16bit_internal = 1;
Arild Fuldseth (arilfuld)59622cf2016-10-24 10:37:37 +02001925 }
Urvang Joshi51c048e2017-02-16 12:43:52 -08001926 if (profile_updated && !global.quiet) {
Arild Fuldseth (arilfuld)59622cf2016-10-24 10:37:37 +02001927 fprintf(stderr,
1928 "Warning: automatically upgrading to profile %d to "
1929 "match input format.\n",
1930 stream->config.cfg.g_profile);
1931 }
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001932 }
Thomas Daedec0dca3c2016-02-25 17:23:17 -08001933
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001934 FOREACH_STREAM(stream, streams) {
1935 set_stream_dimensions(stream, input.width, input.height);
1936 }
1937 FOREACH_STREAM(stream, streams) { validate_stream_config(stream, &global); }
John Koleszar77e6b452010-11-03 13:58:40 -04001938
John Koleszar6ad3b742012-11-06 12:02:42 -08001939 /* Ensure that --passes and --pass are consistent. If --pass is set and
1940 * --passes=2, ensure --fpf was set.
1941 */
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001942 if (global.pass && global.passes == 2) {
1943 FOREACH_STREAM(stream, streams) {
clang-format6c4d83e2016-08-08 19:03:30 -07001944 if (!stream->config.stats_fn)
clang-format67948d32016-09-07 22:40:40 -07001945 die("Stream %d: Must specify --fpf when --pass=%d"
clang-format6c4d83e2016-08-08 19:03:30 -07001946 " and --passes=2\n",
1947 stream->index, global.pass);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001948 }
1949 }
John Koleszar3245d462010-06-10 17:10:12 -04001950
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001951#if !CONFIG_WEBM_IO
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001952 FOREACH_STREAM(stream, streams) {
Ronald S. Bultje39775072015-12-16 13:35:43 -05001953 if (stream->config.write_webm) {
1954 stream->config.write_webm = 0;
clang-format6c4d83e2016-08-08 19:03:30 -07001955 warn(
Yaowu Xuf883b422016-08-30 14:01:10 -07001956 "aomenc was compiled without WebM container support."
clang-format6c4d83e2016-08-08 19:03:30 -07001957 "Producing IVF output");
Ronald S. Bultje39775072015-12-16 13:35:43 -05001958 }
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001959 }
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001960#endif
1961
John Koleszar6ad3b742012-11-06 12:02:42 -08001962 /* Use the frame rate from the file only if none was specified
1963 * on the command-line.
1964 */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001965 if (!global.have_framerate) {
1966 global.framerate.num = input.framerate.numerator;
1967 global.framerate.den = input.framerate.denominator;
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001968 FOREACH_STREAM(stream, streams) {
1969 stream->config.cfg.g_timebase.den = global.framerate.num;
1970 stream->config.cfg.g_timebase.num = global.framerate.den;
1971 }
Tom Finegan00a35aa2013-11-14 12:37:42 -08001972 }
Timothy B. Terriberry44d89492010-05-26 18:27:51 -04001973
John Koleszar6ad3b742012-11-06 12:02:42 -08001974 /* Show configuration */
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001975 if (global.verbose && pass == 0) {
1976 FOREACH_STREAM(stream, streams) {
1977 show_stream_config(stream, &global, &input);
1978 }
1979 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001980
1981 if (pass == (global.pass ? global.pass - 1 : 0)) {
1982 if (input.file_type == FILE_TYPE_Y4M)
John Koleszarc6b90392012-07-13 15:21:29 -07001983 /*The Y4M reader does its own allocation.
1984 Just initialize this here to avoid problems if we never read any
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001985 frames.*/
John Koleszarc6b90392012-07-13 15:21:29 -07001986 memset(&raw, 0, sizeof(raw));
1987 else
Yaowu Xuf883b422016-08-30 14:01:10 -07001988 aom_img_alloc(&raw, input.fmt, input.width, input.height, 32);
John Koleszar05239f02011-06-29 09:53:12 -04001989
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001990 FOREACH_STREAM(stream, streams) {
1991 stream->rate_hist =
1992 init_rate_histogram(&stream->config.cfg, &global.framerate);
1993 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04001994 }
1995
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02001996 FOREACH_STREAM(stream, streams) { setup_pass(stream, &global, pass); }
1997 FOREACH_STREAM(stream, streams) {
1998 open_output_file(stream, &global, &input.pixel_aspect_ratio);
1999 }
2000 FOREACH_STREAM(stream, streams) { initialize_encoder(stream, &global); }
John Koleszar0ea50ce2010-05-18 11:58:33 -04002001
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02002002#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -07002003 if (strcmp(global.codec->name, "av1") == 0 ||
2004 strcmp(global.codec->name, "av1") == 0) {
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002005 // Check to see if at least one stream uses 16 bit internal.
2006 // Currently assume that the bit_depths for all streams using
2007 // highbitdepth are the same.
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002008 FOREACH_STREAM(stream, streams) {
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002009 if (stream->config.use_16bit_internal) {
2010 use_16bit_internal = 1;
2011 }
2012 if (stream->config.cfg.g_profile == 0) {
2013 input_shift = 0;
2014 } else {
2015 input_shift = (int)stream->config.cfg.g_bit_depth -
clang-format6c4d83e2016-08-08 19:03:30 -07002016 stream->config.cfg.g_input_bit_depth;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002017 }
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002018 };
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002019 }
2020#endif
2021
John Koleszarc6b90392012-07-13 15:21:29 -07002022 frame_avail = 1;
2023 got_data = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04002024
John Koleszarc6b90392012-07-13 15:21:29 -07002025 while (frame_avail || got_data) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002026 struct aom_usec_timer timer;
John Koleszar0ea50ce2010-05-18 11:58:33 -04002027
John Koleszar6ad3b742012-11-06 12:02:42 -08002028 if (!global.limit || frames_in < global.limit) {
2029 frame_avail = read_frame(&input, &raw);
John Koleszar0ea50ce2010-05-18 11:58:33 -04002030
clang-format6c4d83e2016-08-08 19:03:30 -07002031 if (frame_avail) frames_in++;
2032 seen_frames =
2033 frames_in > global.skip_frames ? frames_in - global.skip_frames : 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04002034
John Koleszar6ad3b742012-11-06 12:02:42 -08002035 if (!global.quiet) {
John Koleszar2bf563c2013-03-11 15:03:00 -07002036 float fps = usec_to_fps(cx_time, seen_frames);
John Koleszar25b6e9f2013-02-12 21:17:56 -08002037 fprintf(stderr, "\rPass %d/%d ", pass + 1, global.passes);
2038
John Koleszar6ad3b742012-11-06 12:02:42 -08002039 if (stream_cnt == 1)
clang-format6c4d83e2016-08-08 19:03:30 -07002040 fprintf(stderr, "frame %4d/%-4d %7" PRId64 "B ", frames_in,
2041 streams->frames_out, (int64_t)streams->nbytes);
John Koleszar6ad3b742012-11-06 12:02:42 -08002042 else
John Koleszar25b6e9f2013-02-12 21:17:56 -08002043 fprintf(stderr, "frame %4d ", frames_in);
2044
clang-format6c4d83e2016-08-08 19:03:30 -07002045 fprintf(stderr, "%7" PRId64 " %s %.2f %s ",
John Koleszar25b6e9f2013-02-12 21:17:56 -08002046 cx_time > 9999999 ? cx_time / 1000 : cx_time,
clang-format6c4d83e2016-08-08 19:03:30 -07002047 cx_time > 9999999 ? "ms" : "us", fps >= 1.0 ? fps : fps * 60,
Yaowu Xu014acfa2013-09-17 16:31:46 -07002048 fps >= 1.0 ? "fps" : "fpm");
John Koleszar25b6e9f2013-02-12 21:17:56 -08002049 print_time("ETA", estimated_time_left);
John Koleszar3245d462010-06-10 17:10:12 -04002050 }
2051
hui su251e1512016-10-03 15:48:43 -07002052 } else {
John Koleszarc6b90392012-07-13 15:21:29 -07002053 frame_avail = 0;
hui su251e1512016-10-03 15:48:43 -07002054 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04002055
John Koleszar6ad3b742012-11-06 12:02:42 -08002056 if (frames_in > global.skip_frames) {
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02002057#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -07002058 aom_image_t *frame_to_encode;
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002059 if (input_shift || (use_16bit_internal && input.bit_depth == 8)) {
2060 assert(use_16bit_internal);
2061 // Input bit depth and stream bit depth do not match, so up
2062 // shift frame to stream bit depth
2063 if (!allocated_raw_shift) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002064 aom_img_alloc(&raw_shift, raw.fmt | AOM_IMG_FMT_HIGHBITDEPTH,
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002065 input.width, input.height, 32);
2066 allocated_raw_shift = 1;
2067 }
Yaowu Xuf883b422016-08-30 14:01:10 -07002068 aom_img_upshift(&raw_shift, &raw, input_shift);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002069 frame_to_encode = &raw_shift;
2070 } else {
2071 frame_to_encode = &raw;
2072 }
Yaowu Xuf883b422016-08-30 14:01:10 -07002073 aom_usec_timer_start(&timer);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002074 if (use_16bit_internal) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002075 assert(frame_to_encode->fmt & AOM_IMG_FMT_HIGHBITDEPTH);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002076 FOREACH_STREAM(stream, streams) {
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002077 if (stream->config.use_16bit_internal)
2078 encode_frame(stream, &global,
clang-format6c4d83e2016-08-08 19:03:30 -07002079 frame_avail ? frame_to_encode : NULL, frames_in);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002080 else
2081 assert(0);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002082 };
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002083 } else {
Yaowu Xuf883b422016-08-30 14:01:10 -07002084 assert((frame_to_encode->fmt & AOM_IMG_FMT_HIGHBITDEPTH) == 0);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002085 FOREACH_STREAM(stream, streams) {
2086 encode_frame(stream, &global, frame_avail ? frame_to_encode : NULL,
2087 frames_in);
2088 }
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002089 }
2090#else
Yaowu Xuf883b422016-08-30 14:01:10 -07002091 aom_usec_timer_start(&timer);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002092 FOREACH_STREAM(stream, streams) {
2093 encode_frame(stream, &global, frame_avail ? &raw : NULL, frames_in);
2094 }
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002095#endif
Yaowu Xuf883b422016-08-30 14:01:10 -07002096 aom_usec_timer_mark(&timer);
2097 cx_time += aom_usec_timer_elapsed(&timer);
John Koleszarc6b90392012-07-13 15:21:29 -07002098
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002099 FOREACH_STREAM(stream, streams) { update_quantizer_histogram(stream); }
John Koleszarc6b90392012-07-13 15:21:29 -07002100
John Koleszar0ea50ce2010-05-18 11:58:33 -04002101 got_data = 0;
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002102 FOREACH_STREAM(stream, streams) {
2103 get_cx_data(stream, &global, &got_data);
2104 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04002105
Jim Bankoskic901a4f2014-08-21 07:18:07 -07002106 if (!got_data && input.length && streams != NULL &&
2107 !streams->frames_out) {
John Koleszar2bf563c2013-03-11 15:03:00 -07002108 lagged_count = global.limit ? seen_frames : ftello(input.file);
John Koleszarebf8b9f2013-02-27 11:14:23 -08002109 } else if (input.length) {
John Koleszar25b6e9f2013-02-12 21:17:56 -08002110 int64_t remaining;
2111 int64_t rate;
2112
2113 if (global.limit) {
James Zerne3578af2014-04-17 10:47:08 -07002114 const int64_t frame_in_lagged = (seen_frames - lagged_count) * 1000;
John Koleszar25b6e9f2013-02-12 21:17:56 -08002115
2116 rate = cx_time ? frame_in_lagged * (int64_t)1000000 / cx_time : 0;
clang-format6c4d83e2016-08-08 19:03:30 -07002117 remaining = 1000 * (global.limit - global.skip_frames -
2118 seen_frames + lagged_count);
John Koleszar25b6e9f2013-02-12 21:17:56 -08002119 } else {
James Zerne3578af2014-04-17 10:47:08 -07002120 const int64_t input_pos = ftello(input.file);
2121 const int64_t input_pos_lagged = input_pos - lagged_count;
Urvang Joshi4145bf02016-10-17 14:53:33 -07002122 const int64_t input_limit = input.length;
John Koleszar25b6e9f2013-02-12 21:17:56 -08002123
2124 rate = cx_time ? input_pos_lagged * (int64_t)1000000 / cx_time : 0;
Urvang Joshi4145bf02016-10-17 14:53:33 -07002125 remaining = input_limit - input_pos + lagged_count;
John Koleszar25b6e9f2013-02-12 21:17:56 -08002126 }
2127
clang-format6c4d83e2016-08-08 19:03:30 -07002128 average_rate =
2129 (average_rate <= 0) ? rate : (average_rate * 7 + rate) / 8;
John Koleszar25b6e9f2013-02-12 21:17:56 -08002130 estimated_time_left = average_rate ? remaining / average_rate : -1;
2131 }
2132
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002133 if (got_data && global.test_decode != TEST_DECODE_OFF) {
2134 FOREACH_STREAM(stream, streams) {
Sebastien Alaiwan34c9d8b2017-08-07 09:56:47 +02002135 test_decode(stream, global.test_decode);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002136 }
2137 }
John Koleszarc6b90392012-07-13 15:21:29 -07002138 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04002139
John Koleszarc6b90392012-07-13 15:21:29 -07002140 fflush(stdout);
clang-format6c4d83e2016-08-08 19:03:30 -07002141 if (!global.quiet) fprintf(stderr, "\033[K");
John Koleszar0ea50ce2010-05-18 11:58:33 -04002142 }
2143
clang-format6c4d83e2016-08-08 19:03:30 -07002144 if (stream_cnt > 1) fprintf(stderr, "\n");
John Koleszar3fde9962011-06-20 17:09:29 -04002145
Deb Mukherjeea160d722014-09-30 21:56:33 -07002146 if (!global.quiet) {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002147 FOREACH_STREAM(stream, streams) {
2148 fprintf(stderr, "\rPass %d/%d frame %4d/%-4d %7" PRId64 "B %7" PRId64
2149 "b/f %7" PRId64
2150 "b/s"
2151 " %7" PRId64 " %s (%.2f fps)\033[K\n",
2152 pass + 1, global.passes, frames_in, stream->frames_out,
2153 (int64_t)stream->nbytes,
2154 seen_frames ? (int64_t)(stream->nbytes * 8 / seen_frames) : 0,
2155 seen_frames
2156 ? (int64_t)stream->nbytes * 8 *
2157 (int64_t)global.framerate.num / global.framerate.den /
2158 seen_frames
2159 : 0,
2160 stream->cx_time > 9999999 ? stream->cx_time / 1000
2161 : stream->cx_time,
2162 stream->cx_time > 9999999 ? "ms" : "us",
2163 usec_to_fps(stream->cx_time, seen_frames));
2164 }
Deb Mukherjeea160d722014-09-30 21:56:33 -07002165 }
John Koleszarc96f8e22011-06-21 16:42:33 -04002166
Deb Mukherjeea160d722014-09-30 21:56:33 -07002167 if (global.show_psnr) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002168 if (global.codec->fourcc == AV1_FOURCC) {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002169 FOREACH_STREAM(stream, streams) {
2170 show_psnr(stream, (1 << stream->config.cfg.g_input_bit_depth) - 1);
2171 }
Deb Mukherjeea160d722014-09-30 21:56:33 -07002172 } else {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002173 FOREACH_STREAM(stream, streams) { show_psnr(stream, 255.0); }
Deb Mukherjeea160d722014-09-30 21:56:33 -07002174 }
2175 }
John Koleszarc6b90392012-07-13 15:21:29 -07002176
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002177 FOREACH_STREAM(stream, streams) { aom_codec_destroy(&stream->encoder); }
John Koleszar6ad3b742012-11-06 12:02:42 -08002178
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08002179 if (global.test_decode != TEST_DECODE_OFF) {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002180 FOREACH_STREAM(stream, streams) { aom_codec_destroy(&stream->decoder); }
Yaowu Xuf798f9e2012-03-07 12:25:50 -08002181 }
2182
John Koleszar6ad3b742012-11-06 12:02:42 -08002183 close_input_file(&input);
John Koleszar0ea50ce2010-05-18 11:58:33 -04002184
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08002185 if (global.test_decode == TEST_DECODE_FATAL) {
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002186 FOREACH_STREAM(stream, streams) { res |= stream->mismatch_seen; }
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08002187 }
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002188 FOREACH_STREAM(stream, streams) {
2189 close_output_file(stream, global.codec->fourcc);
2190 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04002191
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002192 FOREACH_STREAM(stream, streams) {
2193 stats_close(&stream->stats, global.passes - 1);
2194 }
John Koleszarc6b90392012-07-13 15:21:29 -07002195
Pengchong Jinf349b072014-07-14 09:13:38 -07002196#if CONFIG_FP_MB_STATS
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002197 FOREACH_STREAM(stream, streams) {
2198 stats_close(&stream->fpmb_stats, global.passes - 1);
2199 }
Pengchong Jinf349b072014-07-14 09:13:38 -07002200#endif
2201
clang-format6c4d83e2016-08-08 19:03:30 -07002202 if (global.pass) break;
John Koleszarc6b90392012-07-13 15:21:29 -07002203 }
2204
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002205 if (global.show_q_hist_buckets) {
2206 FOREACH_STREAM(stream, streams) {
2207 show_q_histogram(stream->counts, global.show_q_hist_buckets);
2208 }
2209 }
John Koleszar6ad3b742012-11-06 12:02:42 -08002210
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002211 if (global.show_rate_hist_buckets) {
2212 FOREACH_STREAM(stream, streams) {
2213 show_rate_histogram(stream->rate_hist, &stream->config.cfg,
2214 global.show_rate_hist_buckets);
2215 }
2216 }
2217 FOREACH_STREAM(stream, streams) { destroy_rate_histogram(stream->rate_hist); }
John Koleszar6ad3b742012-11-06 12:02:42 -08002218
Ronald S. Bultje31214972012-10-11 10:13:48 -07002219#if CONFIG_INTERNAL_STATS
John Koleszar6ad3b742012-11-06 12:02:42 -08002220 /* TODO(jkoleszar): This doesn't belong in this executable. Do it for now,
2221 * to match some existing utilities.
2222 */
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002223 if (!(global.pass == 1 && global.passes == 2)) {
2224 FOREACH_STREAM(stream, streams) {
Yaowu Xu47e784e2013-10-16 16:29:28 -07002225 FILE *f = fopen("opsnr.stt", "a");
2226 if (stream->mismatch_seen) {
2227 fprintf(f, "First mismatch occurred in frame %d\n",
2228 stream->mismatch_seen);
2229 } else {
2230 fprintf(f, "No mismatch detected in recon buffers\n");
2231 }
2232 fclose(f);
Sebastien Alaiwan0b993842017-06-09 10:28:29 +02002233 }
2234 }
Ronald S. Bultje31214972012-10-11 10:13:48 -07002235#endif
John Koleszarc6b90392012-07-13 15:21:29 -07002236
Sebastien Alaiwan71e87842017-04-12 16:03:28 +02002237#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -07002238 if (allocated_raw_shift) aom_img_free(&raw_shift);
Deb Mukherjee5acfafb2014-08-26 12:35:15 -07002239#endif
Yaowu Xuf883b422016-08-30 14:01:10 -07002240 aom_img_free(&raw);
John Koleszarc6b90392012-07-13 15:21:29 -07002241 free(argv);
John Koleszar6ad3b742012-11-06 12:02:42 -08002242 free(streams);
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08002243 return res ? EXIT_FAILURE : EXIT_SUCCESS;
John Koleszar0ea50ce2010-05-18 11:58:33 -04002244}