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