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