]> granicus.if.org Git - libvpx/blob - vpxenc.c
Merge "Add unit test to expose vp8 bug when width is set odd."
[libvpx] / vpxenc.c
1 /*
2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #include "./vpxenc.h"
12 #include "./vpx_config.h"
13
14 #include <assert.h>
15 #include <limits.h>
16 #include <math.h>
17 #include <stdarg.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21
22 #if CONFIG_LIBYUV
23 #include "third_party/libyuv/include/libyuv/scale.h"
24 #endif
25
26 #include "vpx/vpx_encoder.h"
27 #if CONFIG_DECODERS
28 #include "vpx/vpx_decoder.h"
29 #endif
30
31 #include "./args.h"
32 #include "./ivfenc.h"
33 #include "./tools_common.h"
34
35 #if CONFIG_VP8_ENCODER || CONFIG_VP9_ENCODER
36 #include "vpx/vp8cx.h"
37 #endif
38 #if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER
39 #include "vpx/vp8dx.h"
40 #endif
41
42 #include "vpx/vpx_integer.h"
43 #include "vpx_ports/mem_ops.h"
44 #include "vpx_ports/vpx_timer.h"
45 #include "./rate_hist.h"
46 #include "./vpxstats.h"
47 #include "./warnings.h"
48 #if CONFIG_WEBM_IO
49 #include "./webmenc.h"
50 #endif
51 #include "./y4minput.h"
52
53 /* Swallow warnings about unused results of fread/fwrite */
54 static size_t wrap_fread(void *ptr, size_t size, size_t nmemb, FILE *stream) {
55   return fread(ptr, size, nmemb, stream);
56 }
57 #define fread wrap_fread
58
59 static size_t wrap_fwrite(const void *ptr, size_t size, size_t nmemb,
60                           FILE *stream) {
61   return fwrite(ptr, size, nmemb, stream);
62 }
63 #define fwrite wrap_fwrite
64
65 static const char *exec_name;
66
67 static void warn_or_exit_on_errorv(vpx_codec_ctx_t *ctx, int fatal,
68                                    const char *s, va_list ap) {
69   if (ctx->err) {
70     const char *detail = vpx_codec_error_detail(ctx);
71
72     vfprintf(stderr, s, ap);
73     fprintf(stderr, ": %s\n", vpx_codec_error(ctx));
74
75     if (detail) fprintf(stderr, "    %s\n", detail);
76
77     if (fatal) exit(EXIT_FAILURE);
78   }
79 }
80
81 static void ctx_exit_on_error(vpx_codec_ctx_t *ctx, const char *s, ...) {
82   va_list ap;
83
84   va_start(ap, s);
85   warn_or_exit_on_errorv(ctx, 1, s, ap);
86   va_end(ap);
87 }
88
89 static void warn_or_exit_on_error(vpx_codec_ctx_t *ctx, int fatal,
90                                   const char *s, ...) {
91   va_list ap;
92
93   va_start(ap, s);
94   warn_or_exit_on_errorv(ctx, fatal, s, ap);
95   va_end(ap);
96 }
97
98 static int read_frame(struct VpxInputContext *input_ctx, vpx_image_t *img) {
99   FILE *f = input_ctx->file;
100   y4m_input *y4m = &input_ctx->y4m;
101   int shortread = 0;
102
103   if (input_ctx->file_type == FILE_TYPE_Y4M) {
104     if (y4m_input_fetch_frame(y4m, f, img) < 1) return 0;
105   } else {
106     shortread = read_yuv_frame(input_ctx, img);
107   }
108
109   return !shortread;
110 }
111
112 static int file_is_y4m(const char detect[4]) {
113   if (memcmp(detect, "YUV4", 4) == 0) {
114     return 1;
115   }
116   return 0;
117 }
118
119 static int fourcc_is_ivf(const char detect[4]) {
120   if (memcmp(detect, "DKIF", 4) == 0) {
121     return 1;
122   }
123   return 0;
124 }
125
126 static const arg_def_t debugmode =
127     ARG_DEF("D", "debug", 0, "Debug mode (makes output deterministic)");
128 static const arg_def_t outputfile =
129     ARG_DEF("o", "output", 1, "Output filename");
130 static const arg_def_t use_yv12 =
131     ARG_DEF(NULL, "yv12", 0, "Input file is YV12 ");
132 static const arg_def_t use_i420 =
133     ARG_DEF(NULL, "i420", 0, "Input file is I420 (default)");
134 static const arg_def_t use_i422 =
135     ARG_DEF(NULL, "i422", 0, "Input file is I422");
136 static const arg_def_t use_i444 =
137     ARG_DEF(NULL, "i444", 0, "Input file is I444");
138 static const arg_def_t use_i440 =
139     ARG_DEF(NULL, "i440", 0, "Input file is I440");
140 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use");
141 static const arg_def_t passes =
142     ARG_DEF("p", "passes", 1, "Number of passes (1/2)");
143 static const arg_def_t pass_arg =
144     ARG_DEF(NULL, "pass", 1, "Pass to execute (1/2)");
145 static const arg_def_t fpf_name =
146     ARG_DEF(NULL, "fpf", 1, "First pass statistics file name");
147 #if CONFIG_FP_MB_STATS
148 static const arg_def_t fpmbf_name =
149     ARG_DEF(NULL, "fpmbf", 1, "First pass block statistics file name");
150 #endif
151 static const arg_def_t limit =
152     ARG_DEF(NULL, "limit", 1, "Stop encoding after n input frames");
153 static const arg_def_t skip =
154     ARG_DEF(NULL, "skip", 1, "Skip the first n input frames");
155 static const arg_def_t deadline =
156     ARG_DEF("d", "deadline", 1, "Deadline per frame (usec)");
157 static const arg_def_t best_dl =
158     ARG_DEF(NULL, "best", 0, "Use Best Quality Deadline");
159 static const arg_def_t good_dl =
160     ARG_DEF(NULL, "good", 0, "Use Good Quality Deadline");
161 static const arg_def_t rt_dl =
162     ARG_DEF(NULL, "rt", 0, "Use Realtime Quality Deadline");
163 static const arg_def_t quietarg =
164     ARG_DEF("q", "quiet", 0, "Do not print encode progress");
165 static const arg_def_t verbosearg =
166     ARG_DEF("v", "verbose", 0, "Show encoder parameters");
167 static const arg_def_t psnrarg =
168     ARG_DEF(NULL, "psnr", 0, "Show PSNR in status line");
169
170 static const struct arg_enum_list test_decode_enum[] = {
171   { "off", TEST_DECODE_OFF },
172   { "fatal", TEST_DECODE_FATAL },
173   { "warn", TEST_DECODE_WARN },
174   { NULL, 0 }
175 };
176 static const arg_def_t recontest = ARG_DEF_ENUM(
177     NULL, "test-decode", 1, "Test encode/decode mismatch", test_decode_enum);
178 static const arg_def_t framerate =
179     ARG_DEF(NULL, "fps", 1, "Stream frame rate (rate/scale)");
180 static const arg_def_t use_webm =
181     ARG_DEF(NULL, "webm", 0, "Output WebM (default when WebM IO is enabled)");
182 static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0, "Output IVF");
183 static const arg_def_t out_part =
184     ARG_DEF("P", "output-partitions", 0,
185             "Makes encoder output partitions. Requires IVF output!");
186 static const arg_def_t q_hist_n =
187     ARG_DEF(NULL, "q-hist", 1, "Show quantizer histogram (n-buckets)");
188 static const arg_def_t rate_hist_n =
189     ARG_DEF(NULL, "rate-hist", 1, "Show rate histogram (n-buckets)");
190 static const arg_def_t disable_warnings =
191     ARG_DEF(NULL, "disable-warnings", 0,
192             "Disable warnings about potentially incorrect encode settings.");
193 static const arg_def_t disable_warning_prompt =
194     ARG_DEF("y", "disable-warning-prompt", 0,
195             "Display warnings, but do not prompt user to continue.");
196
197 #if CONFIG_VP9_HIGHBITDEPTH
198 static const arg_def_t test16bitinternalarg = ARG_DEF(
199     NULL, "test-16bit-internal", 0, "Force use of 16 bit internal buffer");
200 #endif
201
202 static const arg_def_t *main_args[] = { &debugmode,
203                                         &outputfile,
204                                         &codecarg,
205                                         &passes,
206                                         &pass_arg,
207                                         &fpf_name,
208                                         &limit,
209                                         &skip,
210                                         &deadline,
211                                         &best_dl,
212                                         &good_dl,
213                                         &rt_dl,
214                                         &quietarg,
215                                         &verbosearg,
216                                         &psnrarg,
217                                         &use_webm,
218                                         &use_ivf,
219                                         &out_part,
220                                         &q_hist_n,
221                                         &rate_hist_n,
222                                         &disable_warnings,
223                                         &disable_warning_prompt,
224                                         &recontest,
225                                         NULL };
226
227 static const arg_def_t usage =
228     ARG_DEF("u", "usage", 1, "Usage profile number to use");
229 static const arg_def_t threads =
230     ARG_DEF("t", "threads", 1, "Max number of threads to use");
231 static const arg_def_t profile =
232     ARG_DEF(NULL, "profile", 1, "Bitstream profile number to use");
233 static const arg_def_t width = ARG_DEF("w", "width", 1, "Frame width");
234 static const arg_def_t height = ARG_DEF("h", "height", 1, "Frame height");
235 #if CONFIG_WEBM_IO
236 static const struct arg_enum_list stereo_mode_enum[] = {
237   { "mono", STEREO_FORMAT_MONO },
238   { "left-right", STEREO_FORMAT_LEFT_RIGHT },
239   { "bottom-top", STEREO_FORMAT_BOTTOM_TOP },
240   { "top-bottom", STEREO_FORMAT_TOP_BOTTOM },
241   { "right-left", STEREO_FORMAT_RIGHT_LEFT },
242   { NULL, 0 }
243 };
244 static const arg_def_t stereo_mode = ARG_DEF_ENUM(
245     NULL, "stereo-mode", 1, "Stereo 3D video format", stereo_mode_enum);
246 #endif
247 static const arg_def_t timebase = ARG_DEF(
248     NULL, "timebase", 1, "Output timestamp precision (fractional seconds)");
249 static const arg_def_t error_resilient =
250     ARG_DEF(NULL, "error-resilient", 1, "Enable error resiliency features");
251 static const arg_def_t lag_in_frames =
252     ARG_DEF(NULL, "lag-in-frames", 1, "Max number of frames to lag");
253
254 static const arg_def_t *global_args[] = { &use_yv12,
255                                           &use_i420,
256                                           &use_i422,
257                                           &use_i444,
258                                           &use_i440,
259                                           &usage,
260                                           &threads,
261                                           &profile,
262                                           &width,
263                                           &height,
264 #if CONFIG_WEBM_IO
265                                           &stereo_mode,
266 #endif
267                                           &timebase,
268                                           &framerate,
269                                           &error_resilient,
270 #if CONFIG_VP9_HIGHBITDEPTH
271                                           &test16bitinternalarg,
272 #endif
273                                           &lag_in_frames,
274                                           NULL };
275
276 static const arg_def_t dropframe_thresh =
277     ARG_DEF(NULL, "drop-frame", 1, "Temporal resampling threshold (buf %)");
278 static const arg_def_t resize_allowed =
279     ARG_DEF(NULL, "resize-allowed", 1, "Spatial resampling enabled (bool)");
280 static const arg_def_t resize_width =
281     ARG_DEF(NULL, "resize-width", 1, "Width of encoded frame");
282 static const arg_def_t resize_height =
283     ARG_DEF(NULL, "resize-height", 1, "Height of encoded frame");
284 static const arg_def_t resize_up_thresh =
285     ARG_DEF(NULL, "resize-up", 1, "Upscale threshold (buf %)");
286 static const arg_def_t resize_down_thresh =
287     ARG_DEF(NULL, "resize-down", 1, "Downscale threshold (buf %)");
288 static const struct arg_enum_list end_usage_enum[] = { { "vbr", VPX_VBR },
289                                                        { "cbr", VPX_CBR },
290                                                        { "cq", VPX_CQ },
291                                                        { "q", VPX_Q },
292                                                        { NULL, 0 } };
293 static const arg_def_t end_usage =
294     ARG_DEF_ENUM(NULL, "end-usage", 1, "Rate control mode", end_usage_enum);
295 static const arg_def_t target_bitrate =
296     ARG_DEF(NULL, "target-bitrate", 1, "Bitrate (kbps)");
297 static const arg_def_t min_quantizer =
298     ARG_DEF(NULL, "min-q", 1, "Minimum (best) quantizer");
299 static const arg_def_t max_quantizer =
300     ARG_DEF(NULL, "max-q", 1, "Maximum (worst) quantizer");
301 static const arg_def_t undershoot_pct =
302     ARG_DEF(NULL, "undershoot-pct", 1, "Datarate undershoot (min) target (%)");
303 static const arg_def_t overshoot_pct =
304     ARG_DEF(NULL, "overshoot-pct", 1, "Datarate overshoot (max) target (%)");
305 static const arg_def_t buf_sz =
306     ARG_DEF(NULL, "buf-sz", 1, "Client buffer size (ms)");
307 static const arg_def_t buf_initial_sz =
308     ARG_DEF(NULL, "buf-initial-sz", 1, "Client initial buffer size (ms)");
309 static const arg_def_t buf_optimal_sz =
310     ARG_DEF(NULL, "buf-optimal-sz", 1, "Client optimal buffer size (ms)");
311 static const arg_def_t *rc_args[] = {
312   &dropframe_thresh, &resize_allowed,     &resize_width,   &resize_height,
313   &resize_up_thresh, &resize_down_thresh, &end_usage,      &target_bitrate,
314   &min_quantizer,    &max_quantizer,      &undershoot_pct, &overshoot_pct,
315   &buf_sz,           &buf_initial_sz,     &buf_optimal_sz, NULL
316 };
317
318 static const arg_def_t bias_pct =
319     ARG_DEF(NULL, "bias-pct", 1, "CBR/VBR bias (0=CBR, 100=VBR)");
320 static const arg_def_t minsection_pct =
321     ARG_DEF(NULL, "minsection-pct", 1, "GOP min bitrate (% of target)");
322 static const arg_def_t maxsection_pct =
323     ARG_DEF(NULL, "maxsection-pct", 1, "GOP max bitrate (% of target)");
324 static const arg_def_t *rc_twopass_args[] = { &bias_pct, &minsection_pct,
325                                               &maxsection_pct, NULL };
326
327 static const arg_def_t kf_min_dist =
328     ARG_DEF(NULL, "kf-min-dist", 1, "Minimum keyframe interval (frames)");
329 static const arg_def_t kf_max_dist =
330     ARG_DEF(NULL, "kf-max-dist", 1, "Maximum keyframe interval (frames)");
331 static const arg_def_t kf_disabled =
332     ARG_DEF(NULL, "disable-kf", 0, "Disable keyframe placement");
333 static const arg_def_t *kf_args[] = { &kf_min_dist, &kf_max_dist, &kf_disabled,
334                                       NULL };
335
336 static const arg_def_t noise_sens =
337     ARG_DEF(NULL, "noise-sensitivity", 1, "Noise sensitivity (frames to blur)");
338 static const arg_def_t sharpness =
339     ARG_DEF(NULL, "sharpness", 1, "Loop filter sharpness (0..7)");
340 static const arg_def_t static_thresh =
341     ARG_DEF(NULL, "static-thresh", 1, "Motion detection threshold");
342 static const arg_def_t auto_altref =
343     ARG_DEF(NULL, "auto-alt-ref", 1, "Enable automatic alt reference frames");
344 static const arg_def_t arnr_maxframes =
345     ARG_DEF(NULL, "arnr-maxframes", 1, "AltRef max frames (0..15)");
346 static const arg_def_t arnr_strength =
347     ARG_DEF(NULL, "arnr-strength", 1, "AltRef filter strength (0..6)");
348 static const arg_def_t arnr_type = ARG_DEF(NULL, "arnr-type", 1, "AltRef type");
349 static const struct arg_enum_list tuning_enum[] = {
350   { "psnr", VP8_TUNE_PSNR }, { "ssim", VP8_TUNE_SSIM }, { NULL, 0 }
351 };
352 static const arg_def_t tune_ssim =
353     ARG_DEF_ENUM(NULL, "tune", 1, "Material to favor", tuning_enum);
354 static const arg_def_t cq_level =
355     ARG_DEF(NULL, "cq-level", 1, "Constant/Constrained Quality level");
356 static const arg_def_t max_intra_rate_pct =
357     ARG_DEF(NULL, "max-intra-rate", 1, "Max I-frame bitrate (pct)");
358 static const arg_def_t gf_cbr_boost_pct = ARG_DEF(
359     NULL, "gf-cbr-boost", 1, "Boost for Golden Frame in CBR mode (pct)");
360
361 #if CONFIG_VP8_ENCODER
362 static const arg_def_t cpu_used_vp8 =
363     ARG_DEF(NULL, "cpu-used", 1, "CPU Used (-16..16)");
364 static const arg_def_t token_parts =
365     ARG_DEF(NULL, "token-parts", 1, "Number of token partitions to use, log2");
366 static const arg_def_t screen_content_mode =
367     ARG_DEF(NULL, "screen-content-mode", 1, "Screen content mode");
368 static const arg_def_t *vp8_args[] = { &cpu_used_vp8,
369                                        &auto_altref,
370                                        &noise_sens,
371                                        &sharpness,
372                                        &static_thresh,
373                                        &token_parts,
374                                        &arnr_maxframes,
375                                        &arnr_strength,
376                                        &arnr_type,
377                                        &tune_ssim,
378                                        &cq_level,
379                                        &max_intra_rate_pct,
380                                        &gf_cbr_boost_pct,
381                                        &screen_content_mode,
382                                        NULL };
383 static const int vp8_arg_ctrl_map[] = { VP8E_SET_CPUUSED,
384                                         VP8E_SET_ENABLEAUTOALTREF,
385                                         VP8E_SET_NOISE_SENSITIVITY,
386                                         VP8E_SET_SHARPNESS,
387                                         VP8E_SET_STATIC_THRESHOLD,
388                                         VP8E_SET_TOKEN_PARTITIONS,
389                                         VP8E_SET_ARNR_MAXFRAMES,
390                                         VP8E_SET_ARNR_STRENGTH,
391                                         VP8E_SET_ARNR_TYPE,
392                                         VP8E_SET_TUNING,
393                                         VP8E_SET_CQ_LEVEL,
394                                         VP8E_SET_MAX_INTRA_BITRATE_PCT,
395                                         VP8E_SET_GF_CBR_BOOST_PCT,
396                                         VP8E_SET_SCREEN_CONTENT_MODE,
397                                         0 };
398 #endif
399
400 #if CONFIG_VP9_ENCODER
401 static const arg_def_t cpu_used_vp9 =
402     ARG_DEF(NULL, "cpu-used", 1, "CPU Used (-8..8)");
403 static const arg_def_t tile_cols =
404     ARG_DEF(NULL, "tile-columns", 1, "Number of tile columns to use, log2");
405 static const arg_def_t tile_rows =
406     ARG_DEF(NULL, "tile-rows", 1,
407             "Number of tile rows to use, log2 (set to 0 while threads > 1)");
408 static const arg_def_t lossless =
409     ARG_DEF(NULL, "lossless", 1, "Lossless mode (0: false (default), 1: true)");
410 static const arg_def_t frame_parallel_decoding = ARG_DEF(
411     NULL, "frame-parallel", 1, "Enable frame parallel decodability features");
412 static const arg_def_t aq_mode = ARG_DEF(
413     NULL, "aq-mode", 1,
414     "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, "
415     "3: cyclic refresh, 4: equator360)");
416 static const arg_def_t alt_ref_aq = ARG_DEF(NULL, "alt-ref-aq", 1,
417                                             "Special adaptive quantization for "
418                                             "the alternate reference frames.");
419 static const arg_def_t frame_periodic_boost =
420     ARG_DEF(NULL, "frame-boost", 1,
421             "Enable frame periodic boost (0: off (default), 1: on)");
422 static const arg_def_t max_inter_rate_pct =
423     ARG_DEF(NULL, "max-inter-rate", 1, "Max P-frame bitrate (pct)");
424 static const arg_def_t min_gf_interval = ARG_DEF(
425     NULL, "min-gf-interval", 1,
426     "min gf/arf frame interval (default 0, indicating in-built behavior)");
427 static const arg_def_t max_gf_interval = ARG_DEF(
428     NULL, "max-gf-interval", 1,
429     "max gf/arf frame interval (default 0, indicating in-built behavior)");
430
431 static const struct arg_enum_list color_space_enum[] = {
432   { "unknown", VPX_CS_UNKNOWN },
433   { "bt601", VPX_CS_BT_601 },
434   { "bt709", VPX_CS_BT_709 },
435   { "smpte170", VPX_CS_SMPTE_170 },
436   { "smpte240", VPX_CS_SMPTE_240 },
437   { "bt2020", VPX_CS_BT_2020 },
438   { "reserved", VPX_CS_RESERVED },
439   { "sRGB", VPX_CS_SRGB },
440   { NULL, 0 }
441 };
442
443 static const arg_def_t input_color_space =
444     ARG_DEF_ENUM(NULL, "color-space", 1,
445                  "The color space of input content:", color_space_enum);
446
447 #if CONFIG_VP9_HIGHBITDEPTH
448 static const struct arg_enum_list bitdepth_enum[] = {
449   { "8", VPX_BITS_8 }, { "10", VPX_BITS_10 }, { "12", VPX_BITS_12 }, { NULL, 0 }
450 };
451
452 static const arg_def_t bitdeptharg = ARG_DEF_ENUM(
453     "b", "bit-depth", 1,
454     "Bit depth for codec (8 for version <=1, 10 or 12 for version 2)",
455     bitdepth_enum);
456 static const arg_def_t inbitdeptharg =
457     ARG_DEF(NULL, "input-bit-depth", 1, "Bit depth of input");
458 #endif
459
460 static const struct arg_enum_list tune_content_enum[] = {
461   { "default", VP9E_CONTENT_DEFAULT },
462   { "screen", VP9E_CONTENT_SCREEN },
463   { NULL, 0 }
464 };
465
466 static const arg_def_t tune_content = ARG_DEF_ENUM(
467     NULL, "tune-content", 1, "Tune content type", tune_content_enum);
468
469 static const arg_def_t target_level = ARG_DEF(
470     NULL, "target-level", 1,
471     "Target level\n"
472     "                                        255: off (default)\n"
473     "                                          0: only keep level stats\n"
474     "                                          1: adaptively set alt-ref "
475     "distance and column tile limit based on picture size, and keep"
476     " level stats\n"
477     "                                         10: level 1.0  11: level 1.1  "
478     "...  62: level 6.2");
479
480 static const arg_def_t row_mt =
481     ARG_DEF(NULL, "row-mt", 1,
482             "Enable row based non-deterministic multi-threading in VP9");
483 #endif
484
485 #if CONFIG_VP9_ENCODER
486 static const arg_def_t *vp9_args[] = { &cpu_used_vp9,
487                                        &auto_altref,
488                                        &sharpness,
489                                        &static_thresh,
490                                        &tile_cols,
491                                        &tile_rows,
492                                        &arnr_maxframes,
493                                        &arnr_strength,
494                                        &arnr_type,
495                                        &tune_ssim,
496                                        &cq_level,
497                                        &max_intra_rate_pct,
498                                        &max_inter_rate_pct,
499                                        &gf_cbr_boost_pct,
500                                        &lossless,
501                                        &frame_parallel_decoding,
502                                        &aq_mode,
503                                        &alt_ref_aq,
504                                        &frame_periodic_boost,
505                                        &noise_sens,
506                                        &tune_content,
507                                        &input_color_space,
508                                        &min_gf_interval,
509                                        &max_gf_interval,
510                                        &target_level,
511                                        &row_mt,
512 #if CONFIG_VP9_HIGHBITDEPTH
513                                        &bitdeptharg,
514                                        &inbitdeptharg,
515 #endif  // CONFIG_VP9_HIGHBITDEPTH
516                                        NULL };
517 static const int vp9_arg_ctrl_map[] = { VP8E_SET_CPUUSED,
518                                         VP8E_SET_ENABLEAUTOALTREF,
519                                         VP8E_SET_SHARPNESS,
520                                         VP8E_SET_STATIC_THRESHOLD,
521                                         VP9E_SET_TILE_COLUMNS,
522                                         VP9E_SET_TILE_ROWS,
523                                         VP8E_SET_ARNR_MAXFRAMES,
524                                         VP8E_SET_ARNR_STRENGTH,
525                                         VP8E_SET_ARNR_TYPE,
526                                         VP8E_SET_TUNING,
527                                         VP8E_SET_CQ_LEVEL,
528                                         VP8E_SET_MAX_INTRA_BITRATE_PCT,
529                                         VP9E_SET_MAX_INTER_BITRATE_PCT,
530                                         VP9E_SET_GF_CBR_BOOST_PCT,
531                                         VP9E_SET_LOSSLESS,
532                                         VP9E_SET_FRAME_PARALLEL_DECODING,
533                                         VP9E_SET_AQ_MODE,
534                                         VP9E_SET_ALT_REF_AQ,
535                                         VP9E_SET_FRAME_PERIODIC_BOOST,
536                                         VP9E_SET_NOISE_SENSITIVITY,
537                                         VP9E_SET_TUNE_CONTENT,
538                                         VP9E_SET_COLOR_SPACE,
539                                         VP9E_SET_MIN_GF_INTERVAL,
540                                         VP9E_SET_MAX_GF_INTERVAL,
541                                         VP9E_SET_TARGET_LEVEL,
542                                         VP9E_SET_ROW_MT,
543                                         0 };
544 #endif
545
546 static const arg_def_t *no_args[] = { NULL };
547
548 void usage_exit(void) {
549   int i;
550   const int num_encoder = get_vpx_encoder_count();
551
552   fprintf(stderr, "Usage: %s <options> -o dst_filename src_filename \n",
553           exec_name);
554
555   fprintf(stderr, "\nOptions:\n");
556   arg_show_usage(stderr, main_args);
557   fprintf(stderr, "\nEncoder Global Options:\n");
558   arg_show_usage(stderr, global_args);
559   fprintf(stderr, "\nRate Control Options:\n");
560   arg_show_usage(stderr, rc_args);
561   fprintf(stderr, "\nTwopass Rate Control Options:\n");
562   arg_show_usage(stderr, rc_twopass_args);
563   fprintf(stderr, "\nKeyframe Placement Options:\n");
564   arg_show_usage(stderr, kf_args);
565 #if CONFIG_VP8_ENCODER
566   fprintf(stderr, "\nVP8 Specific Options:\n");
567   arg_show_usage(stderr, vp8_args);
568 #endif
569 #if CONFIG_VP9_ENCODER
570   fprintf(stderr, "\nVP9 Specific Options:\n");
571   arg_show_usage(stderr, vp9_args);
572 #endif
573   fprintf(stderr,
574           "\nStream timebase (--timebase):\n"
575           "  The desired precision of timestamps in the output, expressed\n"
576           "  in fractional seconds. Default is 1/1000.\n");
577   fprintf(stderr, "\nIncluded encoders:\n\n");
578
579   for (i = 0; i < num_encoder; ++i) {
580     const VpxInterface *const encoder = get_vpx_encoder_by_index(i);
581     const char *defstr = (i == (num_encoder - 1)) ? "(default)" : "";
582     fprintf(stderr, "    %-6s - %s %s\n", encoder->name,
583             vpx_codec_iface_name(encoder->codec_interface()), defstr);
584   }
585   fprintf(stderr, "\n        ");
586   fprintf(stderr, "Use --codec to switch to a non-default encoder.\n\n");
587
588   exit(EXIT_FAILURE);
589 }
590
591 #define mmin(a, b) ((a) < (b) ? (a) : (b))
592
593 #if CONFIG_VP9_HIGHBITDEPTH
594 static void find_mismatch_high(const vpx_image_t *const img1,
595                                const vpx_image_t *const img2, int yloc[4],
596                                int uloc[4], int vloc[4]) {
597   uint16_t *plane1, *plane2;
598   uint32_t stride1, stride2;
599   const uint32_t bsize = 64;
600   const uint32_t bsizey = bsize >> img1->y_chroma_shift;
601   const uint32_t bsizex = bsize >> img1->x_chroma_shift;
602   const uint32_t c_w =
603       (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
604   const uint32_t c_h =
605       (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
606   int match = 1;
607   uint32_t i, j;
608   yloc[0] = yloc[1] = yloc[2] = yloc[3] = -1;
609   plane1 = (uint16_t *)img1->planes[VPX_PLANE_Y];
610   plane2 = (uint16_t *)img2->planes[VPX_PLANE_Y];
611   stride1 = img1->stride[VPX_PLANE_Y] / 2;
612   stride2 = img2->stride[VPX_PLANE_Y] / 2;
613   for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
614     for (j = 0; match && j < img1->d_w; j += bsize) {
615       int k, l;
616       const int si = mmin(i + bsize, img1->d_h) - i;
617       const int sj = mmin(j + bsize, img1->d_w) - j;
618       for (k = 0; match && k < si; ++k) {
619         for (l = 0; match && l < sj; ++l) {
620           if (*(plane1 + (i + k) * stride1 + j + l) !=
621               *(plane2 + (i + k) * stride2 + j + l)) {
622             yloc[0] = i + k;
623             yloc[1] = j + l;
624             yloc[2] = *(plane1 + (i + k) * stride1 + j + l);
625             yloc[3] = *(plane2 + (i + k) * stride2 + j + l);
626             match = 0;
627             break;
628           }
629         }
630       }
631     }
632   }
633
634   uloc[0] = uloc[1] = uloc[2] = uloc[3] = -1;
635   plane1 = (uint16_t *)img1->planes[VPX_PLANE_U];
636   plane2 = (uint16_t *)img2->planes[VPX_PLANE_U];
637   stride1 = img1->stride[VPX_PLANE_U] / 2;
638   stride2 = img2->stride[VPX_PLANE_U] / 2;
639   for (i = 0, match = 1; match && i < c_h; i += bsizey) {
640     for (j = 0; match && j < c_w; j += bsizex) {
641       int k, l;
642       const int si = mmin(i + bsizey, c_h - i);
643       const int sj = mmin(j + bsizex, c_w - j);
644       for (k = 0; match && k < si; ++k) {
645         for (l = 0; match && l < sj; ++l) {
646           if (*(plane1 + (i + k) * stride1 + j + l) !=
647               *(plane2 + (i + k) * stride2 + j + l)) {
648             uloc[0] = i + k;
649             uloc[1] = j + l;
650             uloc[2] = *(plane1 + (i + k) * stride1 + j + l);
651             uloc[3] = *(plane2 + (i + k) * stride2 + j + l);
652             match = 0;
653             break;
654           }
655         }
656       }
657     }
658   }
659
660   vloc[0] = vloc[1] = vloc[2] = vloc[3] = -1;
661   plane1 = (uint16_t *)img1->planes[VPX_PLANE_V];
662   plane2 = (uint16_t *)img2->planes[VPX_PLANE_V];
663   stride1 = img1->stride[VPX_PLANE_V] / 2;
664   stride2 = img2->stride[VPX_PLANE_V] / 2;
665   for (i = 0, match = 1; match && i < c_h; i += bsizey) {
666     for (j = 0; match && j < c_w; j += bsizex) {
667       int k, l;
668       const int si = mmin(i + bsizey, c_h - i);
669       const int sj = mmin(j + bsizex, c_w - j);
670       for (k = 0; match && k < si; ++k) {
671         for (l = 0; match && l < sj; ++l) {
672           if (*(plane1 + (i + k) * stride1 + j + l) !=
673               *(plane2 + (i + k) * stride2 + j + l)) {
674             vloc[0] = i + k;
675             vloc[1] = j + l;
676             vloc[2] = *(plane1 + (i + k) * stride1 + j + l);
677             vloc[3] = *(plane2 + (i + k) * stride2 + j + l);
678             match = 0;
679             break;
680           }
681         }
682       }
683     }
684   }
685 }
686 #endif
687
688 static void find_mismatch(const vpx_image_t *const img1,
689                           const vpx_image_t *const img2, int yloc[4],
690                           int uloc[4], int vloc[4]) {
691   const uint32_t bsize = 64;
692   const uint32_t bsizey = bsize >> img1->y_chroma_shift;
693   const uint32_t bsizex = bsize >> img1->x_chroma_shift;
694   const uint32_t c_w =
695       (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
696   const uint32_t c_h =
697       (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
698   int match = 1;
699   uint32_t i, j;
700   yloc[0] = yloc[1] = yloc[2] = yloc[3] = -1;
701   for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
702     for (j = 0; match && j < img1->d_w; j += bsize) {
703       int k, l;
704       const int si = mmin(i + bsize, img1->d_h) - i;
705       const int sj = mmin(j + bsize, img1->d_w) - j;
706       for (k = 0; match && k < si; ++k) {
707         for (l = 0; match && l < sj; ++l) {
708           if (*(img1->planes[VPX_PLANE_Y] +
709                 (i + k) * img1->stride[VPX_PLANE_Y] + j + l) !=
710               *(img2->planes[VPX_PLANE_Y] +
711                 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) {
712             yloc[0] = i + k;
713             yloc[1] = j + l;
714             yloc[2] = *(img1->planes[VPX_PLANE_Y] +
715                         (i + k) * img1->stride[VPX_PLANE_Y] + j + l);
716             yloc[3] = *(img2->planes[VPX_PLANE_Y] +
717                         (i + k) * img2->stride[VPX_PLANE_Y] + j + l);
718             match = 0;
719             break;
720           }
721         }
722       }
723     }
724   }
725
726   uloc[0] = uloc[1] = uloc[2] = uloc[3] = -1;
727   for (i = 0, match = 1; match && i < c_h; i += bsizey) {
728     for (j = 0; match && j < c_w; j += bsizex) {
729       int k, l;
730       const int si = mmin(i + bsizey, c_h - i);
731       const int sj = mmin(j + bsizex, c_w - j);
732       for (k = 0; match && k < si; ++k) {
733         for (l = 0; match && l < sj; ++l) {
734           if (*(img1->planes[VPX_PLANE_U] +
735                 (i + k) * img1->stride[VPX_PLANE_U] + j + l) !=
736               *(img2->planes[VPX_PLANE_U] +
737                 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) {
738             uloc[0] = i + k;
739             uloc[1] = j + l;
740             uloc[2] = *(img1->planes[VPX_PLANE_U] +
741                         (i + k) * img1->stride[VPX_PLANE_U] + j + l);
742             uloc[3] = *(img2->planes[VPX_PLANE_U] +
743                         (i + k) * img2->stride[VPX_PLANE_U] + j + l);
744             match = 0;
745             break;
746           }
747         }
748       }
749     }
750   }
751   vloc[0] = vloc[1] = vloc[2] = vloc[3] = -1;
752   for (i = 0, match = 1; match && i < c_h; i += bsizey) {
753     for (j = 0; match && j < c_w; j += bsizex) {
754       int k, l;
755       const int si = mmin(i + bsizey, c_h - i);
756       const int sj = mmin(j + bsizex, c_w - j);
757       for (k = 0; match && k < si; ++k) {
758         for (l = 0; match && l < sj; ++l) {
759           if (*(img1->planes[VPX_PLANE_V] +
760                 (i + k) * img1->stride[VPX_PLANE_V] + j + l) !=
761               *(img2->planes[VPX_PLANE_V] +
762                 (i + k) * img2->stride[VPX_PLANE_V] + j + l)) {
763             vloc[0] = i + k;
764             vloc[1] = j + l;
765             vloc[2] = *(img1->planes[VPX_PLANE_V] +
766                         (i + k) * img1->stride[VPX_PLANE_V] + j + l);
767             vloc[3] = *(img2->planes[VPX_PLANE_V] +
768                         (i + k) * img2->stride[VPX_PLANE_V] + j + l);
769             match = 0;
770             break;
771           }
772         }
773       }
774     }
775   }
776 }
777
778 static int compare_img(const vpx_image_t *const img1,
779                        const vpx_image_t *const img2) {
780   uint32_t l_w = img1->d_w;
781   uint32_t c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
782   const uint32_t c_h =
783       (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
784   uint32_t i;
785   int match = 1;
786
787   match &= (img1->fmt == img2->fmt);
788   match &= (img1->d_w == img2->d_w);
789   match &= (img1->d_h == img2->d_h);
790 #if CONFIG_VP9_HIGHBITDEPTH
791   if (img1->fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
792     l_w *= 2;
793     c_w *= 2;
794   }
795 #endif
796
797   for (i = 0; i < img1->d_h; ++i)
798     match &= (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y],
799                      img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
800                      l_w) == 0);
801
802   for (i = 0; i < c_h; ++i)
803     match &= (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
804                      img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
805                      c_w) == 0);
806
807   for (i = 0; i < c_h; ++i)
808     match &= (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
809                      img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
810                      c_w) == 0);
811
812   return match;
813 }
814
815 #define NELEMENTS(x) (sizeof(x) / sizeof(x[0]))
816 #if CONFIG_VP9_ENCODER
817 #define ARG_CTRL_CNT_MAX NELEMENTS(vp9_arg_ctrl_map)
818 #else
819 #define ARG_CTRL_CNT_MAX NELEMENTS(vp8_arg_ctrl_map)
820 #endif
821
822 #if !CONFIG_WEBM_IO
823 typedef int stereo_format_t;
824 struct WebmOutputContext {
825   int debug;
826 };
827 #endif
828
829 /* Per-stream configuration */
830 struct stream_config {
831   struct vpx_codec_enc_cfg cfg;
832   const char *out_fn;
833   const char *stats_fn;
834 #if CONFIG_FP_MB_STATS
835   const char *fpmb_stats_fn;
836 #endif
837   stereo_format_t stereo_fmt;
838   int arg_ctrls[ARG_CTRL_CNT_MAX][2];
839   int arg_ctrl_cnt;
840   int write_webm;
841 #if CONFIG_VP9_HIGHBITDEPTH
842   // whether to use 16bit internal buffers
843   int use_16bit_internal;
844 #endif
845 };
846
847 struct stream_state {
848   int index;
849   struct stream_state *next;
850   struct stream_config config;
851   FILE *file;
852   struct rate_hist *rate_hist;
853   struct WebmOutputContext webm_ctx;
854   uint64_t psnr_sse_total;
855   uint64_t psnr_samples_total;
856   double psnr_totals[4];
857   int psnr_count;
858   int counts[64];
859   vpx_codec_ctx_t encoder;
860   unsigned int frames_out;
861   uint64_t cx_time;
862   size_t nbytes;
863   stats_io_t stats;
864 #if CONFIG_FP_MB_STATS
865   stats_io_t fpmb_stats;
866 #endif
867   struct vpx_image *img;
868   vpx_codec_ctx_t decoder;
869   int mismatch_seen;
870 };
871
872 static void validate_positive_rational(const char *msg,
873                                        struct vpx_rational *rat) {
874   if (rat->den < 0) {
875     rat->num *= -1;
876     rat->den *= -1;
877   }
878
879   if (rat->num < 0) die("Error: %s must be positive\n", msg);
880
881   if (!rat->den) die("Error: %s has zero denominator\n", msg);
882 }
883
884 static void parse_global_config(struct VpxEncoderConfig *global, char **argv) {
885   char **argi, **argj;
886   struct arg arg;
887   const int num_encoder = get_vpx_encoder_count();
888
889   if (num_encoder < 1) die("Error: no valid encoder available\n");
890
891   /* Initialize default parameters */
892   memset(global, 0, sizeof(*global));
893   global->codec = get_vpx_encoder_by_index(num_encoder - 1);
894   global->passes = 0;
895   global->color_type = I420;
896   /* Assign default deadline to good quality */
897   global->deadline = VPX_DL_GOOD_QUALITY;
898
899   for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
900     arg.argv_step = 1;
901
902     if (arg_match(&arg, &codecarg, argi)) {
903       global->codec = get_vpx_encoder_by_name(arg.val);
904       if (!global->codec)
905         die("Error: Unrecognized argument (%s) to --codec\n", arg.val);
906     } else if (arg_match(&arg, &passes, argi)) {
907       global->passes = arg_parse_uint(&arg);
908
909       if (global->passes < 1 || global->passes > 2)
910         die("Error: Invalid number of passes (%d)\n", global->passes);
911     } else if (arg_match(&arg, &pass_arg, argi)) {
912       global->pass = arg_parse_uint(&arg);
913
914       if (global->pass < 1 || global->pass > 2)
915         die("Error: Invalid pass selected (%d)\n", global->pass);
916     } else if (arg_match(&arg, &usage, argi))
917       global->usage = arg_parse_uint(&arg);
918     else if (arg_match(&arg, &deadline, argi))
919       global->deadline = arg_parse_uint(&arg);
920     else if (arg_match(&arg, &best_dl, argi))
921       global->deadline = VPX_DL_BEST_QUALITY;
922     else if (arg_match(&arg, &good_dl, argi))
923       global->deadline = VPX_DL_GOOD_QUALITY;
924     else if (arg_match(&arg, &rt_dl, argi))
925       global->deadline = VPX_DL_REALTIME;
926     else if (arg_match(&arg, &use_yv12, argi))
927       global->color_type = YV12;
928     else if (arg_match(&arg, &use_i420, argi))
929       global->color_type = I420;
930     else if (arg_match(&arg, &use_i422, argi))
931       global->color_type = I422;
932     else if (arg_match(&arg, &use_i444, argi))
933       global->color_type = I444;
934     else if (arg_match(&arg, &use_i440, argi))
935       global->color_type = I440;
936     else if (arg_match(&arg, &quietarg, argi))
937       global->quiet = 1;
938     else if (arg_match(&arg, &verbosearg, argi))
939       global->verbose = 1;
940     else if (arg_match(&arg, &limit, argi))
941       global->limit = arg_parse_uint(&arg);
942     else if (arg_match(&arg, &skip, argi))
943       global->skip_frames = arg_parse_uint(&arg);
944     else if (arg_match(&arg, &psnrarg, argi))
945       global->show_psnr = 1;
946     else if (arg_match(&arg, &recontest, argi))
947       global->test_decode = arg_parse_enum_or_int(&arg);
948     else if (arg_match(&arg, &framerate, argi)) {
949       global->framerate = arg_parse_rational(&arg);
950       validate_positive_rational(arg.name, &global->framerate);
951       global->have_framerate = 1;
952     } else if (arg_match(&arg, &out_part, argi))
953       global->out_part = 1;
954     else if (arg_match(&arg, &debugmode, argi))
955       global->debug = 1;
956     else if (arg_match(&arg, &q_hist_n, argi))
957       global->show_q_hist_buckets = arg_parse_uint(&arg);
958     else if (arg_match(&arg, &rate_hist_n, argi))
959       global->show_rate_hist_buckets = arg_parse_uint(&arg);
960     else if (arg_match(&arg, &disable_warnings, argi))
961       global->disable_warnings = 1;
962     else if (arg_match(&arg, &disable_warning_prompt, argi))
963       global->disable_warning_prompt = 1;
964     else
965       argj++;
966   }
967
968   if (global->pass) {
969     /* DWIM: Assume the user meant passes=2 if pass=2 is specified */
970     if (global->pass > global->passes) {
971       warn("Assuming --pass=%d implies --passes=%d\n", global->pass,
972            global->pass);
973       global->passes = global->pass;
974     }
975   }
976   /* Validate global config */
977   if (global->passes == 0) {
978 #if CONFIG_VP9_ENCODER
979     // Make default VP9 passes = 2 until there is a better quality 1-pass
980     // encoder
981     if (global->codec != NULL && global->codec->name != NULL)
982       global->passes = (strcmp(global->codec->name, "vp9") == 0 &&
983                         global->deadline != VPX_DL_REALTIME)
984                            ? 2
985                            : 1;
986 #else
987     global->passes = 1;
988 #endif
989   }
990
991   if (global->deadline == VPX_DL_REALTIME && global->passes > 1) {
992     warn("Enforcing one-pass encoding in realtime mode\n");
993     global->passes = 1;
994   }
995 }
996
997 static void open_input_file(struct VpxInputContext *input) {
998   /* Parse certain options from the input file, if possible */
999   input->file = strcmp(input->filename, "-") ? fopen(input->filename, "rb")
1000                                              : set_binary_mode(stdin);
1001
1002   if (!input->file) fatal("Failed to open input file");
1003
1004   if (!fseeko(input->file, 0, SEEK_END)) {
1005     /* Input file is seekable. Figure out how long it is, so we can get
1006      * progress info.
1007      */
1008     input->length = ftello(input->file);
1009     rewind(input->file);
1010   }
1011
1012   /* Default to 1:1 pixel aspect ratio. */
1013   input->pixel_aspect_ratio.numerator = 1;
1014   input->pixel_aspect_ratio.denominator = 1;
1015
1016   /* For RAW input sources, these bytes will applied on the first frame
1017    *  in read_frame().
1018    */
1019   input->detect.buf_read = fread(input->detect.buf, 1, 4, input->file);
1020   input->detect.position = 0;
1021
1022   if (input->detect.buf_read == 4 && file_is_y4m(input->detect.buf)) {
1023     if (y4m_input_open(&input->y4m, input->file, input->detect.buf, 4,
1024                        input->only_i420) >= 0) {
1025       input->file_type = FILE_TYPE_Y4M;
1026       input->width = input->y4m.pic_w;
1027       input->height = input->y4m.pic_h;
1028       input->pixel_aspect_ratio.numerator = input->y4m.par_n;
1029       input->pixel_aspect_ratio.denominator = input->y4m.par_d;
1030       input->framerate.numerator = input->y4m.fps_n;
1031       input->framerate.denominator = input->y4m.fps_d;
1032       input->fmt = input->y4m.vpx_fmt;
1033       input->bit_depth = input->y4m.bit_depth;
1034     } else
1035       fatal("Unsupported Y4M stream.");
1036   } else if (input->detect.buf_read == 4 && fourcc_is_ivf(input->detect.buf)) {
1037     fatal("IVF is not supported as input.");
1038   } else {
1039     input->file_type = FILE_TYPE_RAW;
1040   }
1041 }
1042
1043 static void close_input_file(struct VpxInputContext *input) {
1044   fclose(input->file);
1045   if (input->file_type == FILE_TYPE_Y4M) y4m_input_close(&input->y4m);
1046 }
1047
1048 static struct stream_state *new_stream(struct VpxEncoderConfig *global,
1049                                        struct stream_state *prev) {
1050   struct stream_state *stream;
1051
1052   stream = calloc(1, sizeof(*stream));
1053   if (stream == NULL) {
1054     fatal("Failed to allocate new stream.");
1055   }
1056
1057   if (prev) {
1058     memcpy(stream, prev, sizeof(*stream));
1059     stream->index++;
1060     prev->next = stream;
1061   } else {
1062     vpx_codec_err_t res;
1063
1064     /* Populate encoder configuration */
1065     res = vpx_codec_enc_config_default(global->codec->codec_interface(),
1066                                        &stream->config.cfg, global->usage);
1067     if (res) fatal("Failed to get config: %s\n", vpx_codec_err_to_string(res));
1068
1069     /* Change the default timebase to a high enough value so that the
1070      * encoder will always create strictly increasing timestamps.
1071      */
1072     stream->config.cfg.g_timebase.den = 1000;
1073
1074     /* Never use the library's default resolution, require it be parsed
1075      * from the file or set on the command line.
1076      */
1077     stream->config.cfg.g_w = 0;
1078     stream->config.cfg.g_h = 0;
1079
1080     /* Initialize remaining stream parameters */
1081     stream->config.write_webm = 1;
1082 #if CONFIG_WEBM_IO
1083     stream->config.stereo_fmt = STEREO_FORMAT_MONO;
1084     stream->webm_ctx.last_pts_ns = -1;
1085     stream->webm_ctx.writer = NULL;
1086     stream->webm_ctx.segment = NULL;
1087 #endif
1088
1089     /* Allows removal of the application version from the EBML tags */
1090     stream->webm_ctx.debug = global->debug;
1091
1092     /* Default lag_in_frames is 0 in realtime mode CBR mode*/
1093     if (global->deadline == VPX_DL_REALTIME &&
1094         stream->config.cfg.rc_end_usage == 1)
1095       stream->config.cfg.g_lag_in_frames = 0;
1096   }
1097
1098   /* Output files must be specified for each stream */
1099   stream->config.out_fn = NULL;
1100
1101   stream->next = NULL;
1102   return stream;
1103 }
1104
1105 static int parse_stream_params(struct VpxEncoderConfig *global,
1106                                struct stream_state *stream, char **argv) {
1107   char **argi, **argj;
1108   struct arg arg;
1109   static const arg_def_t **ctrl_args = no_args;
1110   static const int *ctrl_args_map = NULL;
1111   struct stream_config *config = &stream->config;
1112   int eos_mark_found = 0;
1113 #if CONFIG_VP9_HIGHBITDEPTH
1114   int test_16bit_internal = 0;
1115 #endif
1116
1117   // Handle codec specific options
1118   if (0) {
1119 #if CONFIG_VP8_ENCODER
1120   } else if (strcmp(global->codec->name, "vp8") == 0) {
1121     ctrl_args = vp8_args;
1122     ctrl_args_map = vp8_arg_ctrl_map;
1123 #endif
1124 #if CONFIG_VP9_ENCODER
1125   } else if (strcmp(global->codec->name, "vp9") == 0) {
1126     ctrl_args = vp9_args;
1127     ctrl_args_map = vp9_arg_ctrl_map;
1128 #endif
1129   }
1130
1131   for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
1132     arg.argv_step = 1;
1133
1134     /* Once we've found an end-of-stream marker (--) we want to continue
1135      * shifting arguments but not consuming them.
1136      */
1137     if (eos_mark_found) {
1138       argj++;
1139       continue;
1140     } else if (!strcmp(*argj, "--")) {
1141       eos_mark_found = 1;
1142       continue;
1143     }
1144
1145     if (arg_match(&arg, &outputfile, argi)) {
1146       config->out_fn = arg.val;
1147     } else if (arg_match(&arg, &fpf_name, argi)) {
1148       config->stats_fn = arg.val;
1149 #if CONFIG_FP_MB_STATS
1150     } else if (arg_match(&arg, &fpmbf_name, argi)) {
1151       config->fpmb_stats_fn = arg.val;
1152 #endif
1153     } else if (arg_match(&arg, &use_webm, argi)) {
1154 #if CONFIG_WEBM_IO
1155       config->write_webm = 1;
1156 #else
1157       die("Error: --webm specified but webm is disabled.");
1158 #endif
1159     } else if (arg_match(&arg, &use_ivf, argi)) {
1160       config->write_webm = 0;
1161     } else if (arg_match(&arg, &threads, argi)) {
1162       config->cfg.g_threads = arg_parse_uint(&arg);
1163     } else if (arg_match(&arg, &profile, argi)) {
1164       config->cfg.g_profile = arg_parse_uint(&arg);
1165     } else if (arg_match(&arg, &width, argi)) {
1166       config->cfg.g_w = arg_parse_uint(&arg);
1167     } else if (arg_match(&arg, &height, argi)) {
1168       config->cfg.g_h = arg_parse_uint(&arg);
1169 #if CONFIG_VP9_HIGHBITDEPTH
1170     } else if (arg_match(&arg, &bitdeptharg, argi)) {
1171       config->cfg.g_bit_depth = arg_parse_enum_or_int(&arg);
1172     } else if (arg_match(&arg, &inbitdeptharg, argi)) {
1173       config->cfg.g_input_bit_depth = arg_parse_uint(&arg);
1174 #endif
1175 #if CONFIG_WEBM_IO
1176     } else if (arg_match(&arg, &stereo_mode, argi)) {
1177       config->stereo_fmt = arg_parse_enum_or_int(&arg);
1178 #endif
1179     } else if (arg_match(&arg, &timebase, argi)) {
1180       config->cfg.g_timebase = arg_parse_rational(&arg);
1181       validate_positive_rational(arg.name, &config->cfg.g_timebase);
1182     } else if (arg_match(&arg, &error_resilient, argi)) {
1183       config->cfg.g_error_resilient = arg_parse_uint(&arg);
1184     } else if (arg_match(&arg, &end_usage, argi)) {
1185       config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg);
1186     } else if (arg_match(&arg, &lag_in_frames, argi)) {
1187       config->cfg.g_lag_in_frames = arg_parse_uint(&arg);
1188       if (global->deadline == VPX_DL_REALTIME &&
1189           config->cfg.rc_end_usage == VPX_CBR &&
1190           config->cfg.g_lag_in_frames != 0) {
1191         warn("non-zero %s option ignored in realtime CBR mode.\n", arg.name);
1192         config->cfg.g_lag_in_frames = 0;
1193       }
1194     } else if (arg_match(&arg, &dropframe_thresh, argi)) {
1195       config->cfg.rc_dropframe_thresh = arg_parse_uint(&arg);
1196     } else if (arg_match(&arg, &resize_allowed, argi)) {
1197       config->cfg.rc_resize_allowed = arg_parse_uint(&arg);
1198     } else if (arg_match(&arg, &resize_width, argi)) {
1199       config->cfg.rc_scaled_width = arg_parse_uint(&arg);
1200     } else if (arg_match(&arg, &resize_height, argi)) {
1201       config->cfg.rc_scaled_height = arg_parse_uint(&arg);
1202     } else if (arg_match(&arg, &resize_up_thresh, argi)) {
1203       config->cfg.rc_resize_up_thresh = arg_parse_uint(&arg);
1204     } else if (arg_match(&arg, &resize_down_thresh, argi)) {
1205       config->cfg.rc_resize_down_thresh = arg_parse_uint(&arg);
1206     } else if (arg_match(&arg, &end_usage, argi)) {
1207       config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg);
1208     } else if (arg_match(&arg, &target_bitrate, argi)) {
1209       config->cfg.rc_target_bitrate = arg_parse_uint(&arg);
1210     } else if (arg_match(&arg, &min_quantizer, argi)) {
1211       config->cfg.rc_min_quantizer = arg_parse_uint(&arg);
1212     } else if (arg_match(&arg, &max_quantizer, argi)) {
1213       config->cfg.rc_max_quantizer = arg_parse_uint(&arg);
1214     } else if (arg_match(&arg, &undershoot_pct, argi)) {
1215       config->cfg.rc_undershoot_pct = arg_parse_uint(&arg);
1216     } else if (arg_match(&arg, &overshoot_pct, argi)) {
1217       config->cfg.rc_overshoot_pct = arg_parse_uint(&arg);
1218     } else if (arg_match(&arg, &buf_sz, argi)) {
1219       config->cfg.rc_buf_sz = arg_parse_uint(&arg);
1220     } else if (arg_match(&arg, &buf_initial_sz, argi)) {
1221       config->cfg.rc_buf_initial_sz = arg_parse_uint(&arg);
1222     } else if (arg_match(&arg, &buf_optimal_sz, argi)) {
1223       config->cfg.rc_buf_optimal_sz = arg_parse_uint(&arg);
1224     } else if (arg_match(&arg, &bias_pct, argi)) {
1225       config->cfg.rc_2pass_vbr_bias_pct = arg_parse_uint(&arg);
1226       if (global->passes < 2)
1227         warn("option %s ignored in one-pass mode.\n", arg.name);
1228     } else if (arg_match(&arg, &minsection_pct, argi)) {
1229       config->cfg.rc_2pass_vbr_minsection_pct = arg_parse_uint(&arg);
1230
1231       if (global->passes < 2)
1232         warn("option %s ignored in one-pass mode.\n", arg.name);
1233     } else if (arg_match(&arg, &maxsection_pct, argi)) {
1234       config->cfg.rc_2pass_vbr_maxsection_pct = arg_parse_uint(&arg);
1235
1236       if (global->passes < 2)
1237         warn("option %s ignored in one-pass mode.\n", arg.name);
1238     } else if (arg_match(&arg, &kf_min_dist, argi)) {
1239       config->cfg.kf_min_dist = arg_parse_uint(&arg);
1240     } else if (arg_match(&arg, &kf_max_dist, argi)) {
1241       config->cfg.kf_max_dist = arg_parse_uint(&arg);
1242     } else if (arg_match(&arg, &kf_disabled, argi)) {
1243       config->cfg.kf_mode = VPX_KF_DISABLED;
1244 #if CONFIG_VP9_HIGHBITDEPTH
1245     } else if (arg_match(&arg, &test16bitinternalarg, argi)) {
1246       if (strcmp(global->codec->name, "vp9") == 0) {
1247         test_16bit_internal = 1;
1248       }
1249 #endif
1250     } else {
1251       int i, match = 0;
1252       for (i = 0; ctrl_args[i]; i++) {
1253         if (arg_match(&arg, ctrl_args[i], argi)) {
1254           int j;
1255           match = 1;
1256
1257           /* Point either to the next free element or the first
1258           * instance of this control.
1259           */
1260           for (j = 0; j < config->arg_ctrl_cnt; j++)
1261             if (ctrl_args_map != NULL &&
1262                 config->arg_ctrls[j][0] == ctrl_args_map[i])
1263               break;
1264
1265           /* Update/insert */
1266           assert(j < (int)ARG_CTRL_CNT_MAX);
1267           if (ctrl_args_map != NULL && j < (int)ARG_CTRL_CNT_MAX) {
1268             config->arg_ctrls[j][0] = ctrl_args_map[i];
1269             config->arg_ctrls[j][1] = arg_parse_enum_or_int(&arg);
1270             if (j == config->arg_ctrl_cnt) config->arg_ctrl_cnt++;
1271           }
1272         }
1273       }
1274       if (!match) argj++;
1275     }
1276   }
1277 #if CONFIG_VP9_HIGHBITDEPTH
1278   if (strcmp(global->codec->name, "vp9") == 0) {
1279     config->use_16bit_internal =
1280         test_16bit_internal | (config->cfg.g_profile > 1);
1281   }
1282 #endif
1283   return eos_mark_found;
1284 }
1285
1286 #define FOREACH_STREAM(func)                                \
1287   do {                                                      \
1288     struct stream_state *stream;                            \
1289     for (stream = streams; stream; stream = stream->next) { \
1290       func;                                                 \
1291     }                                                       \
1292   } while (0)
1293
1294 static void validate_stream_config(const struct stream_state *stream,
1295                                    const struct VpxEncoderConfig *global) {
1296   const struct stream_state *streami;
1297   (void)global;
1298
1299   if (!stream->config.cfg.g_w || !stream->config.cfg.g_h)
1300     fatal(
1301         "Stream %d: Specify stream dimensions with --width (-w) "
1302         " and --height (-h)",
1303         stream->index);
1304
1305   // Check that the codec bit depth is greater than the input bit depth.
1306   if (stream->config.cfg.g_input_bit_depth >
1307       (unsigned int)stream->config.cfg.g_bit_depth) {
1308     fatal("Stream %d: codec bit depth (%d) less than input bit depth (%d)",
1309           stream->index, (int)stream->config.cfg.g_bit_depth,
1310           stream->config.cfg.g_input_bit_depth);
1311   }
1312
1313   for (streami = stream; streami; streami = streami->next) {
1314     /* All streams require output files */
1315     if (!streami->config.out_fn)
1316       fatal("Stream %d: Output file is required (specify with -o)",
1317             streami->index);
1318
1319     /* Check for two streams outputting to the same file */
1320     if (streami != stream) {
1321       const char *a = stream->config.out_fn;
1322       const char *b = streami->config.out_fn;
1323       if (!strcmp(a, b) && strcmp(a, "/dev/null") && strcmp(a, ":nul"))
1324         fatal("Stream %d: duplicate output file (from stream %d)",
1325               streami->index, stream->index);
1326     }
1327
1328     /* Check for two streams sharing a stats file. */
1329     if (streami != stream) {
1330       const char *a = stream->config.stats_fn;
1331       const char *b = streami->config.stats_fn;
1332       if (a && b && !strcmp(a, b))
1333         fatal("Stream %d: duplicate stats file (from stream %d)",
1334               streami->index, stream->index);
1335     }
1336
1337 #if CONFIG_FP_MB_STATS
1338     /* Check for two streams sharing a mb stats file. */
1339     if (streami != stream) {
1340       const char *a = stream->config.fpmb_stats_fn;
1341       const char *b = streami->config.fpmb_stats_fn;
1342       if (a && b && !strcmp(a, b))
1343         fatal("Stream %d: duplicate mb stats file (from stream %d)",
1344               streami->index, stream->index);
1345     }
1346 #endif
1347   }
1348 }
1349
1350 static void set_stream_dimensions(struct stream_state *stream, unsigned int w,
1351                                   unsigned int h) {
1352   if (!stream->config.cfg.g_w) {
1353     if (!stream->config.cfg.g_h)
1354       stream->config.cfg.g_w = w;
1355     else
1356       stream->config.cfg.g_w = w * stream->config.cfg.g_h / h;
1357   }
1358   if (!stream->config.cfg.g_h) {
1359     stream->config.cfg.g_h = h * stream->config.cfg.g_w / w;
1360   }
1361 }
1362
1363 static const char *file_type_to_string(enum VideoFileType t) {
1364   switch (t) {
1365     case FILE_TYPE_RAW: return "RAW";
1366     case FILE_TYPE_Y4M: return "Y4M";
1367     default: return "Other";
1368   }
1369 }
1370
1371 static const char *image_format_to_string(vpx_img_fmt_t f) {
1372   switch (f) {
1373     case VPX_IMG_FMT_I420: return "I420";
1374     case VPX_IMG_FMT_I422: return "I422";
1375     case VPX_IMG_FMT_I444: return "I444";
1376     case VPX_IMG_FMT_I440: return "I440";
1377     case VPX_IMG_FMT_YV12: return "YV12";
1378     case VPX_IMG_FMT_I42016: return "I42016";
1379     case VPX_IMG_FMT_I42216: return "I42216";
1380     case VPX_IMG_FMT_I44416: return "I44416";
1381     case VPX_IMG_FMT_I44016: return "I44016";
1382     default: return "Other";
1383   }
1384 }
1385
1386 static void show_stream_config(struct stream_state *stream,
1387                                struct VpxEncoderConfig *global,
1388                                struct VpxInputContext *input) {
1389 #define SHOW(field) \
1390   fprintf(stderr, "    %-28s = %d\n", #field, stream->config.cfg.field)
1391
1392   if (stream->index == 0) {
1393     fprintf(stderr, "Codec: %s\n",
1394             vpx_codec_iface_name(global->codec->codec_interface()));
1395     fprintf(stderr, "Source file: %s File Type: %s Format: %s\n",
1396             input->filename, file_type_to_string(input->file_type),
1397             image_format_to_string(input->fmt));
1398   }
1399   if (stream->next || stream->index)
1400     fprintf(stderr, "\nStream Index: %d\n", stream->index);
1401   fprintf(stderr, "Destination file: %s\n", stream->config.out_fn);
1402   fprintf(stderr, "Encoder parameters:\n");
1403
1404   SHOW(g_usage);
1405   SHOW(g_threads);
1406   SHOW(g_profile);
1407   SHOW(g_w);
1408   SHOW(g_h);
1409   SHOW(g_bit_depth);
1410   SHOW(g_input_bit_depth);
1411   SHOW(g_timebase.num);
1412   SHOW(g_timebase.den);
1413   SHOW(g_error_resilient);
1414   SHOW(g_pass);
1415   SHOW(g_lag_in_frames);
1416   SHOW(rc_dropframe_thresh);
1417   SHOW(rc_resize_allowed);
1418   SHOW(rc_scaled_width);
1419   SHOW(rc_scaled_height);
1420   SHOW(rc_resize_up_thresh);
1421   SHOW(rc_resize_down_thresh);
1422   SHOW(rc_end_usage);
1423   SHOW(rc_target_bitrate);
1424   SHOW(rc_min_quantizer);
1425   SHOW(rc_max_quantizer);
1426   SHOW(rc_undershoot_pct);
1427   SHOW(rc_overshoot_pct);
1428   SHOW(rc_buf_sz);
1429   SHOW(rc_buf_initial_sz);
1430   SHOW(rc_buf_optimal_sz);
1431   SHOW(rc_2pass_vbr_bias_pct);
1432   SHOW(rc_2pass_vbr_minsection_pct);
1433   SHOW(rc_2pass_vbr_maxsection_pct);
1434   SHOW(kf_mode);
1435   SHOW(kf_min_dist);
1436   SHOW(kf_max_dist);
1437 }
1438
1439 static void open_output_file(struct stream_state *stream,
1440                              struct VpxEncoderConfig *global,
1441                              const struct VpxRational *pixel_aspect_ratio) {
1442   const char *fn = stream->config.out_fn;
1443   const struct vpx_codec_enc_cfg *const cfg = &stream->config.cfg;
1444
1445   if (cfg->g_pass == VPX_RC_FIRST_PASS) return;
1446
1447   stream->file = strcmp(fn, "-") ? fopen(fn, "wb") : set_binary_mode(stdout);
1448
1449   if (!stream->file) fatal("Failed to open output file");
1450
1451   if (stream->config.write_webm && fseek(stream->file, 0, SEEK_CUR))
1452     fatal("WebM output to pipes not supported.");
1453
1454 #if CONFIG_WEBM_IO
1455   if (stream->config.write_webm) {
1456     stream->webm_ctx.stream = stream->file;
1457     write_webm_file_header(&stream->webm_ctx, cfg, stream->config.stereo_fmt,
1458                            global->codec->fourcc, pixel_aspect_ratio);
1459   }
1460 #else
1461   (void)pixel_aspect_ratio;
1462 #endif
1463
1464   if (!stream->config.write_webm) {
1465     ivf_write_file_header(stream->file, cfg, global->codec->fourcc, 0);
1466   }
1467 }
1468
1469 static void close_output_file(struct stream_state *stream,
1470                               unsigned int fourcc) {
1471   const struct vpx_codec_enc_cfg *const cfg = &stream->config.cfg;
1472
1473   if (cfg->g_pass == VPX_RC_FIRST_PASS) return;
1474
1475 #if CONFIG_WEBM_IO
1476   if (stream->config.write_webm) {
1477     write_webm_file_footer(&stream->webm_ctx);
1478   }
1479 #endif
1480
1481   if (!stream->config.write_webm) {
1482     if (!fseek(stream->file, 0, SEEK_SET))
1483       ivf_write_file_header(stream->file, &stream->config.cfg, fourcc,
1484                             stream->frames_out);
1485   }
1486
1487   fclose(stream->file);
1488 }
1489
1490 static void setup_pass(struct stream_state *stream,
1491                        struct VpxEncoderConfig *global, int pass) {
1492   if (stream->config.stats_fn) {
1493     if (!stats_open_file(&stream->stats, stream->config.stats_fn, pass))
1494       fatal("Failed to open statistics store");
1495   } else {
1496     if (!stats_open_mem(&stream->stats, pass))
1497       fatal("Failed to open statistics store");
1498   }
1499
1500 #if CONFIG_FP_MB_STATS
1501   if (stream->config.fpmb_stats_fn) {
1502     if (!stats_open_file(&stream->fpmb_stats, stream->config.fpmb_stats_fn,
1503                          pass))
1504       fatal("Failed to open mb statistics store");
1505   } else {
1506     if (!stats_open_mem(&stream->fpmb_stats, pass))
1507       fatal("Failed to open mb statistics store");
1508   }
1509 #endif
1510
1511   stream->config.cfg.g_pass = global->passes == 2
1512                                   ? pass ? VPX_RC_LAST_PASS : VPX_RC_FIRST_PASS
1513                                   : VPX_RC_ONE_PASS;
1514   if (pass) {
1515     stream->config.cfg.rc_twopass_stats_in = stats_get(&stream->stats);
1516 #if CONFIG_FP_MB_STATS
1517     stream->config.cfg.rc_firstpass_mb_stats_in =
1518         stats_get(&stream->fpmb_stats);
1519 #endif
1520   }
1521
1522   stream->cx_time = 0;
1523   stream->nbytes = 0;
1524   stream->frames_out = 0;
1525 }
1526
1527 static void initialize_encoder(struct stream_state *stream,
1528                                struct VpxEncoderConfig *global) {
1529   int i;
1530   int flags = 0;
1531
1532   flags |= global->show_psnr ? VPX_CODEC_USE_PSNR : 0;
1533   flags |= global->out_part ? VPX_CODEC_USE_OUTPUT_PARTITION : 0;
1534 #if CONFIG_VP9_HIGHBITDEPTH
1535   flags |= stream->config.use_16bit_internal ? VPX_CODEC_USE_HIGHBITDEPTH : 0;
1536 #endif
1537
1538   /* Construct Encoder Context */
1539   vpx_codec_enc_init(&stream->encoder, global->codec->codec_interface(),
1540                      &stream->config.cfg, flags);
1541   ctx_exit_on_error(&stream->encoder, "Failed to initialize encoder");
1542
1543   /* Note that we bypass the vpx_codec_control wrapper macro because
1544    * we're being clever to store the control IDs in an array. Real
1545    * applications will want to make use of the enumerations directly
1546    */
1547   for (i = 0; i < stream->config.arg_ctrl_cnt; i++) {
1548     int ctrl = stream->config.arg_ctrls[i][0];
1549     int value = stream->config.arg_ctrls[i][1];
1550     if (vpx_codec_control_(&stream->encoder, ctrl, value))
1551       fprintf(stderr, "Error: Tried to set control %d = %d\n", ctrl, value);
1552
1553     ctx_exit_on_error(&stream->encoder, "Failed to control codec");
1554   }
1555
1556 #if CONFIG_DECODERS
1557   if (global->test_decode != TEST_DECODE_OFF) {
1558     const VpxInterface *decoder = get_vpx_decoder_by_name(global->codec->name);
1559     vpx_codec_dec_init(&stream->decoder, decoder->codec_interface(), NULL, 0);
1560   }
1561 #endif
1562 }
1563
1564 static void encode_frame(struct stream_state *stream,
1565                          struct VpxEncoderConfig *global, struct vpx_image *img,
1566                          unsigned int frames_in) {
1567   vpx_codec_pts_t frame_start, next_frame_start;
1568   struct vpx_codec_enc_cfg *cfg = &stream->config.cfg;
1569   struct vpx_usec_timer timer;
1570
1571   frame_start =
1572       (cfg->g_timebase.den * (int64_t)(frames_in - 1) * global->framerate.den) /
1573       cfg->g_timebase.num / global->framerate.num;
1574   next_frame_start =
1575       (cfg->g_timebase.den * (int64_t)(frames_in)*global->framerate.den) /
1576       cfg->g_timebase.num / global->framerate.num;
1577
1578 /* Scale if necessary */
1579 #if CONFIG_VP9_HIGHBITDEPTH
1580   if (img) {
1581     if ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) &&
1582         (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
1583       if (img->fmt != VPX_IMG_FMT_I42016) {
1584         fprintf(stderr, "%s can only scale 4:2:0 inputs\n", exec_name);
1585         exit(EXIT_FAILURE);
1586       }
1587 #if CONFIG_LIBYUV
1588       if (!stream->img) {
1589         stream->img =
1590             vpx_img_alloc(NULL, VPX_IMG_FMT_I42016, cfg->g_w, cfg->g_h, 16);
1591       }
1592       I420Scale_16(
1593           (uint16 *)img->planes[VPX_PLANE_Y], img->stride[VPX_PLANE_Y] / 2,
1594           (uint16 *)img->planes[VPX_PLANE_U], img->stride[VPX_PLANE_U] / 2,
1595           (uint16 *)img->planes[VPX_PLANE_V], img->stride[VPX_PLANE_V] / 2,
1596           img->d_w, img->d_h, (uint16 *)stream->img->planes[VPX_PLANE_Y],
1597           stream->img->stride[VPX_PLANE_Y] / 2,
1598           (uint16 *)stream->img->planes[VPX_PLANE_U],
1599           stream->img->stride[VPX_PLANE_U] / 2,
1600           (uint16 *)stream->img->planes[VPX_PLANE_V],
1601           stream->img->stride[VPX_PLANE_V] / 2, stream->img->d_w,
1602           stream->img->d_h, kFilterBox);
1603       img = stream->img;
1604 #else
1605       stream->encoder.err = 1;
1606       ctx_exit_on_error(&stream->encoder,
1607                         "Stream %d: Failed to encode frame.\n"
1608                         "Scaling disabled in this configuration. \n"
1609                         "To enable, configure with --enable-libyuv\n",
1610                         stream->index);
1611 #endif
1612     }
1613   }
1614 #endif
1615   if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
1616     if (img->fmt != VPX_IMG_FMT_I420 && img->fmt != VPX_IMG_FMT_YV12) {
1617       fprintf(stderr, "%s can only scale 4:2:0 8bpp inputs\n", exec_name);
1618       exit(EXIT_FAILURE);
1619     }
1620 #if CONFIG_LIBYUV
1621     if (!stream->img)
1622       stream->img =
1623           vpx_img_alloc(NULL, VPX_IMG_FMT_I420, cfg->g_w, cfg->g_h, 16);
1624     I420Scale(
1625         img->planes[VPX_PLANE_Y], img->stride[VPX_PLANE_Y],
1626         img->planes[VPX_PLANE_U], img->stride[VPX_PLANE_U],
1627         img->planes[VPX_PLANE_V], img->stride[VPX_PLANE_V], img->d_w, img->d_h,
1628         stream->img->planes[VPX_PLANE_Y], stream->img->stride[VPX_PLANE_Y],
1629         stream->img->planes[VPX_PLANE_U], stream->img->stride[VPX_PLANE_U],
1630         stream->img->planes[VPX_PLANE_V], stream->img->stride[VPX_PLANE_V],
1631         stream->img->d_w, stream->img->d_h, kFilterBox);
1632     img = stream->img;
1633 #else
1634     stream->encoder.err = 1;
1635     ctx_exit_on_error(&stream->encoder,
1636                       "Stream %d: Failed to encode frame.\n"
1637                       "Scaling disabled in this configuration. \n"
1638                       "To enable, configure with --enable-libyuv\n",
1639                       stream->index);
1640 #endif
1641   }
1642
1643   vpx_usec_timer_start(&timer);
1644   vpx_codec_encode(&stream->encoder, img, frame_start,
1645                    (unsigned long)(next_frame_start - frame_start), 0,
1646                    global->deadline);
1647   vpx_usec_timer_mark(&timer);
1648   stream->cx_time += vpx_usec_timer_elapsed(&timer);
1649   ctx_exit_on_error(&stream->encoder, "Stream %d: Failed to encode frame",
1650                     stream->index);
1651 }
1652
1653 static void update_quantizer_histogram(struct stream_state *stream) {
1654   if (stream->config.cfg.g_pass != VPX_RC_FIRST_PASS) {
1655     int q;
1656
1657     vpx_codec_control(&stream->encoder, VP8E_GET_LAST_QUANTIZER_64, &q);
1658     ctx_exit_on_error(&stream->encoder, "Failed to read quantizer");
1659     stream->counts[q]++;
1660   }
1661 }
1662
1663 static void get_cx_data(struct stream_state *stream,
1664                         struct VpxEncoderConfig *global, int *got_data) {
1665   const vpx_codec_cx_pkt_t *pkt;
1666   const struct vpx_codec_enc_cfg *cfg = &stream->config.cfg;
1667   vpx_codec_iter_t iter = NULL;
1668
1669   *got_data = 0;
1670   while ((pkt = vpx_codec_get_cx_data(&stream->encoder, &iter))) {
1671     static size_t fsize = 0;
1672     static FileOffset ivf_header_pos = 0;
1673
1674     switch (pkt->kind) {
1675       case VPX_CODEC_CX_FRAME_PKT:
1676         if (!(pkt->data.frame.flags & VPX_FRAME_IS_FRAGMENT)) {
1677           stream->frames_out++;
1678         }
1679         if (!global->quiet)
1680           fprintf(stderr, " %6luF", (unsigned long)pkt->data.frame.sz);
1681
1682         update_rate_histogram(stream->rate_hist, cfg, pkt);
1683 #if CONFIG_WEBM_IO
1684         if (stream->config.write_webm) {
1685           write_webm_block(&stream->webm_ctx, cfg, pkt);
1686         }
1687 #endif
1688         if (!stream->config.write_webm) {
1689           if (pkt->data.frame.partition_id <= 0) {
1690             ivf_header_pos = ftello(stream->file);
1691             fsize = pkt->data.frame.sz;
1692
1693             ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize);
1694           } else {
1695             fsize += pkt->data.frame.sz;
1696
1697             if (!(pkt->data.frame.flags & VPX_FRAME_IS_FRAGMENT)) {
1698               const FileOffset currpos = ftello(stream->file);
1699               fseeko(stream->file, ivf_header_pos, SEEK_SET);
1700               ivf_write_frame_size(stream->file, fsize);
1701               fseeko(stream->file, currpos, SEEK_SET);
1702             }
1703           }
1704
1705           (void)fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz,
1706                        stream->file);
1707         }
1708         stream->nbytes += pkt->data.raw.sz;
1709
1710         *got_data = 1;
1711 #if CONFIG_DECODERS
1712         if (global->test_decode != TEST_DECODE_OFF && !stream->mismatch_seen) {
1713           vpx_codec_decode(&stream->decoder, pkt->data.frame.buf,
1714                            (unsigned int)pkt->data.frame.sz, NULL, 0);
1715           if (stream->decoder.err) {
1716             warn_or_exit_on_error(&stream->decoder,
1717                                   global->test_decode == TEST_DECODE_FATAL,
1718                                   "Failed to decode frame %d in stream %d",
1719                                   stream->frames_out + 1, stream->index);
1720             stream->mismatch_seen = stream->frames_out + 1;
1721           }
1722         }
1723 #endif
1724         break;
1725       case VPX_CODEC_STATS_PKT:
1726         stream->frames_out++;
1727         stats_write(&stream->stats, pkt->data.twopass_stats.buf,
1728                     pkt->data.twopass_stats.sz);
1729         stream->nbytes += pkt->data.raw.sz;
1730         break;
1731 #if CONFIG_FP_MB_STATS
1732       case VPX_CODEC_FPMB_STATS_PKT:
1733         stats_write(&stream->fpmb_stats, pkt->data.firstpass_mb_stats.buf,
1734                     pkt->data.firstpass_mb_stats.sz);
1735         stream->nbytes += pkt->data.raw.sz;
1736         break;
1737 #endif
1738       case VPX_CODEC_PSNR_PKT:
1739
1740         if (global->show_psnr) {
1741           int i;
1742
1743           stream->psnr_sse_total += pkt->data.psnr.sse[0];
1744           stream->psnr_samples_total += pkt->data.psnr.samples[0];
1745           for (i = 0; i < 4; i++) {
1746             if (!global->quiet)
1747               fprintf(stderr, "%.3f ", pkt->data.psnr.psnr[i]);
1748             stream->psnr_totals[i] += pkt->data.psnr.psnr[i];
1749           }
1750           stream->psnr_count++;
1751         }
1752
1753         break;
1754       default: break;
1755     }
1756   }
1757 }
1758
1759 static void show_psnr(struct stream_state *stream, double peak) {
1760   int i;
1761   double ovpsnr;
1762
1763   if (!stream->psnr_count) return;
1764
1765   fprintf(stderr, "Stream %d PSNR (Overall/Avg/Y/U/V)", stream->index);
1766   ovpsnr = sse_to_psnr((double)stream->psnr_samples_total, peak,
1767                        (double)stream->psnr_sse_total);
1768   fprintf(stderr, " %.3f", ovpsnr);
1769
1770   for (i = 0; i < 4; i++) {
1771     fprintf(stderr, " %.3f", stream->psnr_totals[i] / stream->psnr_count);
1772   }
1773   fprintf(stderr, "\n");
1774 }
1775
1776 static float usec_to_fps(uint64_t usec, unsigned int frames) {
1777   return (float)(usec > 0 ? frames * 1000000.0 / (float)usec : 0);
1778 }
1779
1780 static void test_decode(struct stream_state *stream,
1781                         enum TestDecodeFatality fatal,
1782                         const VpxInterface *codec) {
1783   vpx_image_t enc_img, dec_img;
1784
1785   if (stream->mismatch_seen) return;
1786
1787   /* Get the internal reference frame */
1788   if (strcmp(codec->name, "vp8") == 0) {
1789     struct vpx_ref_frame ref_enc, ref_dec;
1790     int width, height;
1791
1792     width = (stream->config.cfg.g_w + 15) & ~15;
1793     height = (stream->config.cfg.g_h + 15) & ~15;
1794     vpx_img_alloc(&ref_enc.img, VPX_IMG_FMT_I420, width, height, 1);
1795     enc_img = ref_enc.img;
1796     vpx_img_alloc(&ref_dec.img, VPX_IMG_FMT_I420, width, height, 1);
1797     dec_img = ref_dec.img;
1798
1799     ref_enc.frame_type = VP8_LAST_FRAME;
1800     ref_dec.frame_type = VP8_LAST_FRAME;
1801     vpx_codec_control(&stream->encoder, VP8_COPY_REFERENCE, &ref_enc);
1802     vpx_codec_control(&stream->decoder, VP8_COPY_REFERENCE, &ref_dec);
1803   } else {
1804     struct vp9_ref_frame ref_enc, ref_dec;
1805
1806     ref_enc.idx = 0;
1807     ref_dec.idx = 0;
1808     vpx_codec_control(&stream->encoder, VP9_GET_REFERENCE, &ref_enc);
1809     enc_img = ref_enc.img;
1810     vpx_codec_control(&stream->decoder, VP9_GET_REFERENCE, &ref_dec);
1811     dec_img = ref_dec.img;
1812 #if CONFIG_VP9_HIGHBITDEPTH
1813     if ((enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) !=
1814         (dec_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH)) {
1815       if (enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
1816         vpx_img_alloc(&enc_img, enc_img.fmt - VPX_IMG_FMT_HIGHBITDEPTH,
1817                       enc_img.d_w, enc_img.d_h, 16);
1818         vpx_img_truncate_16_to_8(&enc_img, &ref_enc.img);
1819       }
1820       if (dec_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
1821         vpx_img_alloc(&dec_img, dec_img.fmt - VPX_IMG_FMT_HIGHBITDEPTH,
1822                       dec_img.d_w, dec_img.d_h, 16);
1823         vpx_img_truncate_16_to_8(&dec_img, &ref_dec.img);
1824       }
1825     }
1826 #endif
1827   }
1828   ctx_exit_on_error(&stream->encoder, "Failed to get encoder reference frame");
1829   ctx_exit_on_error(&stream->decoder, "Failed to get decoder reference frame");
1830
1831   if (!compare_img(&enc_img, &dec_img)) {
1832     int y[4], u[4], v[4];
1833 #if CONFIG_VP9_HIGHBITDEPTH
1834     if (enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) {
1835       find_mismatch_high(&enc_img, &dec_img, y, u, v);
1836     } else {
1837       find_mismatch(&enc_img, &dec_img, y, u, v);
1838     }
1839 #else
1840     find_mismatch(&enc_img, &dec_img, y, u, v);
1841 #endif
1842     stream->decoder.err = 1;
1843     warn_or_exit_on_error(&stream->decoder, fatal == TEST_DECODE_FATAL,
1844                           "Stream %d: Encode/decode mismatch on frame %d at"
1845                           " Y[%d, %d] {%d/%d},"
1846                           " U[%d, %d] {%d/%d},"
1847                           " V[%d, %d] {%d/%d}",
1848                           stream->index, stream->frames_out, y[0], y[1], y[2],
1849                           y[3], u[0], u[1], u[2], u[3], v[0], v[1], v[2], v[3]);
1850     stream->mismatch_seen = stream->frames_out;
1851   }
1852
1853   vpx_img_free(&enc_img);
1854   vpx_img_free(&dec_img);
1855 }
1856
1857 static void print_time(const char *label, int64_t etl) {
1858   int64_t hours;
1859   int64_t mins;
1860   int64_t secs;
1861
1862   if (etl >= 0) {
1863     hours = etl / 3600;
1864     etl -= hours * 3600;
1865     mins = etl / 60;
1866     etl -= mins * 60;
1867     secs = etl;
1868
1869     fprintf(stderr, "[%3s %2" PRId64 ":%02" PRId64 ":%02" PRId64 "] ", label,
1870             hours, mins, secs);
1871   } else {
1872     fprintf(stderr, "[%3s  unknown] ", label);
1873   }
1874 }
1875
1876 int main(int argc, const char **argv_) {
1877   int pass;
1878   vpx_image_t raw;
1879 #if CONFIG_VP9_HIGHBITDEPTH
1880   vpx_image_t raw_shift;
1881   int allocated_raw_shift = 0;
1882   int use_16bit_internal = 0;
1883   int input_shift = 0;
1884 #endif
1885   int frame_avail, got_data;
1886
1887   struct VpxInputContext input;
1888   struct VpxEncoderConfig global;
1889   struct stream_state *streams = NULL;
1890   char **argv, **argi;
1891   uint64_t cx_time = 0;
1892   int stream_cnt = 0;
1893   int res = 0;
1894
1895   memset(&input, 0, sizeof(input));
1896   exec_name = argv_[0];
1897
1898   if (argc < 3) usage_exit();
1899
1900   /* Setup default input stream settings */
1901   input.framerate.numerator = 30;
1902   input.framerate.denominator = 1;
1903   input.only_i420 = 1;
1904   input.bit_depth = 0;
1905
1906   /* First parse the global configuration values, because we want to apply
1907    * other parameters on top of the default configuration provided by the
1908    * codec.
1909    */
1910   argv = argv_dup(argc - 1, argv_ + 1);
1911   parse_global_config(&global, argv);
1912
1913   switch (global.color_type) {
1914     case I420: input.fmt = VPX_IMG_FMT_I420; break;
1915     case I422: input.fmt = VPX_IMG_FMT_I422; break;
1916     case I444: input.fmt = VPX_IMG_FMT_I444; break;
1917     case I440: input.fmt = VPX_IMG_FMT_I440; break;
1918     case YV12: input.fmt = VPX_IMG_FMT_YV12; break;
1919   }
1920
1921   {
1922     /* Now parse each stream's parameters. Using a local scope here
1923      * due to the use of 'stream' as loop variable in FOREACH_STREAM
1924      * loops
1925      */
1926     struct stream_state *stream = NULL;
1927
1928     do {
1929       stream = new_stream(&global, stream);
1930       stream_cnt++;
1931       if (!streams) streams = stream;
1932     } while (parse_stream_params(&global, stream, argv));
1933   }
1934
1935   /* Check for unrecognized options */
1936   for (argi = argv; *argi; argi++)
1937     if (argi[0][0] == '-' && argi[0][1])
1938       die("Error: Unrecognized option %s\n", *argi);
1939
1940   FOREACH_STREAM(check_encoder_config(global.disable_warning_prompt, &global,
1941                                       &stream->config.cfg););
1942
1943   /* Handle non-option arguments */
1944   input.filename = argv[0];
1945
1946   if (!input.filename) usage_exit();
1947
1948   /* Decide if other chroma subsamplings than 4:2:0 are supported */
1949   if (global.codec->fourcc == VP9_FOURCC) input.only_i420 = 0;
1950
1951   for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) {
1952     int frames_in = 0, seen_frames = 0;
1953     int64_t estimated_time_left = -1;
1954     int64_t average_rate = -1;
1955     int64_t lagged_count = 0;
1956
1957     open_input_file(&input);
1958
1959     /* If the input file doesn't specify its w/h (raw files), try to get
1960      * the data from the first stream's configuration.
1961      */
1962     if (!input.width || !input.height) {
1963       FOREACH_STREAM({
1964         if (stream->config.cfg.g_w && stream->config.cfg.g_h) {
1965           input.width = stream->config.cfg.g_w;
1966           input.height = stream->config.cfg.g_h;
1967           break;
1968         }
1969       });
1970     }
1971
1972     /* Update stream configurations from the input file's parameters */
1973     if (!input.width || !input.height)
1974       fatal(
1975           "Specify stream dimensions with --width (-w) "
1976           " and --height (-h)");
1977
1978     /* If input file does not specify bit-depth but input-bit-depth parameter
1979      * exists, assume that to be the input bit-depth. However, if the
1980      * input-bit-depth paramter does not exist, assume the input bit-depth
1981      * to be the same as the codec bit-depth.
1982      */
1983     if (!input.bit_depth) {
1984       FOREACH_STREAM({
1985         if (stream->config.cfg.g_input_bit_depth)
1986           input.bit_depth = stream->config.cfg.g_input_bit_depth;
1987         else
1988           input.bit_depth = stream->config.cfg.g_input_bit_depth =
1989               (int)stream->config.cfg.g_bit_depth;
1990       });
1991       if (input.bit_depth > 8) input.fmt |= VPX_IMG_FMT_HIGHBITDEPTH;
1992     } else {
1993       FOREACH_STREAM(
1994           { stream->config.cfg.g_input_bit_depth = input.bit_depth; });
1995     }
1996
1997     FOREACH_STREAM(set_stream_dimensions(stream, input.width, input.height));
1998     FOREACH_STREAM(validate_stream_config(stream, &global));
1999
2000     /* Ensure that --passes and --pass are consistent. If --pass is set and
2001      * --passes=2, ensure --fpf was set.
2002      */
2003     if (global.pass && global.passes == 2)
2004       FOREACH_STREAM({
2005         if (!stream->config.stats_fn)
2006           die("Stream %d: Must specify --fpf when --pass=%d"
2007               " and --passes=2\n",
2008               stream->index, global.pass);
2009       });
2010
2011 #if !CONFIG_WEBM_IO
2012     FOREACH_STREAM({
2013       if (stream->config.write_webm) {
2014         stream->config.write_webm = 0;
2015         warn(
2016             "vpxenc was compiled without WebM container support."
2017             "Producing IVF output");
2018       }
2019     });
2020 #endif
2021
2022     /* Use the frame rate from the file only if none was specified
2023      * on the command-line.
2024      */
2025     if (!global.have_framerate) {
2026       global.framerate.num = input.framerate.numerator;
2027       global.framerate.den = input.framerate.denominator;
2028       FOREACH_STREAM(stream->config.cfg.g_timebase.den = global.framerate.num;
2029                      stream->config.cfg.g_timebase.num = global.framerate.den);
2030     }
2031
2032     /* Show configuration */
2033     if (global.verbose && pass == 0)
2034       FOREACH_STREAM(show_stream_config(stream, &global, &input));
2035
2036     if (pass == (global.pass ? global.pass - 1 : 0)) {
2037       if (input.file_type == FILE_TYPE_Y4M)
2038         /*The Y4M reader does its own allocation.
2039           Just initialize this here to avoid problems if we never read any
2040            frames.*/
2041         memset(&raw, 0, sizeof(raw));
2042       else
2043         vpx_img_alloc(&raw, input.fmt, input.width, input.height, 32);
2044
2045       FOREACH_STREAM(stream->rate_hist = init_rate_histogram(
2046                          &stream->config.cfg, &global.framerate));
2047     }
2048
2049     FOREACH_STREAM(setup_pass(stream, &global, pass));
2050     FOREACH_STREAM(
2051         open_output_file(stream, &global, &input.pixel_aspect_ratio));
2052     FOREACH_STREAM(initialize_encoder(stream, &global));
2053
2054 #if CONFIG_VP9_HIGHBITDEPTH
2055     if (strcmp(global.codec->name, "vp9") == 0) {
2056       // Check to see if at least one stream uses 16 bit internal.
2057       // Currently assume that the bit_depths for all streams using
2058       // highbitdepth are the same.
2059       FOREACH_STREAM({
2060         if (stream->config.use_16bit_internal) {
2061           use_16bit_internal = 1;
2062         }
2063         if (stream->config.cfg.g_profile == 0) {
2064           input_shift = 0;
2065         } else {
2066           input_shift = (int)stream->config.cfg.g_bit_depth -
2067                         stream->config.cfg.g_input_bit_depth;
2068         }
2069       });
2070     }
2071 #endif
2072
2073     frame_avail = 1;
2074     got_data = 0;
2075
2076     while (frame_avail || got_data) {
2077       struct vpx_usec_timer timer;
2078
2079       if (!global.limit || frames_in < global.limit) {
2080         frame_avail = read_frame(&input, &raw);
2081
2082         if (frame_avail) frames_in++;
2083         seen_frames =
2084             frames_in > global.skip_frames ? frames_in - global.skip_frames : 0;
2085
2086         if (!global.quiet) {
2087           float fps = usec_to_fps(cx_time, seen_frames);
2088           fprintf(stderr, "\rPass %d/%d ", pass + 1, global.passes);
2089
2090           if (stream_cnt == 1)
2091             fprintf(stderr, "frame %4d/%-4d %7" PRId64 "B ", frames_in,
2092                     streams->frames_out, (int64_t)streams->nbytes);
2093           else
2094             fprintf(stderr, "frame %4d ", frames_in);
2095
2096           fprintf(stderr, "%7" PRId64 " %s %.2f %s ",
2097                   cx_time > 9999999 ? cx_time / 1000 : cx_time,
2098                   cx_time > 9999999 ? "ms" : "us", fps >= 1.0 ? fps : fps * 60,
2099                   fps >= 1.0 ? "fps" : "fpm");
2100           print_time("ETA", estimated_time_left);
2101         }
2102
2103       } else
2104         frame_avail = 0;
2105
2106       if (frames_in > global.skip_frames) {
2107 #if CONFIG_VP9_HIGHBITDEPTH
2108         vpx_image_t *frame_to_encode;
2109         if (input_shift || (use_16bit_internal && input.bit_depth == 8)) {
2110           assert(use_16bit_internal);
2111           // Input bit depth and stream bit depth do not match, so up
2112           // shift frame to stream bit depth
2113           if (!allocated_raw_shift) {
2114             vpx_img_alloc(&raw_shift, raw.fmt | VPX_IMG_FMT_HIGHBITDEPTH,
2115                           input.width, input.height, 32);
2116             allocated_raw_shift = 1;
2117           }
2118           vpx_img_upshift(&raw_shift, &raw, input_shift);
2119           frame_to_encode = &raw_shift;
2120         } else {
2121           frame_to_encode = &raw;
2122         }
2123         vpx_usec_timer_start(&timer);
2124         if (use_16bit_internal) {
2125           assert(frame_to_encode->fmt & VPX_IMG_FMT_HIGHBITDEPTH);
2126           FOREACH_STREAM({
2127             if (stream->config.use_16bit_internal)
2128               encode_frame(stream, &global,
2129                            frame_avail ? frame_to_encode : NULL, frames_in);
2130             else
2131               assert(0);
2132           });
2133         } else {
2134           assert((frame_to_encode->fmt & VPX_IMG_FMT_HIGHBITDEPTH) == 0);
2135           FOREACH_STREAM(encode_frame(stream, &global,
2136                                       frame_avail ? frame_to_encode : NULL,
2137                                       frames_in));
2138         }
2139 #else
2140         vpx_usec_timer_start(&timer);
2141         FOREACH_STREAM(encode_frame(stream, &global, frame_avail ? &raw : NULL,
2142                                     frames_in));
2143 #endif
2144         vpx_usec_timer_mark(&timer);
2145         cx_time += vpx_usec_timer_elapsed(&timer);
2146
2147         FOREACH_STREAM(update_quantizer_histogram(stream));
2148
2149         got_data = 0;
2150         FOREACH_STREAM(get_cx_data(stream, &global, &got_data));
2151
2152         if (!got_data && input.length && streams != NULL &&
2153             !streams->frames_out) {
2154           lagged_count = global.limit ? seen_frames : ftello(input.file);
2155         } else if (input.length) {
2156           int64_t remaining;
2157           int64_t rate;
2158
2159           if (global.limit) {
2160             const int64_t frame_in_lagged = (seen_frames - lagged_count) * 1000;
2161
2162             rate = cx_time ? frame_in_lagged * (int64_t)1000000 / cx_time : 0;
2163             remaining = 1000 * (global.limit - global.skip_frames -
2164                                 seen_frames + lagged_count);
2165           } else {
2166             const int64_t input_pos = ftello(input.file);
2167             const int64_t input_pos_lagged = input_pos - lagged_count;
2168             const int64_t limit = input.length;
2169
2170             rate = cx_time ? input_pos_lagged * (int64_t)1000000 / cx_time : 0;
2171             remaining = limit - input_pos + lagged_count;
2172           }
2173
2174           average_rate =
2175               (average_rate <= 0) ? rate : (average_rate * 7 + rate) / 8;
2176           estimated_time_left = average_rate ? remaining / average_rate : -1;
2177         }
2178
2179         if (got_data && global.test_decode != TEST_DECODE_OFF)
2180           FOREACH_STREAM(test_decode(stream, global.test_decode, global.codec));
2181       }
2182
2183       fflush(stdout);
2184       if (!global.quiet) fprintf(stderr, "\033[K");
2185     }
2186
2187     if (stream_cnt > 1) fprintf(stderr, "\n");
2188
2189     if (!global.quiet) {
2190       FOREACH_STREAM(fprintf(
2191           stderr, "\rPass %d/%d frame %4d/%-4d %7" PRId64 "B %7" PRId64
2192                   "b/f %7" PRId64 "b/s"
2193                   " %7" PRId64 " %s (%.2f fps)\033[K\n",
2194           pass + 1, global.passes, frames_in, stream->frames_out,
2195           (int64_t)stream->nbytes,
2196           seen_frames ? (int64_t)(stream->nbytes * 8 / seen_frames) : 0,
2197           seen_frames
2198               ? (int64_t)stream->nbytes * 8 * (int64_t)global.framerate.num /
2199                     global.framerate.den / seen_frames
2200               : 0,
2201           stream->cx_time > 9999999 ? stream->cx_time / 1000 : stream->cx_time,
2202           stream->cx_time > 9999999 ? "ms" : "us",
2203           usec_to_fps(stream->cx_time, seen_frames)));
2204     }
2205
2206     if (global.show_psnr) {
2207       if (global.codec->fourcc == VP9_FOURCC) {
2208         FOREACH_STREAM(
2209             show_psnr(stream, (1 << stream->config.cfg.g_input_bit_depth) - 1));
2210       } else {
2211         FOREACH_STREAM(show_psnr(stream, 255.0));
2212       }
2213     }
2214
2215     FOREACH_STREAM(vpx_codec_destroy(&stream->encoder));
2216
2217     if (global.test_decode != TEST_DECODE_OFF) {
2218       FOREACH_STREAM(vpx_codec_destroy(&stream->decoder));
2219     }
2220
2221     close_input_file(&input);
2222
2223     if (global.test_decode == TEST_DECODE_FATAL) {
2224       FOREACH_STREAM(res |= stream->mismatch_seen);
2225     }
2226     FOREACH_STREAM(close_output_file(stream, global.codec->fourcc));
2227
2228     FOREACH_STREAM(stats_close(&stream->stats, global.passes - 1));
2229
2230 #if CONFIG_FP_MB_STATS
2231     FOREACH_STREAM(stats_close(&stream->fpmb_stats, global.passes - 1));
2232 #endif
2233
2234     if (global.pass) break;
2235   }
2236
2237   if (global.show_q_hist_buckets)
2238     FOREACH_STREAM(
2239         show_q_histogram(stream->counts, global.show_q_hist_buckets));
2240
2241   if (global.show_rate_hist_buckets)
2242     FOREACH_STREAM(show_rate_histogram(stream->rate_hist, &stream->config.cfg,
2243                                        global.show_rate_hist_buckets));
2244   FOREACH_STREAM(destroy_rate_histogram(stream->rate_hist));
2245
2246 #if CONFIG_INTERNAL_STATS
2247   /* TODO(jkoleszar): This doesn't belong in this executable. Do it for now,
2248    * to match some existing utilities.
2249    */
2250   if (!(global.pass == 1 && global.passes == 2))
2251     FOREACH_STREAM({
2252       FILE *f = fopen("opsnr.stt", "a");
2253       if (stream->mismatch_seen) {
2254         fprintf(f, "First mismatch occurred in frame %d\n",
2255                 stream->mismatch_seen);
2256       } else {
2257         fprintf(f, "No mismatch detected in recon buffers\n");
2258       }
2259       fclose(f);
2260     });
2261 #endif
2262
2263 #if CONFIG_VP9_HIGHBITDEPTH
2264   if (allocated_raw_shift) vpx_img_free(&raw_shift);
2265 #endif
2266   vpx_img_free(&raw);
2267   free(argv);
2268   free(streams);
2269   return res ? EXIT_FAILURE : EXIT_SUCCESS;
2270 }