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