blob: d46a83eb08d082ce577ab0e92d7bf3309d5d7703 [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001/*
John Koleszarc2140b82010-09-09 08:16:39 -04002 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
John Koleszar0ea50ce2010-05-18 11:58:33 -04003 *
John Koleszar3245d462010-06-10 17:10:12 -04004 * Use of this source code is governed by a BSD-style license
John Koleszar09202d82010-06-04 16:19:40 -04005 * 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
John Koleszar3245d462010-06-10 17:10:12 -04007 * in the file PATENTS. All contributing project authors may
John Koleszar09202d82010-06-04 16:19:40 -04008 * be found in the AUTHORS file in the root of the source tree.
John Koleszar0ea50ce2010-05-18 11:58:33 -04009 */
10
Tom Finegan49dc9ca2013-11-21 16:46:40 -080011#include "./vpxenc.h"
Tom Finegan78cb2e62013-11-07 21:28:45 -080012#include "./vpx_config.h"
John Koleszar0ea50ce2010-05-18 11:58:33 -040013
Tom Finegan00a35aa2013-11-14 12:37:42 -080014#include <assert.h>
15#include <limits.h>
Tom Finegan78cb2e62013-11-07 21:28:45 -080016#include <math.h>
Tom Finegan00a35aa2013-11-14 12:37:42 -080017#include <stdarg.h>
John Koleszar0ea50ce2010-05-18 11:58:33 -040018#include <stdio.h>
19#include <stdlib.h>
John Koleszar0ea50ce2010-05-18 11:58:33 -040020#include <string.h>
Tom Finegan00a35aa2013-11-14 12:37:42 -080021
John Koleszarb7492342010-05-24 11:39:59 -040022#include "vpx/vpx_encoder.h"
John Koleszar5ebe94f2012-12-23 07:20:10 -080023#if CONFIG_DECODERS
John Koleszar6ad3b742012-11-06 12:02:42 -080024#include "vpx/vpx_decoder.h"
John Koleszar5ebe94f2012-12-23 07:20:10 -080025#endif
John Koleszar6ad3b742012-11-06 12:02:42 -080026
Tom Finegan03848f52013-11-05 10:02:18 -080027#include "third_party/libyuv/include/libyuv/scale.h"
Tom Finegan00a35aa2013-11-14 12:37:42 -080028#include "./args.h"
Tom Finegan00a35aa2013-11-14 12:37:42 -080029#include "./ivfenc.h"
Tom Finegan7a691f12014-02-10 14:55:25 -080030#include "./tools_common.h"
Tom Finegan03848f52013-11-05 10:02:18 -080031
John Koleszar7b8dfcb2012-11-06 16:59:01 -080032#if CONFIG_VP8_ENCODER || CONFIG_VP9_ENCODER
John Koleszarb7492342010-05-24 11:39:59 -040033#include "vpx/vp8cx.h"
John Koleszar6ad3b742012-11-06 12:02:42 -080034#endif
John Koleszar7b8dfcb2012-11-06 16:59:01 -080035#if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER
Yaowu Xuf798f9e2012-03-07 12:25:50 -080036#include "vpx/vp8dx.h"
John Koleszar6ad3b742012-11-06 12:02:42 -080037#endif
38
Tom Finegan7a691f12014-02-10 14:55:25 -080039#include "vpx/vpx_integer.h"
John Koleszar0ea50ce2010-05-18 11:58:33 -040040#include "vpx_ports/mem_ops.h"
41#include "vpx_ports/vpx_timer.h"
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -080042#include "./rate_hist.h"
Tom Finegan78cb2e62013-11-07 21:28:45 -080043#include "./vpxstats.h"
Tom Finegan249366b2013-11-25 12:05:19 -080044#include "./warnings.h"
James Zerndba73762014-05-10 17:44:12 -070045#if CONFIG_WEBM_IO
Tom Finegan78cb2e62013-11-07 21:28:45 -080046#include "./webmenc.h"
James Zerndba73762014-05-10 17:44:12 -070047#endif
Tom Finegan78cb2e62013-11-07 21:28:45 -080048#include "./y4minput.h"
Tom Finegan03848f52013-11-05 10:02:18 -080049
John Koleszar6291dd42012-06-19 21:05:36 -070050/* Swallow warnings about unused results of fread/fwrite */
51static size_t wrap_fread(void *ptr, size_t size, size_t nmemb,
John Koleszar6ad3b742012-11-06 12:02:42 -080052 FILE *stream) {
53 return fread(ptr, size, nmemb, stream);
John Koleszar6291dd42012-06-19 21:05:36 -070054}
55#define fread wrap_fread
56
57static size_t wrap_fwrite(const void *ptr, size_t size, size_t nmemb,
John Koleszar6ad3b742012-11-06 12:02:42 -080058 FILE *stream) {
59 return fwrite(ptr, size, nmemb, stream);
John Koleszar6291dd42012-06-19 21:05:36 -070060}
61#define fwrite wrap_fwrite
62
63
John Koleszar0ea50ce2010-05-18 11:58:33 -040064static const char *exec_name;
65
Ronald S. Bultje9837bf42013-02-15 16:31:02 -080066static void warn_or_exit_on_errorv(vpx_codec_ctx_t *ctx, int fatal,
67 const char *s, va_list ap) {
John Koleszarc6b90392012-07-13 15:21:29 -070068 if (ctx->err) {
69 const char *detail = vpx_codec_error_detail(ctx);
John Koleszar0ea50ce2010-05-18 11:58:33 -040070
John Koleszar6ad3b742012-11-06 12:02:42 -080071 vfprintf(stderr, s, ap);
72 fprintf(stderr, ": %s\n", vpx_codec_error(ctx));
John Koleszar0ea50ce2010-05-18 11:58:33 -040073
John Koleszarc6b90392012-07-13 15:21:29 -070074 if (detail)
75 fprintf(stderr, " %s\n", detail);
John Koleszar0ea50ce2010-05-18 11:58:33 -040076
Ronald S. Bultje9837bf42013-02-15 16:31:02 -080077 if (fatal)
78 exit(EXIT_FAILURE);
John Koleszarc6b90392012-07-13 15:21:29 -070079 }
John Koleszar0ea50ce2010-05-18 11:58:33 -040080}
81
Ronald S. Bultje9837bf42013-02-15 16:31:02 -080082static void ctx_exit_on_error(vpx_codec_ctx_t *ctx, const char *s, ...) {
83 va_list ap;
84
85 va_start(ap, s);
86 warn_or_exit_on_errorv(ctx, 1, s, ap);
87 va_end(ap);
88}
89
90static void warn_or_exit_on_error(vpx_codec_ctx_t *ctx, int fatal,
91 const char *s, ...) {
92 va_list ap;
93
94 va_start(ap, s);
95 warn_or_exit_on_errorv(ctx, fatal, s, ap);
96 va_end(ap);
97}
98
Tom Finegan00a35aa2013-11-14 12:37:42 -080099int read_frame(struct VpxInputContext *input_ctx, vpx_image_t *img) {
100 FILE *f = input_ctx->file;
101 y4m_input *y4m = &input_ctx->y4m;
John Koleszarc6b90392012-07-13 15:21:29 -0700102 int shortread = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400103
Tom Finegan00a35aa2013-11-14 12:37:42 -0800104 if (input_ctx->file_type == FILE_TYPE_Y4M) {
John Koleszarc6b90392012-07-13 15:21:29 -0700105 if (y4m_input_fetch_frame(y4m, f, img) < 1)
106 return 0;
107 } else {
Tom Finegan00a35aa2013-11-14 12:37:42 -0800108 shortread = read_yuv_frame(input_ctx, img);
John Koleszarc6b90392012-07-13 15:21:29 -0700109 }
110
111 return !shortread;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400112}
113
Alex Converse64b89f12014-01-06 16:29:09 -0800114int file_is_y4m(const char detect[4]) {
John Koleszarc6b90392012-07-13 15:21:29 -0700115 if (memcmp(detect, "YUV4", 4) == 0) {
116 return 1;
117 }
118 return 0;
Timothy B. Terriberry44d89492010-05-26 18:27:51 -0400119}
120
Alex Converse64b89f12014-01-06 16:29:09 -0800121int fourcc_is_ivf(const char detect[4]) {
122 if (memcmp(detect, "DKIF", 4) == 0) {
123 return 1;
124 }
125 return 0;
126}
John Koleszardc666302010-10-20 12:05:48 -0400127
John Koleszar75afcee2010-10-26 16:22:22 -0400128static const arg_def_t debugmode = ARG_DEF("D", "debug", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700129 "Debug mode (makes output deterministic)");
John Koleszar53291892010-10-22 14:48:21 -0400130static const arg_def_t outputfile = ARG_DEF("o", "output", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700131 "Output filename");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400132static const arg_def_t use_yv12 = ARG_DEF(NULL, "yv12", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700133 "Input file is YV12 ");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400134static const arg_def_t use_i420 = ARG_DEF(NULL, "i420", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700135 "Input file is I420 (default)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400136static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700137 "Codec to use");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400138static const arg_def_t passes = ARG_DEF("p", "passes", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700139 "Number of passes (1/2)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400140static const arg_def_t pass_arg = ARG_DEF(NULL, "pass", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700141 "Pass to execute (1/2)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400142static const arg_def_t fpf_name = ARG_DEF(NULL, "fpf", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700143 "First pass statistics file name");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400144static const arg_def_t limit = ARG_DEF(NULL, "limit", 1,
145 "Stop encoding after n input frames");
Yaowu Xu03d5d692012-03-14 07:37:10 -0700146static const arg_def_t skip = ARG_DEF(NULL, "skip", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700147 "Skip the first n input frames");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400148static const arg_def_t deadline = ARG_DEF("d", "deadline", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700149 "Deadline per frame (usec)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400150static const arg_def_t best_dl = ARG_DEF(NULL, "best", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700151 "Use Best Quality Deadline");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400152static const arg_def_t good_dl = ARG_DEF(NULL, "good", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700153 "Use Good Quality Deadline");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400154static const arg_def_t rt_dl = ARG_DEF(NULL, "rt", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700155 "Use Realtime Quality Deadline");
James Zern1fc3cc82012-10-25 18:31:35 -0700156static const arg_def_t quietarg = ARG_DEF("q", "quiet", 0,
John Koleszar6ad3b742012-11-06 12:02:42 -0800157 "Do not print encode progress");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400158static const arg_def_t verbosearg = ARG_DEF("v", "verbose", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700159 "Show encoder parameters");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400160static const arg_def_t psnrarg = ARG_DEF(NULL, "psnr", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700161 "Show PSNR in status line");
Tom Finegan49dc9ca2013-11-21 16:46:40 -0800162
Ronald S. Bultje9837bf42013-02-15 16:31:02 -0800163static const struct arg_enum_list test_decode_enum[] = {
164 {"off", TEST_DECODE_OFF},
165 {"fatal", TEST_DECODE_FATAL},
166 {"warn", TEST_DECODE_WARN},
167 {NULL, 0}
168};
169static const arg_def_t recontest = ARG_DEF_ENUM(NULL, "test-decode", 1,
170 "Test encode/decode mismatch",
171 test_decode_enum);
John Koleszar28f177c2010-10-21 16:52:14 -0400172static const arg_def_t framerate = ARG_DEF(NULL, "fps", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700173 "Stream frame rate (rate/scale)");
John Koleszar456bfb12010-10-21 16:23:20 -0400174static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0,
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700175 "Output IVF (default is WebM if WebM IO is enabled)");
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200176static const arg_def_t out_part = ARG_DEF("P", "output-partitions", 0,
John Koleszar6ad3b742012-11-06 12:02:42 -0800177 "Makes encoder output partitions. Requires IVF output!");
John Koleszar3fde9962011-06-20 17:09:29 -0400178static const arg_def_t q_hist_n = ARG_DEF(NULL, "q-hist", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700179 "Show quantizer histogram (n-buckets)");
John Koleszarc96f8e22011-06-21 16:42:33 -0400180static const arg_def_t rate_hist_n = ARG_DEF(NULL, "rate-hist", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700181 "Show rate histogram (n-buckets)");
Tom Finegan44dd3272013-11-20 17:18:28 -0800182static const arg_def_t disable_warnings =
183 ARG_DEF(NULL, "disable-warnings", 0,
184 "Disable warnings about potentially incorrect encode settings.");
Tom Finegan249366b2013-11-25 12:05:19 -0800185static const arg_def_t disable_warning_prompt =
186 ARG_DEF("y", "disable-warning-prompt", 0,
187 "Display warnings, but do not prompt user to continue.");
Alex Conversed66bd222014-02-21 10:52:09 -0800188static const arg_def_t experimental_bitstream =
189 ARG_DEF(NULL, "experimental-bitstream", 0,
190 "Allow experimental bitstream features.");
191
Tom Finegan44dd3272013-11-20 17:18:28 -0800192
John Koleszarc6b90392012-07-13 15:21:29 -0700193static const arg_def_t *main_args[] = {
194 &debugmode,
195 &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip,
John Koleszar6ad3b742012-11-06 12:02:42 -0800196 &deadline, &best_dl, &good_dl, &rt_dl,
Tom Finegan44dd3272013-11-20 17:18:28 -0800197 &quietarg, &verbosearg, &psnrarg, &use_ivf, &out_part, &q_hist_n,
Tom Finegan249366b2013-11-25 12:05:19 -0800198 &rate_hist_n, &disable_warnings, &disable_warning_prompt,
John Koleszarc6b90392012-07-13 15:21:29 -0700199 NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400200};
201
202static const arg_def_t usage = ARG_DEF("u", "usage", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700203 "Usage profile number to use");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400204static const arg_def_t threads = ARG_DEF("t", "threads", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700205 "Max number of threads to use");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400206static const arg_def_t profile = ARG_DEF(NULL, "profile", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700207 "Bitstream profile number to use");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400208static const arg_def_t width = ARG_DEF("w", "width", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700209 "Frame width");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400210static const arg_def_t height = ARG_DEF("h", "height", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700211 "Frame height");
James Zerndba73762014-05-10 17:44:12 -0700212#if CONFIG_WEBM_IO
Alok Ahuja72c76ca2011-04-21 00:50:07 -0700213static const struct arg_enum_list stereo_mode_enum[] = {
John Koleszarc6b90392012-07-13 15:21:29 -0700214 {"mono", STEREO_FORMAT_MONO},
215 {"left-right", STEREO_FORMAT_LEFT_RIGHT},
216 {"bottom-top", STEREO_FORMAT_BOTTOM_TOP},
217 {"top-bottom", STEREO_FORMAT_TOP_BOTTOM},
218 {"right-left", STEREO_FORMAT_RIGHT_LEFT},
219 {NULL, 0}
Alok Ahuja72c76ca2011-04-21 00:50:07 -0700220};
221static const arg_def_t stereo_mode = ARG_DEF_ENUM(NULL, "stereo-mode", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700222 "Stereo 3D video format", stereo_mode_enum);
James Zerndba73762014-05-10 17:44:12 -0700223#endif
John Koleszar0ea50ce2010-05-18 11:58:33 -0400224static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700225 "Output timestamp precision (fractional seconds)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400226static const arg_def_t error_resilient = ARG_DEF(NULL, "error-resilient", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700227 "Enable error resiliency features");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400228static const arg_def_t lag_in_frames = ARG_DEF(NULL, "lag-in-frames", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700229 "Max number of frames to lag");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400230
John Koleszarc6b90392012-07-13 15:21:29 -0700231static const arg_def_t *global_args[] = {
232 &use_yv12, &use_i420, &usage, &threads, &profile,
James Zerndba73762014-05-10 17:44:12 -0700233 &width, &height,
234#if CONFIG_WEBM_IO
235 &stereo_mode,
236#endif
237 &timebase, &framerate,
Deb Mukherjeedfd89f22013-01-25 11:30:28 -0800238 &error_resilient,
John Koleszarc6b90392012-07-13 15:21:29 -0700239 &lag_in_frames, NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400240};
241
242static const arg_def_t dropframe_thresh = ARG_DEF(NULL, "drop-frame", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700243 "Temporal resampling threshold (buf %)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400244static const arg_def_t resize_allowed = ARG_DEF(NULL, "resize-allowed", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700245 "Spatial resampling enabled (bool)");
Adrian Grangef7bd1272014-04-09 14:51:29 -0700246static const arg_def_t resize_width = ARG_DEF(NULL, "resize-width", 1,
247 "Width of encoded frame");
248static const arg_def_t resize_height = ARG_DEF(NULL, "resize-height", 1,
249 "Height of encoded frame");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400250static const arg_def_t resize_up_thresh = ARG_DEF(NULL, "resize-up", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700251 "Upscale threshold (buf %)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400252static const arg_def_t resize_down_thresh = ARG_DEF(NULL, "resize-down", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700253 "Downscale threshold (buf %)");
John Koleszar500fec22011-03-21 07:50:42 -0400254static const struct arg_enum_list end_usage_enum[] = {
John Koleszarc6b90392012-07-13 15:21:29 -0700255 {"vbr", VPX_VBR},
256 {"cbr", VPX_CBR},
257 {"cq", VPX_CQ},
Deb Mukherjeee378a892013-08-29 16:21:44 -0700258 {"q", VPX_Q},
John Koleszarc6b90392012-07-13 15:21:29 -0700259 {NULL, 0}
John Koleszar500fec22011-03-21 07:50:42 -0400260};
261static const arg_def_t end_usage = ARG_DEF_ENUM(NULL, "end-usage", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700262 "Rate control mode", end_usage_enum);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400263static const arg_def_t target_bitrate = ARG_DEF(NULL, "target-bitrate", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700264 "Bitrate (kbps)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400265static const arg_def_t min_quantizer = ARG_DEF(NULL, "min-q", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700266 "Minimum (best) quantizer");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400267static const arg_def_t max_quantizer = ARG_DEF(NULL, "max-q", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700268 "Maximum (worst) quantizer");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400269static const arg_def_t undershoot_pct = ARG_DEF(NULL, "undershoot-pct", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700270 "Datarate undershoot (min) target (%)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400271static const arg_def_t overshoot_pct = ARG_DEF(NULL, "overshoot-pct", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700272 "Datarate overshoot (max) target (%)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400273static const arg_def_t buf_sz = ARG_DEF(NULL, "buf-sz", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700274 "Client buffer size (ms)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400275static const arg_def_t buf_initial_sz = ARG_DEF(NULL, "buf-initial-sz", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700276 "Client initial buffer size (ms)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400277static const arg_def_t buf_optimal_sz = ARG_DEF(NULL, "buf-optimal-sz", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700278 "Client optimal buffer size (ms)");
279static const arg_def_t *rc_args[] = {
Adrian Grangef7bd1272014-04-09 14:51:29 -0700280 &dropframe_thresh, &resize_allowed, &resize_width, &resize_height,
281 &resize_up_thresh, &resize_down_thresh, &end_usage, &target_bitrate,
282 &min_quantizer, &max_quantizer, &undershoot_pct, &overshoot_pct, &buf_sz,
283 &buf_initial_sz, &buf_optimal_sz, NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400284};
285
286
287static const arg_def_t bias_pct = ARG_DEF(NULL, "bias-pct", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700288 "CBR/VBR bias (0=CBR, 100=VBR)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400289static const arg_def_t minsection_pct = ARG_DEF(NULL, "minsection-pct", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700290 "GOP min bitrate (% of target)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400291static const arg_def_t maxsection_pct = ARG_DEF(NULL, "maxsection-pct", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700292 "GOP max bitrate (% of target)");
293static const arg_def_t *rc_twopass_args[] = {
294 &bias_pct, &minsection_pct, &maxsection_pct, NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400295};
296
297
298static const arg_def_t kf_min_dist = ARG_DEF(NULL, "kf-min-dist", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700299 "Minimum keyframe interval (frames)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400300static const arg_def_t kf_max_dist = ARG_DEF(NULL, "kf-max-dist", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700301 "Maximum keyframe interval (frames)");
John Koleszarb1e36f22010-06-24 08:41:51 -0400302static const arg_def_t kf_disabled = ARG_DEF(NULL, "disable-kf", 0,
John Koleszarc6b90392012-07-13 15:21:29 -0700303 "Disable keyframe placement");
304static const arg_def_t *kf_args[] = {
305 &kf_min_dist, &kf_max_dist, &kf_disabled, NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400306};
307
308
John Koleszar0ea50ce2010-05-18 11:58:33 -0400309static const arg_def_t noise_sens = ARG_DEF(NULL, "noise-sensitivity", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700310 "Noise sensitivity (frames to blur)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400311static const arg_def_t sharpness = ARG_DEF(NULL, "sharpness", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700312 "Filter sharpness (0-7)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400313static const arg_def_t static_thresh = ARG_DEF(NULL, "static-thresh", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700314 "Motion detection threshold");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400315static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700316 "CPU Used (-16..16)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400317static const arg_def_t auto_altref = ARG_DEF(NULL, "auto-alt-ref", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700318 "Enable automatic alt reference frames");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400319static const arg_def_t arnr_maxframes = ARG_DEF(NULL, "arnr-maxframes", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700320 "AltRef Max Frames");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400321static const arg_def_t arnr_strength = ARG_DEF(NULL, "arnr-strength", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700322 "AltRef Strength");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400323static const arg_def_t arnr_type = ARG_DEF(NULL, "arnr-type", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700324 "AltRef Type");
John Koleszarb0da9b32010-12-17 09:43:39 -0500325static const struct arg_enum_list tuning_enum[] = {
John Koleszarc6b90392012-07-13 15:21:29 -0700326 {"psnr", VP8_TUNE_PSNR},
327 {"ssim", VP8_TUNE_SSIM},
328 {NULL, 0}
John Koleszarb0da9b32010-12-17 09:43:39 -0500329};
330static const arg_def_t tune_ssim = ARG_DEF_ENUM(NULL, "tune", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700331 "Material to favor", tuning_enum);
Paul Wilkinse0846c92011-01-07 18:29:37 +0000332static const arg_def_t cq_level = ARG_DEF(NULL, "cq-level", 1,
Deb Mukherjeee378a892013-08-29 16:21:44 -0700333 "Constant/Constrained Quality level");
John Koleszar1654ae92011-07-28 09:17:32 -0400334static const arg_def_t max_intra_rate_pct = ARG_DEF(NULL, "max-intra-rate", 1,
John Koleszarc6b90392012-07-13 15:21:29 -0700335 "Max I-frame bitrate (pct)");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400336
John Koleszara9c75972012-11-08 17:09:30 -0800337#if CONFIG_VP8_ENCODER
James Zern5248d712014-01-14 17:56:45 -0800338static const arg_def_t token_parts =
339 ARG_DEF(NULL, "token-parts", 1, "Number of token partitions to use, log2");
John Koleszarc6b90392012-07-13 15:21:29 -0700340static const arg_def_t *vp8_args[] = {
341 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
342 &token_parts, &arnr_maxframes, &arnr_strength, &arnr_type,
John Koleszar83b1d902012-11-05 12:37:14 -0800343 &tune_ssim, &cq_level, &max_intra_rate_pct,
John Koleszara9c75972012-11-08 17:09:30 -0800344 NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400345};
John Koleszara9c75972012-11-08 17:09:30 -0800346static const int vp8_arg_ctrl_map[] = {
347 VP8E_SET_CPUUSED, VP8E_SET_ENABLEAUTOALTREF,
348 VP8E_SET_NOISE_SENSITIVITY, VP8E_SET_SHARPNESS, VP8E_SET_STATIC_THRESHOLD,
349 VP8E_SET_TOKEN_PARTITIONS,
350 VP8E_SET_ARNR_MAXFRAMES, VP8E_SET_ARNR_STRENGTH, VP8E_SET_ARNR_TYPE,
351 VP8E_SET_TUNING, VP8E_SET_CQ_LEVEL, VP8E_SET_MAX_INTRA_BITRATE_PCT,
352 0
353};
354#endif
355
356#if CONFIG_VP9_ENCODER
James Zern5248d712014-01-14 17:56:45 -0800357static const arg_def_t tile_cols =
358 ARG_DEF(NULL, "tile-columns", 1, "Number of tile columns to use, log2");
359static const arg_def_t tile_rows =
360 ARG_DEF(NULL, "tile-rows", 1, "Number of tile rows to use, log2");
361static const arg_def_t lossless = ARG_DEF(NULL, "lossless", 1, "Lossless mode");
362static const arg_def_t frame_parallel_decoding = ARG_DEF(
363 NULL, "frame-parallel", 1, "Enable frame parallel decodability features");
364static const arg_def_t aq_mode = ARG_DEF(
365 NULL, "aq-mode", 1,
Dmitry Kovalevc8c1b432014-04-14 12:12:50 -0700366 "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, "
Marco Paniconi0eb88c92014-04-03 15:49:03 -0700367 "3: cyclic refresh)");
368static const arg_def_t frame_periodic_boost = ARG_DEF(
369 NULL, "frame_boost", 1,
Dmitry Kovalevc8c1b432014-04-14 12:12:50 -0700370 "Enable frame periodic boost (0: off (default), 1: on)");
James Zern5248d712014-01-14 17:56:45 -0800371
John Koleszara9c75972012-11-08 17:09:30 -0800372static const arg_def_t *vp9_args[] = {
373 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
Adrian Grange0a386b92014-04-28 14:28:58 -0700374 &tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type,
Yaowu Xud262e262013-02-20 07:27:35 -0800375 &tune_ssim, &cq_level, &max_intra_rate_pct, &lossless,
Marco Paniconi0eb88c92014-04-03 15:49:03 -0700376 &frame_parallel_decoding, &aq_mode, &frame_periodic_boost,
John Koleszar83b1d902012-11-05 12:37:14 -0800377 NULL
John Koleszar0ea50ce2010-05-18 11:58:33 -0400378};
John Koleszara9c75972012-11-08 17:09:30 -0800379static const int vp9_arg_ctrl_map[] = {
John Koleszarc6b90392012-07-13 15:21:29 -0700380 VP8E_SET_CPUUSED, VP8E_SET_ENABLEAUTOALTREF,
381 VP8E_SET_NOISE_SENSITIVITY, VP8E_SET_SHARPNESS, VP8E_SET_STATIC_THRESHOLD,
Ronald S. Bultje89a206e2013-02-08 11:33:11 -0800382 VP9E_SET_TILE_COLUMNS, VP9E_SET_TILE_ROWS,
Adrian Grange0a386b92014-04-28 14:28:58 -0700383 VP8E_SET_ARNR_MAXFRAMES, VP8E_SET_ARNR_STRENGTH, VP8E_SET_ARNR_TYPE,
John Koleszar83b1d902012-11-05 12:37:14 -0800384 VP8E_SET_TUNING, VP8E_SET_CQ_LEVEL, VP8E_SET_MAX_INTRA_BITRATE_PCT,
Guillaume Martres17084652013-11-14 19:23:57 +0100385 VP9E_SET_LOSSLESS, VP9E_SET_FRAME_PARALLEL_DECODING, VP9E_SET_AQ_MODE,
Marco Paniconi0eb88c92014-04-03 15:49:03 -0700386 VP9E_SET_FRAME_PERIODIC_BOOST,
John Koleszar83b1d902012-11-05 12:37:14 -0800387 0
John Koleszar0ea50ce2010-05-18 11:58:33 -0400388};
389#endif
390
391static const arg_def_t *no_args[] = { NULL };
392
Tom Finegan03848f52013-11-05 10:02:18 -0800393void usage_exit() {
John Koleszarc6b90392012-07-13 15:21:29 -0700394 int i;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400395
John Koleszarc6b90392012-07-13 15:21:29 -0700396 fprintf(stderr, "Usage: %s <options> -o dst_filename src_filename \n",
397 exec_name);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400398
John Koleszarc6b90392012-07-13 15:21:29 -0700399 fprintf(stderr, "\nOptions:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700400 arg_show_usage(stderr, main_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700401 fprintf(stderr, "\nEncoder Global Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700402 arg_show_usage(stderr, global_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700403 fprintf(stderr, "\nRate Control Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700404 arg_show_usage(stderr, rc_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700405 fprintf(stderr, "\nTwopass Rate Control Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700406 arg_show_usage(stderr, rc_twopass_args);
John Koleszarc6b90392012-07-13 15:21:29 -0700407 fprintf(stderr, "\nKeyframe Placement Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700408 arg_show_usage(stderr, kf_args);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400409#if CONFIG_VP8_ENCODER
John Koleszarc6b90392012-07-13 15:21:29 -0700410 fprintf(stderr, "\nVP8 Specific Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700411 arg_show_usage(stderr, vp8_args);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400412#endif
John Koleszara9c75972012-11-08 17:09:30 -0800413#if CONFIG_VP9_ENCODER
414 fprintf(stderr, "\nVP9 Specific Options:\n");
John Koleszarb9e27612013-06-25 09:15:07 -0700415 arg_show_usage(stderr, vp9_args);
John Koleszara9c75972012-11-08 17:09:30 -0800416#endif
John Koleszarc6b90392012-07-13 15:21:29 -0700417 fprintf(stderr, "\nStream timebase (--timebase):\n"
418 " The desired precision of timestamps in the output, expressed\n"
419 " in fractional seconds. Default is 1/1000.\n");
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800420 fprintf(stderr, "\nIncluded encoders:\n\n");
John Koleszar0ea50ce2010-05-18 11:58:33 -0400421
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800422 for (i = 0; i < get_vpx_encoder_count(); ++i) {
423 const VpxInterface *const encoder = get_vpx_encoder_by_index(i);
John Koleszarc6b90392012-07-13 15:21:29 -0700424 fprintf(stderr, " %-6s - %s\n",
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800425 encoder->name, vpx_codec_iface_name(encoder->interface()));
426 }
John Koleszar0ea50ce2010-05-18 11:58:33 -0400427
John Koleszarc6b90392012-07-13 15:21:29 -0700428 exit(EXIT_FAILURE);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400429}
430
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800431#define mmin(a, b) ((a) < (b) ? (a) : (b))
James Zernd04112d2014-01-31 15:49:17 -0800432static void find_mismatch(const vpx_image_t *const img1,
433 const vpx_image_t *const img2,
Jingning Han12bf0792013-04-06 10:00:53 -0700434 int yloc[4], int uloc[4], int vloc[4]) {
James Zern6253e8e2014-01-31 16:10:43 -0800435 const uint32_t bsize = 64;
436 const uint32_t bsizey = bsize >> img1->y_chroma_shift;
437 const uint32_t bsizex = bsize >> img1->x_chroma_shift;
438 const uint32_t c_w =
439 (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
440 const uint32_t c_h =
441 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
442 int match = 1;
443 uint32_t i, j;
Deb Mukherjee23144d22013-03-12 14:21:08 -0700444 yloc[0] = yloc[1] = yloc[2] = yloc[3] = -1;
Deb Mukherjee01cafaa2013-01-15 06:43:35 -0800445 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
446 for (j = 0; match && j < img1->d_w; j += bsize) {
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800447 int k, l;
James Zernd04112d2014-01-31 15:49:17 -0800448 const int si = mmin(i + bsize, img1->d_h) - i;
449 const int sj = mmin(j + bsize, img1->d_w) - j;
450 for (k = 0; match && k < si; ++k) {
451 for (l = 0; match && l < sj; ++l) {
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800452 if (*(img1->planes[VPX_PLANE_Y] +
453 (i + k) * img1->stride[VPX_PLANE_Y] + j + l) !=
454 *(img2->planes[VPX_PLANE_Y] +
455 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) {
456 yloc[0] = i + k;
457 yloc[1] = j + l;
Deb Mukherjee23144d22013-03-12 14:21:08 -0700458 yloc[2] = *(img1->planes[VPX_PLANE_Y] +
459 (i + k) * img1->stride[VPX_PLANE_Y] + j + l);
460 yloc[3] = *(img2->planes[VPX_PLANE_Y] +
461 (i + k) * img2->stride[VPX_PLANE_Y] + j + l);
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800462 match = 0;
463 break;
464 }
465 }
James Zernd04112d2014-01-31 15:49:17 -0800466 }
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800467 }
468 }
Jingning Han12bf0792013-04-06 10:00:53 -0700469
Deb Mukherjee23144d22013-03-12 14:21:08 -0700470 uloc[0] = uloc[1] = uloc[2] = uloc[3] = -1;
John Koleszarbeae5012013-05-08 16:07:38 -0700471 for (i = 0, match = 1; match && i < c_h; i += bsizey) {
John Koleszarcc0eeda2013-06-11 11:28:08 -0700472 for (j = 0; match && j < c_w; j += bsizex) {
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800473 int k, l;
James Zernd04112d2014-01-31 15:49:17 -0800474 const int si = mmin(i + bsizey, c_h - i);
475 const int sj = mmin(j + bsizex, c_w - j);
476 for (k = 0; match && k < si; ++k) {
477 for (l = 0; match && l < sj; ++l) {
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800478 if (*(img1->planes[VPX_PLANE_U] +
479 (i + k) * img1->stride[VPX_PLANE_U] + j + l) !=
480 *(img2->planes[VPX_PLANE_U] +
481 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) {
482 uloc[0] = i + k;
483 uloc[1] = j + l;
Deb Mukherjee23144d22013-03-12 14:21:08 -0700484 uloc[2] = *(img1->planes[VPX_PLANE_U] +
485 (i + k) * img1->stride[VPX_PLANE_U] + j + l);
486 uloc[3] = *(img2->planes[VPX_PLANE_U] +
James Zernd04112d2014-01-31 15:49:17 -0800487 (i + k) * img2->stride[VPX_PLANE_U] + j + l);
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800488 match = 0;
489 break;
490 }
491 }
James Zernd04112d2014-01-31 15:49:17 -0800492 }
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800493 }
494 }
Deb Mukherjee23144d22013-03-12 14:21:08 -0700495 vloc[0] = vloc[1] = vloc[2] = vloc[3] = -1;
John Koleszarbeae5012013-05-08 16:07:38 -0700496 for (i = 0, match = 1; match && i < c_h; i += bsizey) {
John Koleszarcc0eeda2013-06-11 11:28:08 -0700497 for (j = 0; match && j < c_w; j += bsizex) {
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800498 int k, l;
James Zernd04112d2014-01-31 15:49:17 -0800499 const int si = mmin(i + bsizey, c_h - i);
500 const int sj = mmin(j + bsizex, c_w - j);
501 for (k = 0; match && k < si; ++k) {
502 for (l = 0; match && l < sj; ++l) {
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800503 if (*(img1->planes[VPX_PLANE_V] +
504 (i + k) * img1->stride[VPX_PLANE_V] + j + l) !=
505 *(img2->planes[VPX_PLANE_V] +
506 (i + k) * img2->stride[VPX_PLANE_V] + j + l)) {
507 vloc[0] = i + k;
508 vloc[1] = j + l;
Deb Mukherjee23144d22013-03-12 14:21:08 -0700509 vloc[2] = *(img1->planes[VPX_PLANE_V] +
510 (i + k) * img1->stride[VPX_PLANE_V] + j + l);
511 vloc[3] = *(img2->planes[VPX_PLANE_V] +
512 (i + k) * img2->stride[VPX_PLANE_V] + j + l);
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800513 match = 0;
514 break;
515 }
516 }
James Zernd04112d2014-01-31 15:49:17 -0800517 }
Deb Mukherjee0742b1e2012-11-15 15:14:38 -0800518 }
519 }
520}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400521
James Zernd04112d2014-01-31 15:49:17 -0800522static int compare_img(const vpx_image_t *const img1,
523 const vpx_image_t *const img2) {
James Zern6253e8e2014-01-31 16:10:43 -0800524 const uint32_t c_w =
525 (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
526 const uint32_t c_h =
527 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
528 uint32_t i;
John Koleszarc6b90392012-07-13 15:21:29 -0700529 int match = 1;
Yaowu Xuf798f9e2012-03-07 12:25:50 -0800530
John Koleszarc6b90392012-07-13 15:21:29 -0700531 match &= (img1->fmt == img2->fmt);
hkuang3671e622014-01-22 14:58:59 -0800532 match &= (img1->d_w == img2->d_w);
533 match &= (img1->d_h == img2->d_h);
Yaowu Xuf798f9e2012-03-07 12:25:50 -0800534
James Zernd04112d2014-01-31 15:49:17 -0800535 for (i = 0; i < img1->d_h; ++i)
536 match &= (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y],
537 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
John Koleszarc6b90392012-07-13 15:21:29 -0700538 img1->d_w) == 0);
Yaowu Xuf798f9e2012-03-07 12:25:50 -0800539
James Zernd04112d2014-01-31 15:49:17 -0800540 for (i = 0; i < c_h; ++i)
541 match &= (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
542 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
John Koleszarbeae5012013-05-08 16:07:38 -0700543 c_w) == 0);
Yaowu Xuf798f9e2012-03-07 12:25:50 -0800544
James Zernd04112d2014-01-31 15:49:17 -0800545 for (i = 0; i < c_h; ++i)
546 match &= (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
547 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
John Koleszarbeae5012013-05-08 16:07:38 -0700548 c_w) == 0);
Yaowu Xuf798f9e2012-03-07 12:25:50 -0800549
John Koleszarc6b90392012-07-13 15:21:29 -0700550 return match;
Yaowu Xuf798f9e2012-03-07 12:25:50 -0800551}
552
553
John Koleszar6ad3b742012-11-06 12:02:42 -0800554#define NELEMENTS(x) (sizeof(x)/sizeof(x[0]))
John Koleszara9c75972012-11-08 17:09:30 -0800555#define MAX(x,y) ((x)>(y)?(x):(y))
556#if CONFIG_VP8_ENCODER && !CONFIG_VP9_ENCODER
John Koleszar6ad3b742012-11-06 12:02:42 -0800557#define ARG_CTRL_CNT_MAX NELEMENTS(vp8_arg_ctrl_map)
John Koleszara9c75972012-11-08 17:09:30 -0800558#elif !CONFIG_VP8_ENCODER && CONFIG_VP9_ENCODER
559#define ARG_CTRL_CNT_MAX NELEMENTS(vp9_arg_ctrl_map)
560#else
561#define ARG_CTRL_CNT_MAX MAX(NELEMENTS(vp8_arg_ctrl_map), \
562 NELEMENTS(vp9_arg_ctrl_map))
563#endif
John Koleszarefd54f82012-02-13 16:52:18 -0800564
James Zerndba73762014-05-10 17:44:12 -0700565#if !CONFIG_WEBM_IO
566typedef int stereo_format_t;
567struct EbmlGlobal { int debug; };
568#endif
569
John Koleszar9e50ed72012-02-15 12:39:38 -0800570/* Per-stream configuration */
John Koleszar6ad3b742012-11-06 12:02:42 -0800571struct stream_config {
572 struct vpx_codec_enc_cfg cfg;
573 const char *out_fn;
574 const char *stats_fn;
575 stereo_format_t stereo_fmt;
576 int arg_ctrls[ARG_CTRL_CNT_MAX][2];
577 int arg_ctrl_cnt;
578 int write_webm;
579 int have_kf_max_dist;
John Koleszar9e50ed72012-02-15 12:39:38 -0800580};
581
582
John Koleszar6ad3b742012-11-06 12:02:42 -0800583struct stream_state {
584 int index;
585 struct stream_state *next;
586 struct stream_config config;
587 FILE *file;
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -0800588 struct rate_hist *rate_hist;
Tom Finegan03848f52013-11-05 10:02:18 -0800589 struct EbmlGlobal ebml;
John Koleszar6ad3b742012-11-06 12:02:42 -0800590 uint64_t psnr_sse_total;
591 uint64_t psnr_samples_total;
592 double psnr_totals[4];
593 int psnr_count;
594 int counts[64];
595 vpx_codec_ctx_t encoder;
596 unsigned int frames_out;
597 uint64_t cx_time;
598 size_t nbytes;
599 stats_io_t stats;
John Koleszar34882b92012-03-01 12:50:40 -0800600 struct vpx_image *img;
John Koleszar6ad3b742012-11-06 12:02:42 -0800601 vpx_codec_ctx_t decoder;
John Koleszar6ad3b742012-11-06 12:02:42 -0800602 int mismatch_seen;
John Koleszar9e50ed72012-02-15 12:39:38 -0800603};
604
605
John Koleszar1b27e932012-04-25 17:08:56 -0700606void validate_positive_rational(const char *msg,
John Koleszar6ad3b742012-11-06 12:02:42 -0800607 struct vpx_rational *rat) {
608 if (rat->den < 0) {
609 rat->num *= -1;
610 rat->den *= -1;
611 }
John Koleszar1b27e932012-04-25 17:08:56 -0700612
John Koleszar6ad3b742012-11-06 12:02:42 -0800613 if (rat->num < 0)
614 die("Error: %s must be positive\n", msg);
John Koleszar1b27e932012-04-25 17:08:56 -0700615
John Koleszar6ad3b742012-11-06 12:02:42 -0800616 if (!rat->den)
617 die("Error: %s has zero denominator\n", msg);
John Koleszar1b27e932012-04-25 17:08:56 -0700618}
619
620
Tom Finegan49dc9ca2013-11-21 16:46:40 -0800621static void parse_global_config(struct VpxEncoderConfig *global, char **argv) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800622 char **argi, **argj;
623 struct arg arg;
John Koleszarefd54f82012-02-13 16:52:18 -0800624
John Koleszar6ad3b742012-11-06 12:02:42 -0800625 /* Initialize default parameters */
626 memset(global, 0, sizeof(*global));
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800627 global->codec = get_vpx_encoder_by_index(0);
Deb Mukherjee0d8723f2013-08-19 14:16:26 -0700628 global->passes = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -0800629 global->use_i420 = 1;
Deb Mukherjee0d8723f2013-08-19 14:16:26 -0700630 /* Assign default deadline to good quality */
631 global->deadline = VPX_DL_GOOD_QUALITY;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400632
John Koleszarc6b90392012-07-13 15:21:29 -0700633 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
634 arg.argv_step = 1;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400635
John Koleszarc6b90392012-07-13 15:21:29 -0700636 if (arg_match(&arg, &codecarg, argi)) {
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800637 global->codec = get_vpx_encoder_by_name(arg.val);
638 if (!global->codec)
639 die("Error: Unrecognized argument (%s) to --codec\n", arg.val);
John Koleszarc6b90392012-07-13 15:21:29 -0700640 } else if (arg_match(&arg, &passes, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800641 global->passes = arg_parse_uint(&arg);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400642
John Koleszar6ad3b742012-11-06 12:02:42 -0800643 if (global->passes < 1 || global->passes > 2)
644 die("Error: Invalid number of passes (%d)\n", global->passes);
John Koleszarc6b90392012-07-13 15:21:29 -0700645 } else if (arg_match(&arg, &pass_arg, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800646 global->pass = arg_parse_uint(&arg);
John Koleszar0ea50ce2010-05-18 11:58:33 -0400647
John Koleszar6ad3b742012-11-06 12:02:42 -0800648 if (global->pass < 1 || global->pass > 2)
649 die("Error: Invalid pass selected (%d)\n",
650 global->pass);
651 } else if (arg_match(&arg, &usage, argi))
652 global->usage = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700653 else if (arg_match(&arg, &deadline, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800654 global->deadline = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700655 else if (arg_match(&arg, &best_dl, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800656 global->deadline = VPX_DL_BEST_QUALITY;
John Koleszarc6b90392012-07-13 15:21:29 -0700657 else if (arg_match(&arg, &good_dl, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800658 global->deadline = VPX_DL_GOOD_QUALITY;
John Koleszarc6b90392012-07-13 15:21:29 -0700659 else if (arg_match(&arg, &rt_dl, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800660 global->deadline = VPX_DL_REALTIME;
661 else if (arg_match(&arg, &use_yv12, argi))
662 global->use_i420 = 0;
663 else if (arg_match(&arg, &use_i420, argi))
664 global->use_i420 = 1;
665 else if (arg_match(&arg, &quietarg, argi))
666 global->quiet = 1;
667 else if (arg_match(&arg, &verbosearg, argi))
668 global->verbose = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700669 else if (arg_match(&arg, &limit, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800670 global->limit = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700671 else if (arg_match(&arg, &skip, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800672 global->skip_frames = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700673 else if (arg_match(&arg, &psnrarg, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800674 global->show_psnr = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700675 else if (arg_match(&arg, &recontest, argi))
Ronald S. Bultje9837bf42013-02-15 16:31:02 -0800676 global->test_decode = arg_parse_enum_or_int(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700677 else if (arg_match(&arg, &framerate, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800678 global->framerate = arg_parse_rational(&arg);
679 validate_positive_rational(arg.name, &global->framerate);
680 global->have_framerate = 1;
681 } else if (arg_match(&arg, &out_part, argi))
682 global->out_part = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700683 else if (arg_match(&arg, &debugmode, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800684 global->debug = 1;
John Koleszarc6b90392012-07-13 15:21:29 -0700685 else if (arg_match(&arg, &q_hist_n, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800686 global->show_q_hist_buckets = arg_parse_uint(&arg);
John Koleszarc6b90392012-07-13 15:21:29 -0700687 else if (arg_match(&arg, &rate_hist_n, argi))
John Koleszar6ad3b742012-11-06 12:02:42 -0800688 global->show_rate_hist_buckets = arg_parse_uint(&arg);
Tom Finegan249366b2013-11-25 12:05:19 -0800689 else if (arg_match(&arg, &disable_warnings, argi))
690 global->disable_warnings = 1;
691 else if (arg_match(&arg, &disable_warning_prompt, argi))
692 global->disable_warning_prompt = 1;
Alex Conversed66bd222014-02-21 10:52:09 -0800693 else if (arg_match(&arg, &experimental_bitstream, argi))
694 global->experimental_bitstream = 1;
John Koleszar732cb9a2012-02-14 12:30:17 -0800695 else
John Koleszarc6b90392012-07-13 15:21:29 -0700696 argj++;
697 }
698
John Koleszar6ad3b742012-11-06 12:02:42 -0800699 if (global->pass) {
John Koleszarc6b90392012-07-13 15:21:29 -0700700 /* DWIM: Assume the user meant passes=2 if pass=2 is specified */
John Koleszar6ad3b742012-11-06 12:02:42 -0800701 if (global->pass > global->passes) {
702 warn("Assuming --pass=%d implies --passes=%d\n",
703 global->pass, global->pass);
704 global->passes = global->pass;
John Koleszar732cb9a2012-02-14 12:30:17 -0800705 }
John Koleszarc6b90392012-07-13 15:21:29 -0700706 }
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800707 /* Validate global config */
708 if (global->passes == 0) {
709#if CONFIG_VP9_ENCODER
710 // Make default VP9 passes = 2 until there is a better quality 1-pass
711 // encoder
712 global->passes = (strcmp(global->codec->name, "vp9") == 0 &&
713 global->deadline != VPX_DL_REALTIME) ? 2 : 1;
714#else
715 global->passes = 1;
716#endif
717 }
718
719 if (global->deadline == VPX_DL_REALTIME &&
720 global->passes > 1) {
721 warn("Enforcing one-pass encoding in realtime mode\n");
722 global->passes = 1;
723 }
John Koleszar732cb9a2012-02-14 12:30:17 -0800724}
725
726
Tom Finegan00a35aa2013-11-14 12:37:42 -0800727void open_input_file(struct VpxInputContext *input) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800728 /* Parse certain options from the input file, if possible */
Tom Finegan00a35aa2013-11-14 12:37:42 -0800729 input->file = strcmp(input->filename, "-")
730 ? fopen(input->filename, "rb") : set_binary_mode(stdin);
John Koleszar6ad3b742012-11-06 12:02:42 -0800731
732 if (!input->file)
733 fatal("Failed to open input file");
734
John Koleszar25b6e9f2013-02-12 21:17:56 -0800735 if (!fseeko(input->file, 0, SEEK_END)) {
736 /* Input file is seekable. Figure out how long it is, so we can get
737 * progress info.
738 */
739 input->length = ftello(input->file);
740 rewind(input->file);
741 }
742
John Koleszar6ad3b742012-11-06 12:02:42 -0800743 /* For RAW input sources, these bytes will applied on the first frame
744 * in read_frame().
John Koleszarc6b90392012-07-13 15:21:29 -0700745 */
John Koleszar6ad3b742012-11-06 12:02:42 -0800746 input->detect.buf_read = fread(input->detect.buf, 1, 4, input->file);
747 input->detect.position = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400748
John Koleszar6ad3b742012-11-06 12:02:42 -0800749 if (input->detect.buf_read == 4
Alex Converse64b89f12014-01-06 16:29:09 -0800750 && file_is_y4m(input->detect.buf)) {
John Koleszar8dd82872013-05-06 11:01:35 -0700751 if (y4m_input_open(&input->y4m, input->file, input->detect.buf, 4,
752 input->only_i420) >= 0) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800753 input->file_type = FILE_TYPE_Y4M;
Tom Finegan00a35aa2013-11-14 12:37:42 -0800754 input->width = input->y4m.pic_w;
755 input->height = input->y4m.pic_h;
756 input->framerate.numerator = input->y4m.fps_n;
757 input->framerate.denominator = input->y4m.fps_d;
Alex Converse6c2e88e2014-05-16 12:29:36 -0700758 input->fmt = input->y4m.vpx_fmt;
John Koleszar6ad3b742012-11-06 12:02:42 -0800759 } else
760 fatal("Unsupported Y4M stream.");
Alex Converse64b89f12014-01-06 16:29:09 -0800761 } else if (input->detect.buf_read == 4 && fourcc_is_ivf(input->detect.buf)) {
Tom Finegan6c270ed2013-11-08 11:32:23 -0800762 fatal("IVF is not supported as input.");
John Koleszar6ad3b742012-11-06 12:02:42 -0800763 } else {
764 input->file_type = FILE_TYPE_RAW;
John Koleszarc6b90392012-07-13 15:21:29 -0700765 }
John Koleszar6ad3b742012-11-06 12:02:42 -0800766}
767
768
Tom Finegan00a35aa2013-11-14 12:37:42 -0800769static void close_input_file(struct VpxInputContext *input) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800770 fclose(input->file);
771 if (input->file_type == FILE_TYPE_Y4M)
772 y4m_input_close(&input->y4m);
John Koleszar732cb9a2012-02-14 12:30:17 -0800773}
774
Tom Finegan49dc9ca2013-11-21 16:46:40 -0800775static struct stream_state *new_stream(struct VpxEncoderConfig *global,
Tom Finegan6c270ed2013-11-08 11:32:23 -0800776 struct stream_state *prev) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800777 struct stream_state *stream;
John Koleszar9e50ed72012-02-15 12:39:38 -0800778
John Koleszar6ad3b742012-11-06 12:02:42 -0800779 stream = calloc(1, sizeof(*stream));
780 if (!stream)
781 fatal("Failed to allocate new stream.");
782 if (prev) {
783 memcpy(stream, prev, sizeof(*stream));
784 stream->index++;
785 prev->next = stream;
786 } else {
787 vpx_codec_err_t res;
John Koleszar9e50ed72012-02-15 12:39:38 -0800788
John Koleszar6ad3b742012-11-06 12:02:42 -0800789 /* Populate encoder configuration */
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800790 res = vpx_codec_enc_config_default(global->codec->interface(),
John Koleszar6ad3b742012-11-06 12:02:42 -0800791 &stream->config.cfg,
792 global->usage);
793 if (res)
794 fatal("Failed to get config: %s\n", vpx_codec_err_to_string(res));
John Koleszar9e50ed72012-02-15 12:39:38 -0800795
John Koleszar6ad3b742012-11-06 12:02:42 -0800796 /* Change the default timebase to a high enough value so that the
797 * encoder will always create strictly increasing timestamps.
798 */
799 stream->config.cfg.g_timebase.den = 1000;
John Koleszar9e50ed72012-02-15 12:39:38 -0800800
John Koleszar6ad3b742012-11-06 12:02:42 -0800801 /* Never use the library's default resolution, require it be parsed
802 * from the file or set on the command line.
803 */
804 stream->config.cfg.g_w = 0;
805 stream->config.cfg.g_h = 0;
John Koleszar9e50ed72012-02-15 12:39:38 -0800806
John Koleszar6ad3b742012-11-06 12:02:42 -0800807 /* Initialize remaining stream parameters */
John Koleszar6ad3b742012-11-06 12:02:42 -0800808 stream->config.write_webm = 1;
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700809#if CONFIG_WEBM_IO
James Zerndba73762014-05-10 17:44:12 -0700810 stream->config.stereo_fmt = STEREO_FORMAT_MONO;
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700811 stream->ebml.last_pts_ns = -1;
812 stream->ebml.writer = NULL;
813 stream->ebml.segment = NULL;
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700814#endif
Johann87c40b32012-03-01 16:12:53 -0800815
John Koleszar6ad3b742012-11-06 12:02:42 -0800816 /* Allows removal of the application version from the EBML tags */
817 stream->ebml.debug = global->debug;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800818
819 /* Default lag_in_frames is 0 in realtime mode */
820 if (global->deadline == VPX_DL_REALTIME)
821 stream->config.cfg.g_lag_in_frames = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -0800822 }
John Koleszar9e50ed72012-02-15 12:39:38 -0800823
John Koleszar6ad3b742012-11-06 12:02:42 -0800824 /* Output files must be specified for each stream */
825 stream->config.out_fn = NULL;
John Koleszar9e50ed72012-02-15 12:39:38 -0800826
John Koleszar6ad3b742012-11-06 12:02:42 -0800827 stream->next = NULL;
828 return stream;
John Koleszar9e50ed72012-02-15 12:39:38 -0800829}
830
831
Tom Finegan49dc9ca2013-11-21 16:46:40 -0800832static int parse_stream_params(struct VpxEncoderConfig *global,
John Koleszar9e50ed72012-02-15 12:39:38 -0800833 struct stream_state *stream,
John Koleszar6ad3b742012-11-06 12:02:42 -0800834 char **argv) {
835 char **argi, **argj;
836 struct arg arg;
837 static const arg_def_t **ctrl_args = no_args;
838 static const int *ctrl_args_map = NULL;
839 struct stream_config *config = &stream->config;
840 int eos_mark_found = 0;
John Koleszar9e50ed72012-02-15 12:39:38 -0800841
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800842 // Handle codec specific options
John Koleszara9c75972012-11-08 17:09:30 -0800843 if (0) {
844#if CONFIG_VP8_ENCODER
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800845 } else if (strcmp(global->codec->name, "vp8") == 0) {
John Koleszarc6b90392012-07-13 15:21:29 -0700846 ctrl_args = vp8_args;
847 ctrl_args_map = vp8_arg_ctrl_map;
John Koleszara9c75972012-11-08 17:09:30 -0800848#endif
849#if CONFIG_VP9_ENCODER
Dmitry Kovalev70d96642014-02-11 21:12:23 -0800850 } else if (strcmp(global->codec->name, "vp9") == 0) {
John Koleszara9c75972012-11-08 17:09:30 -0800851 ctrl_args = vp9_args;
852 ctrl_args_map = vp9_arg_ctrl_map;
853#endif
John Koleszarc6b90392012-07-13 15:21:29 -0700854 }
John Koleszar0ea50ce2010-05-18 11:58:33 -0400855
John Koleszarc6b90392012-07-13 15:21:29 -0700856 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
John Koleszarc6b90392012-07-13 15:21:29 -0700857 arg.argv_step = 1;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400858
John Koleszar6ad3b742012-11-06 12:02:42 -0800859 /* Once we've found an end-of-stream marker (--) we want to continue
860 * shifting arguments but not consuming them.
861 */
862 if (eos_mark_found) {
863 argj++;
864 continue;
865 } else if (!strcmp(*argj, "--")) {
866 eos_mark_found = 1;
867 continue;
John Koleszar9e50ed72012-02-15 12:39:38 -0800868 }
869
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800870 if (0) {
871 } else if (arg_match(&arg, &outputfile, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800872 config->out_fn = arg.val;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800873 } else if (arg_match(&arg, &fpf_name, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800874 config->stats_fn = arg.val;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800875 } else if (arg_match(&arg, &use_ivf, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800876 config->write_webm = 0;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800877 } else if (arg_match(&arg, &threads, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800878 config->cfg.g_threads = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800879 } else if (arg_match(&arg, &profile, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800880 config->cfg.g_profile = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800881 } else if (arg_match(&arg, &width, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800882 config->cfg.g_w = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800883 } else if (arg_match(&arg, &height, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800884 config->cfg.g_h = arg_parse_uint(&arg);
James Zerndba73762014-05-10 17:44:12 -0700885#if CONFIG_WEBM_IO
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800886 } else if (arg_match(&arg, &stereo_mode, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800887 config->stereo_fmt = arg_parse_enum_or_int(&arg);
James Zerndba73762014-05-10 17:44:12 -0700888#endif
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800889 } else if (arg_match(&arg, &timebase, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800890 config->cfg.g_timebase = arg_parse_rational(&arg);
891 validate_positive_rational(arg.name, &config->cfg.g_timebase);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800892 } else if (arg_match(&arg, &error_resilient, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800893 config->cfg.g_error_resilient = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800894 } else if (arg_match(&arg, &lag_in_frames, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800895 config->cfg.g_lag_in_frames = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800896 if (global->deadline == VPX_DL_REALTIME &&
897 config->cfg.g_lag_in_frames != 0) {
898 warn("non-zero %s option ignored in realtime mode.\n", arg.name);
899 config->cfg.g_lag_in_frames = 0;
900 }
901 } else if (arg_match(&arg, &dropframe_thresh, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800902 config->cfg.rc_dropframe_thresh = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800903 } else if (arg_match(&arg, &resize_allowed, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800904 config->cfg.rc_resize_allowed = arg_parse_uint(&arg);
Adrian Grangef7bd1272014-04-09 14:51:29 -0700905 } else if (arg_match(&arg, &resize_width, argi)) {
906 config->cfg.rc_scaled_width = arg_parse_uint(&arg);
907 } else if (arg_match(&arg, &resize_height, argi)) {
908 config->cfg.rc_scaled_height = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800909 } else if (arg_match(&arg, &resize_up_thresh, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800910 config->cfg.rc_resize_up_thresh = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800911 } else if (arg_match(&arg, &resize_down_thresh, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800912 config->cfg.rc_resize_down_thresh = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800913 } else if (arg_match(&arg, &end_usage, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800914 config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800915 } else if (arg_match(&arg, &target_bitrate, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800916 config->cfg.rc_target_bitrate = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800917 } else if (arg_match(&arg, &min_quantizer, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800918 config->cfg.rc_min_quantizer = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800919 } else if (arg_match(&arg, &max_quantizer, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800920 config->cfg.rc_max_quantizer = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800921 } else if (arg_match(&arg, &undershoot_pct, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800922 config->cfg.rc_undershoot_pct = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800923 } else if (arg_match(&arg, &overshoot_pct, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800924 config->cfg.rc_overshoot_pct = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800925 } else if (arg_match(&arg, &buf_sz, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800926 config->cfg.rc_buf_sz = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800927 } else if (arg_match(&arg, &buf_initial_sz, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800928 config->cfg.rc_buf_initial_sz = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800929 } else if (arg_match(&arg, &buf_optimal_sz, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800930 config->cfg.rc_buf_optimal_sz = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800931 } else if (arg_match(&arg, &bias_pct, argi)) {
932 config->cfg.rc_2pass_vbr_bias_pct = arg_parse_uint(&arg);
John Koleszar6ad3b742012-11-06 12:02:42 -0800933 if (global->passes < 2)
934 warn("option %s ignored in one-pass mode.\n", arg.name);
935 } else if (arg_match(&arg, &minsection_pct, argi)) {
936 config->cfg.rc_2pass_vbr_minsection_pct = arg_parse_uint(&arg);
937
938 if (global->passes < 2)
939 warn("option %s ignored in one-pass mode.\n", arg.name);
940 } else if (arg_match(&arg, &maxsection_pct, argi)) {
941 config->cfg.rc_2pass_vbr_maxsection_pct = arg_parse_uint(&arg);
942
943 if (global->passes < 2)
944 warn("option %s ignored in one-pass mode.\n", arg.name);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800945 } else if (arg_match(&arg, &kf_min_dist, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800946 config->cfg.kf_min_dist = arg_parse_uint(&arg);
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800947 } else if (arg_match(&arg, &kf_max_dist, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800948 config->cfg.kf_max_dist = arg_parse_uint(&arg);
949 config->have_kf_max_dist = 1;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800950 } else if (arg_match(&arg, &kf_disabled, argi)) {
John Koleszar6ad3b742012-11-06 12:02:42 -0800951 config->cfg.kf_mode = VPX_KF_DISABLED;
Deb Mukherjee25f22d22014-02-13 15:34:42 -0800952 } else {
John Koleszar6ad3b742012-11-06 12:02:42 -0800953 int i, match = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -0800954 for (i = 0; ctrl_args[i]; i++) {
955 if (arg_match(&arg, ctrl_args[i], argi)) {
956 int j;
957 match = 1;
958
959 /* Point either to the next free element or the first
960 * instance of this control.
961 */
962 for (j = 0; j < config->arg_ctrl_cnt; j++)
963 if (config->arg_ctrls[j][0] == ctrl_args_map[i])
964 break;
965
966 /* Update/insert */
967 assert(j < ARG_CTRL_CNT_MAX);
968 if (j < ARG_CTRL_CNT_MAX) {
969 config->arg_ctrls[j][0] = ctrl_args_map[i];
970 config->arg_ctrls[j][1] = arg_parse_enum_or_int(&arg);
971 if (j == config->arg_ctrl_cnt)
972 config->arg_ctrl_cnt++;
973 }
974
John Koleszar9e50ed72012-02-15 12:39:38 -0800975 }
John Koleszar6ad3b742012-11-06 12:02:42 -0800976 }
John Koleszar6ad3b742012-11-06 12:02:42 -0800977 if (!match)
978 argj++;
John Koleszar9e50ed72012-02-15 12:39:38 -0800979 }
John Koleszar6ad3b742012-11-06 12:02:42 -0800980 }
John Koleszar6ad3b742012-11-06 12:02:42 -0800981 return eos_mark_found;
John Koleszar9e50ed72012-02-15 12:39:38 -0800982}
983
984
Tom Finegan44dd3272013-11-20 17:18:28 -0800985#define FOREACH_STREAM(func) \
986 do { \
987 struct stream_state *stream; \
Tom Finegan249366b2013-11-25 12:05:19 -0800988 for (stream = streams; stream; stream = stream->next) { \
Tom Finegan44dd3272013-11-20 17:18:28 -0800989 func; \
990 } \
991 } while (0)
John Koleszar9e50ed72012-02-15 12:39:38 -0800992
993
Alex Conversed66bd222014-02-21 10:52:09 -0800994static void validate_stream_config(const struct stream_state *stream,
995 const struct VpxEncoderConfig *global) {
996 const struct stream_state *streami;
John Koleszar9e50ed72012-02-15 12:39:38 -0800997
John Koleszar6ad3b742012-11-06 12:02:42 -0800998 if (!stream->config.cfg.g_w || !stream->config.cfg.g_h)
999 fatal("Stream %d: Specify stream dimensions with --width (-w) "
1000 " and --height (-h)", stream->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001001
Alex Conversed66bd222014-02-21 10:52:09 -08001002 if (stream->config.cfg.g_profile != 0 && !global->experimental_bitstream) {
1003 fatal("Stream %d: profile %d is experimental and requires the --%s flag",
1004 stream->index, stream->config.cfg.g_profile,
1005 experimental_bitstream.long_name);
1006 }
1007
John Koleszar6ad3b742012-11-06 12:02:42 -08001008 for (streami = stream; streami; streami = streami->next) {
1009 /* All streams require output files */
1010 if (!streami->config.out_fn)
1011 fatal("Stream %d: Output file is required (specify with -o)",
1012 streami->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001013
John Koleszar6ad3b742012-11-06 12:02:42 -08001014 /* Check for two streams outputting to the same file */
1015 if (streami != stream) {
1016 const char *a = stream->config.out_fn;
1017 const char *b = streami->config.out_fn;
1018 if (!strcmp(a, b) && strcmp(a, "/dev/null") && strcmp(a, ":nul"))
1019 fatal("Stream %d: duplicate output file (from stream %d)",
1020 streami->index, stream->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001021 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001022
1023 /* Check for two streams sharing a stats file. */
1024 if (streami != stream) {
1025 const char *a = stream->config.stats_fn;
1026 const char *b = streami->config.stats_fn;
1027 if (a && b && !strcmp(a, b))
1028 fatal("Stream %d: duplicate stats file (from stream %d)",
1029 streami->index, stream->index);
1030 }
1031 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001032}
1033
1034
1035static void set_stream_dimensions(struct stream_state *stream,
1036 unsigned int w,
John Koleszar6ad3b742012-11-06 12:02:42 -08001037 unsigned int h) {
John Koleszar34882b92012-03-01 12:50:40 -08001038 if (!stream->config.cfg.g_w) {
1039 if (!stream->config.cfg.g_h)
1040 stream->config.cfg.g_w = w;
1041 else
1042 stream->config.cfg.g_w = w * stream->config.cfg.g_h / h;
1043 }
1044 if (!stream->config.cfg.g_h) {
1045 stream->config.cfg.g_h = h * stream->config.cfg.g_w / w;
1046 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001047}
1048
1049
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001050static void set_default_kf_interval(struct stream_state *stream,
1051 struct VpxEncoderConfig *global) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001052 /* Use a max keyframe interval of 5 seconds, if none was
1053 * specified on the command line.
1054 */
1055 if (!stream->config.have_kf_max_dist) {
1056 double framerate = (double)global->framerate.num / global->framerate.den;
1057 if (framerate > 0.0)
1058 stream->config.cfg.kf_max_dist = (unsigned int)(5.0 * framerate);
1059 }
Ralph Giles061a16d2012-01-05 15:05:05 -06001060}
1061
Alex Converse6c2e88e2014-05-16 12:29:36 -07001062static const char* file_type_to_string(enum VideoFileType t) {
1063 switch (t) {
1064 case FILE_TYPE_RAW: return "RAW";
1065 case FILE_TYPE_Y4M: return "Y4M";
1066 default: return "Other";
1067 }
1068}
1069
1070static const char* image_format_to_string(vpx_img_fmt_t f) {
1071 switch (f) {
1072 case VPX_IMG_FMT_I420: return "I420";
1073 case VPX_IMG_FMT_I422: return "I422";
1074 case VPX_IMG_FMT_I444: return "I444";
1075 case VPX_IMG_FMT_YV12: return "YV12";
1076 default: return "Other";
1077 }
1078}
Ralph Giles061a16d2012-01-05 15:05:05 -06001079
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001080static void show_stream_config(struct stream_state *stream,
1081 struct VpxEncoderConfig *global,
Tom Finegan00a35aa2013-11-14 12:37:42 -08001082 struct VpxInputContext *input) {
John Koleszar9e50ed72012-02-15 12:39:38 -08001083
1084#define SHOW(field) \
John Koleszar6ad3b742012-11-06 12:02:42 -08001085 fprintf(stderr, " %-28s = %d\n", #field, stream->config.cfg.field)
John Koleszar9e50ed72012-02-15 12:39:38 -08001086
John Koleszar6ad3b742012-11-06 12:02:42 -08001087 if (stream->index == 0) {
1088 fprintf(stderr, "Codec: %s\n",
Dmitry Kovalev70d96642014-02-11 21:12:23 -08001089 vpx_codec_iface_name(global->codec->interface()));
Alex Converse6c2e88e2014-05-16 12:29:36 -07001090 fprintf(stderr, "Source file: %s File Type: %s Format: %s\n",
1091 input->filename,
1092 file_type_to_string(input->file_type),
1093 image_format_to_string(input->fmt));
John Koleszar6ad3b742012-11-06 12:02:42 -08001094 }
1095 if (stream->next || stream->index)
1096 fprintf(stderr, "\nStream Index: %d\n", stream->index);
1097 fprintf(stderr, "Destination file: %s\n", stream->config.out_fn);
1098 fprintf(stderr, "Encoder parameters:\n");
John Koleszar9e50ed72012-02-15 12:39:38 -08001099
John Koleszar6ad3b742012-11-06 12:02:42 -08001100 SHOW(g_usage);
1101 SHOW(g_threads);
1102 SHOW(g_profile);
1103 SHOW(g_w);
1104 SHOW(g_h);
1105 SHOW(g_timebase.num);
1106 SHOW(g_timebase.den);
1107 SHOW(g_error_resilient);
1108 SHOW(g_pass);
1109 SHOW(g_lag_in_frames);
1110 SHOW(rc_dropframe_thresh);
1111 SHOW(rc_resize_allowed);
Adrian Grangef7bd1272014-04-09 14:51:29 -07001112 SHOW(rc_scaled_width);
1113 SHOW(rc_scaled_height);
John Koleszar6ad3b742012-11-06 12:02:42 -08001114 SHOW(rc_resize_up_thresh);
1115 SHOW(rc_resize_down_thresh);
1116 SHOW(rc_end_usage);
1117 SHOW(rc_target_bitrate);
1118 SHOW(rc_min_quantizer);
1119 SHOW(rc_max_quantizer);
1120 SHOW(rc_undershoot_pct);
1121 SHOW(rc_overshoot_pct);
1122 SHOW(rc_buf_sz);
1123 SHOW(rc_buf_initial_sz);
1124 SHOW(rc_buf_optimal_sz);
1125 SHOW(rc_2pass_vbr_bias_pct);
1126 SHOW(rc_2pass_vbr_minsection_pct);
1127 SHOW(rc_2pass_vbr_maxsection_pct);
1128 SHOW(kf_mode);
1129 SHOW(kf_min_dist);
1130 SHOW(kf_max_dist);
John Koleszar9e50ed72012-02-15 12:39:38 -08001131}
1132
1133
1134static void open_output_file(struct stream_state *stream,
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001135 struct VpxEncoderConfig *global) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001136 const char *fn = stream->config.out_fn;
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001137 const struct vpx_codec_enc_cfg *const cfg = &stream->config.cfg;
1138
1139 if (cfg->g_pass == VPX_RC_FIRST_PASS)
1140 return;
John Koleszar9e50ed72012-02-15 12:39:38 -08001141
John Koleszar6ad3b742012-11-06 12:02:42 -08001142 stream->file = strcmp(fn, "-") ? fopen(fn, "wb") : set_binary_mode(stdout);
John Koleszar9e50ed72012-02-15 12:39:38 -08001143
John Koleszar6ad3b742012-11-06 12:02:42 -08001144 if (!stream->file)
1145 fatal("Failed to open output file");
John Koleszar9e50ed72012-02-15 12:39:38 -08001146
John Koleszar6ad3b742012-11-06 12:02:42 -08001147 if (stream->config.write_webm && fseek(stream->file, 0, SEEK_CUR))
1148 fatal("WebM output to pipes not supported.");
John Koleszar9e50ed72012-02-15 12:39:38 -08001149
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001150#if CONFIG_WEBM_IO
John Koleszar6ad3b742012-11-06 12:02:42 -08001151 if (stream->config.write_webm) {
1152 stream->ebml.stream = stream->file;
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001153 write_webm_file_header(&stream->ebml, cfg,
John Koleszar6ad3b742012-11-06 12:02:42 -08001154 &global->framerate,
John Koleszar08b43fe2012-11-13 12:14:28 -08001155 stream->config.stereo_fmt,
1156 global->codec->fourcc);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001157 }
1158#endif
1159
1160 if (!stream->config.write_webm) {
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001161 ivf_write_file_header(stream->file, cfg, global->codec->fourcc, 0);
1162 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001163}
1164
1165
1166static void close_output_file(struct stream_state *stream,
Dmitry Kovalev096ab112014-01-13 15:21:48 -08001167 unsigned int fourcc) {
1168 const struct vpx_codec_enc_cfg *const cfg = &stream->config.cfg;
1169
1170 if (cfg->g_pass == VPX_RC_FIRST_PASS)
1171 return;
1172
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001173#if CONFIG_WEBM_IO
John Koleszar6ad3b742012-11-06 12:02:42 -08001174 if (stream->config.write_webm) {
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -07001175 write_webm_file_footer(&stream->ebml);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001176 }
1177#endif
1178
1179 if (!stream->config.write_webm) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001180 if (!fseek(stream->file, 0, SEEK_SET))
Tom Finegan00a35aa2013-11-14 12:37:42 -08001181 ivf_write_file_header(stream->file, &stream->config.cfg,
John Koleszar6ad3b742012-11-06 12:02:42 -08001182 fourcc,
1183 stream->frames_out);
1184 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001185
John Koleszar6ad3b742012-11-06 12:02:42 -08001186 fclose(stream->file);
John Koleszar9e50ed72012-02-15 12:39:38 -08001187}
1188
1189
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001190static void setup_pass(struct stream_state *stream,
1191 struct VpxEncoderConfig *global,
1192 int pass) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001193 if (stream->config.stats_fn) {
1194 if (!stats_open_file(&stream->stats, stream->config.stats_fn,
1195 pass))
1196 fatal("Failed to open statistics store");
1197 } else {
1198 if (!stats_open_mem(&stream->stats, pass))
1199 fatal("Failed to open statistics store");
1200 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001201
John Koleszar6ad3b742012-11-06 12:02:42 -08001202 stream->config.cfg.g_pass = global->passes == 2
1203 ? pass ? VPX_RC_LAST_PASS : VPX_RC_FIRST_PASS
1204 : VPX_RC_ONE_PASS;
1205 if (pass)
1206 stream->config.cfg.rc_twopass_stats_in = stats_get(&stream->stats);
Yunqing Wangaabae972012-02-29 08:24:53 -05001207
John Koleszar6ad3b742012-11-06 12:02:42 -08001208 stream->cx_time = 0;
1209 stream->nbytes = 0;
1210 stream->frames_out = 0;
John Koleszar9e50ed72012-02-15 12:39:38 -08001211}
1212
1213
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001214static void initialize_encoder(struct stream_state *stream,
1215 struct VpxEncoderConfig *global) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001216 int i;
1217 int flags = 0;
Attila Nagy52cf4dc2012-02-09 12:37:03 +02001218
John Koleszar6ad3b742012-11-06 12:02:42 -08001219 flags |= global->show_psnr ? VPX_CODEC_USE_PSNR : 0;
1220 flags |= global->out_part ? VPX_CODEC_USE_OUTPUT_PARTITION : 0;
John Koleszar9e50ed72012-02-15 12:39:38 -08001221
John Koleszar6ad3b742012-11-06 12:02:42 -08001222 /* Construct Encoder Context */
Dmitry Kovalev70d96642014-02-11 21:12:23 -08001223 vpx_codec_enc_init(&stream->encoder, global->codec->interface(),
John Koleszar6ad3b742012-11-06 12:02:42 -08001224 &stream->config.cfg, flags);
1225 ctx_exit_on_error(&stream->encoder, "Failed to initialize encoder");
John Koleszar9e50ed72012-02-15 12:39:38 -08001226
John Koleszar6ad3b742012-11-06 12:02:42 -08001227 /* Note that we bypass the vpx_codec_control wrapper macro because
1228 * we're being clever to store the control IDs in an array. Real
1229 * applications will want to make use of the enumerations directly
1230 */
1231 for (i = 0; i < stream->config.arg_ctrl_cnt; i++) {
1232 int ctrl = stream->config.arg_ctrls[i][0];
1233 int value = stream->config.arg_ctrls[i][1];
1234 if (vpx_codec_control_(&stream->encoder, ctrl, value))
1235 fprintf(stderr, "Error: Tried to set control %d = %d\n",
1236 ctrl, value);
John Koleszar9e50ed72012-02-15 12:39:38 -08001237
John Koleszar6ad3b742012-11-06 12:02:42 -08001238 ctx_exit_on_error(&stream->encoder, "Failed to control codec");
1239 }
1240
John Koleszar5ebe94f2012-12-23 07:20:10 -08001241#if CONFIG_DECODERS
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001242 if (global->test_decode != TEST_DECODE_OFF) {
Dmitry Kovalev70d96642014-02-11 21:12:23 -08001243 const VpxInterface *decoder = get_vpx_decoder_by_name(global->codec->name);
1244 vpx_codec_dec_init(&stream->decoder, decoder->interface(), NULL, 0);
John Koleszar6ad3b742012-11-06 12:02:42 -08001245 }
John Koleszar5ebe94f2012-12-23 07:20:10 -08001246#endif
John Koleszar9e50ed72012-02-15 12:39:38 -08001247}
1248
1249
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001250static void encode_frame(struct stream_state *stream,
1251 struct VpxEncoderConfig *global,
1252 struct vpx_image *img,
1253 unsigned int frames_in) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001254 vpx_codec_pts_t frame_start, next_frame_start;
1255 struct vpx_codec_enc_cfg *cfg = &stream->config.cfg;
1256 struct vpx_usec_timer timer;
John Koleszar9e50ed72012-02-15 12:39:38 -08001257
John Koleszar6ad3b742012-11-06 12:02:42 -08001258 frame_start = (cfg->g_timebase.den * (int64_t)(frames_in - 1)
1259 * global->framerate.den)
1260 / cfg->g_timebase.num / global->framerate.num;
1261 next_frame_start = (cfg->g_timebase.den * (int64_t)(frames_in)
1262 * global->framerate.den)
1263 / cfg->g_timebase.num / global->framerate.num;
John Koleszar34882b92012-03-01 12:50:40 -08001264
1265 /* Scale if necessary */
1266 if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) {
Alex Converse2a3092f2014-05-16 18:49:04 -07001267 if (img->fmt != VPX_IMG_FMT_I420 && img->fmt != VPX_IMG_FMT_YV12) {
1268 fprintf(stderr, "%s can only scale 4:2:0 8bpp inputs\n", exec_name);
1269 exit(EXIT_FAILURE);
1270 }
Deb Mukherjee47031c02014-05-16 18:52:01 -07001271#if CONFIG_LIBYUV
John Koleszar34882b92012-03-01 12:50:40 -08001272 if (!stream->img)
1273 stream->img = vpx_img_alloc(NULL, VPX_IMG_FMT_I420,
1274 cfg->g_w, cfg->g_h, 16);
1275 I420Scale(img->planes[VPX_PLANE_Y], img->stride[VPX_PLANE_Y],
1276 img->planes[VPX_PLANE_U], img->stride[VPX_PLANE_U],
1277 img->planes[VPX_PLANE_V], img->stride[VPX_PLANE_V],
1278 img->d_w, img->d_h,
1279 stream->img->planes[VPX_PLANE_Y],
1280 stream->img->stride[VPX_PLANE_Y],
1281 stream->img->planes[VPX_PLANE_U],
1282 stream->img->stride[VPX_PLANE_U],
1283 stream->img->planes[VPX_PLANE_V],
1284 stream->img->stride[VPX_PLANE_V],
1285 stream->img->d_w, stream->img->d_h,
1286 kFilterBox);
John Koleszar34882b92012-03-01 12:50:40 -08001287 img = stream->img;
Deb Mukherjee47031c02014-05-16 18:52:01 -07001288#else
1289 stream->encoder.err = 1;
1290 ctx_exit_on_error(&stream->encoder,
1291 "Stream %d: Failed to encode frame.\n"
1292 "Scaling disabled in this configuration. \n"
1293 "To enable, configure with --enable-libyuv\n",
1294 stream->index);
1295#endif
John Koleszar34882b92012-03-01 12:50:40 -08001296 }
1297
John Koleszar6ad3b742012-11-06 12:02:42 -08001298 vpx_usec_timer_start(&timer);
1299 vpx_codec_encode(&stream->encoder, img, frame_start,
1300 (unsigned long)(next_frame_start - frame_start),
1301 0, global->deadline);
1302 vpx_usec_timer_mark(&timer);
1303 stream->cx_time += vpx_usec_timer_elapsed(&timer);
1304 ctx_exit_on_error(&stream->encoder, "Stream %d: Failed to encode frame",
1305 stream->index);
John Koleszar9e50ed72012-02-15 12:39:38 -08001306}
1307
1308
John Koleszar6ad3b742012-11-06 12:02:42 -08001309static void update_quantizer_histogram(struct stream_state *stream) {
1310 if (stream->config.cfg.g_pass != VPX_RC_FIRST_PASS) {
1311 int q;
John Koleszar9e50ed72012-02-15 12:39:38 -08001312
John Koleszar6ad3b742012-11-06 12:02:42 -08001313 vpx_codec_control(&stream->encoder, VP8E_GET_LAST_QUANTIZER_64, &q);
1314 ctx_exit_on_error(&stream->encoder, "Failed to read quantizer");
1315 stream->counts[q]++;
1316 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001317}
1318
1319
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001320static void get_cx_data(struct stream_state *stream,
1321 struct VpxEncoderConfig *global,
1322 int *got_data) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001323 const vpx_codec_cx_pkt_t *pkt;
1324 const struct vpx_codec_enc_cfg *cfg = &stream->config.cfg;
1325 vpx_codec_iter_t iter = NULL;
John Koleszar9e50ed72012-02-15 12:39:38 -08001326
Ronald S. Bultje88d703c2012-11-09 09:07:50 -08001327 *got_data = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -08001328 while ((pkt = vpx_codec_get_cx_data(&stream->encoder, &iter))) {
1329 static size_t fsize = 0;
James Zerne3578af2014-04-17 10:47:08 -07001330 static int64_t ivf_header_pos = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -08001331
John Koleszar6ad3b742012-11-06 12:02:42 -08001332 switch (pkt->kind) {
1333 case VPX_CODEC_CX_FRAME_PKT:
1334 if (!(pkt->data.frame.flags & VPX_FRAME_IS_FRAGMENT)) {
1335 stream->frames_out++;
1336 }
Jingning Hanbabbd5d2013-02-13 09:03:21 -08001337 if (!global->quiet)
1338 fprintf(stderr, " %6luF", (unsigned long)pkt->data.frame.sz);
John Koleszar6ad3b742012-11-06 12:02:42 -08001339
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -08001340 update_rate_histogram(stream->rate_hist, cfg, pkt);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001341#if CONFIG_WEBM_IO
John Koleszar6ad3b742012-11-06 12:02:42 -08001342 if (stream->config.write_webm) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001343 write_webm_block(&stream->ebml, cfg, pkt);
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001344 }
1345#endif
1346 if (!stream->config.write_webm) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001347 if (pkt->data.frame.partition_id <= 0) {
1348 ivf_header_pos = ftello(stream->file);
1349 fsize = pkt->data.frame.sz;
1350
Dmitry Kovalev373b0f92014-01-29 17:57:21 -08001351 ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize);
John Koleszar6ad3b742012-11-06 12:02:42 -08001352 } else {
1353 fsize += pkt->data.frame.sz;
1354
1355 if (!(pkt->data.frame.flags & VPX_FRAME_IS_FRAGMENT)) {
James Zerne3578af2014-04-17 10:47:08 -07001356 const int64_t currpos = ftello(stream->file);
John Koleszar6ad3b742012-11-06 12:02:42 -08001357 fseeko(stream->file, ivf_header_pos, SEEK_SET);
Tom Finegan00a35aa2013-11-14 12:37:42 -08001358 ivf_write_frame_size(stream->file, fsize);
John Koleszar6ad3b742012-11-06 12:02:42 -08001359 fseeko(stream->file, currpos, SEEK_SET);
1360 }
1361 }
1362
1363 (void) fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz,
1364 stream->file);
1365 }
1366 stream->nbytes += pkt->data.raw.sz;
Attila Nagy52cf4dc2012-02-09 12:37:03 +02001367
John Koleszar9e50ed72012-02-15 12:39:38 -08001368 *got_data = 1;
John Koleszar5ebe94f2012-12-23 07:20:10 -08001369#if CONFIG_DECODERS
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001370 if (global->test_decode != TEST_DECODE_OFF && !stream->mismatch_seen) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001371 vpx_codec_decode(&stream->decoder, pkt->data.frame.buf,
Tom Finegan7a691f12014-02-10 14:55:25 -08001372 (unsigned int)pkt->data.frame.sz, NULL, 0);
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001373 if (stream->decoder.err) {
1374 warn_or_exit_on_error(&stream->decoder,
1375 global->test_decode == TEST_DECODE_FATAL,
1376 "Failed to decode frame %d in stream %d",
1377 stream->frames_out + 1, stream->index);
1378 stream->mismatch_seen = stream->frames_out + 1;
1379 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001380 }
John Koleszar5ebe94f2012-12-23 07:20:10 -08001381#endif
John Koleszar6ad3b742012-11-06 12:02:42 -08001382 break;
1383 case VPX_CODEC_STATS_PKT:
1384 stream->frames_out++;
John Koleszar6ad3b742012-11-06 12:02:42 -08001385 stats_write(&stream->stats,
1386 pkt->data.twopass_stats.buf,
1387 pkt->data.twopass_stats.sz);
1388 stream->nbytes += pkt->data.raw.sz;
1389 break;
1390 case VPX_CODEC_PSNR_PKT:
1391
1392 if (global->show_psnr) {
1393 int i;
1394
1395 stream->psnr_sse_total += pkt->data.psnr.sse[0];
1396 stream->psnr_samples_total += pkt->data.psnr.samples[0];
1397 for (i = 0; i < 4; i++) {
Jingning Hanbabbd5d2013-02-13 09:03:21 -08001398 if (!global->quiet)
1399 fprintf(stderr, "%.3f ", pkt->data.psnr.psnr[i]);
John Koleszar6ad3b742012-11-06 12:02:42 -08001400 stream->psnr_totals[i] += pkt->data.psnr.psnr[i];
1401 }
1402 stream->psnr_count++;
1403 }
1404
1405 break;
1406 default:
1407 break;
John Koleszar9e50ed72012-02-15 12:39:38 -08001408 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001409 }
John Koleszar9e50ed72012-02-15 12:39:38 -08001410}
1411
1412
John Koleszar6ad3b742012-11-06 12:02:42 -08001413static void show_psnr(struct stream_state *stream) {
1414 int i;
1415 double ovpsnr;
John Koleszar9e50ed72012-02-15 12:39:38 -08001416
John Koleszar6ad3b742012-11-06 12:02:42 -08001417 if (!stream->psnr_count)
1418 return;
John Koleszar9e50ed72012-02-15 12:39:38 -08001419
John Koleszar6ad3b742012-11-06 12:02:42 -08001420 fprintf(stderr, "Stream %d PSNR (Overall/Avg/Y/U/V)", stream->index);
Dmitry Kovalev2dad0e12014-02-27 14:00:41 -08001421 ovpsnr = sse_to_psnr((double)stream->psnr_samples_total, 255.0,
1422 (double)stream->psnr_sse_total);
John Koleszar6ad3b742012-11-06 12:02:42 -08001423 fprintf(stderr, " %.3f", ovpsnr);
John Koleszar9e50ed72012-02-15 12:39:38 -08001424
John Koleszar6ad3b742012-11-06 12:02:42 -08001425 for (i = 0; i < 4; i++) {
1426 fprintf(stderr, " %.3f", stream->psnr_totals[i] / stream->psnr_count);
1427 }
1428 fprintf(stderr, "\n");
John Koleszar9e50ed72012-02-15 12:39:38 -08001429}
1430
1431
John Koleszar25b6e9f2013-02-12 21:17:56 -08001432static float usec_to_fps(uint64_t usec, unsigned int frames) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001433 return (float)(usec > 0 ? frames * 1000000.0 / (float)usec : 0);
John Koleszar9e50ed72012-02-15 12:39:38 -08001434}
1435
John Koleszar732cb9a2012-02-14 12:30:17 -08001436
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001437static void test_decode(struct stream_state *stream,
John Koleszarb3c350a2013-03-13 12:15:43 -07001438 enum TestDecodeFatality fatal,
Dmitry Kovalev70d96642014-02-11 21:12:23 -08001439 const VpxInterface *codec) {
John Koleszarb3c350a2013-03-13 12:15:43 -07001440 vpx_image_t enc_img, dec_img;
1441
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001442 if (stream->mismatch_seen)
1443 return;
1444
John Koleszarb3c350a2013-03-13 12:15:43 -07001445 /* Get the internal reference frame */
Dmitry Kovalev70d96642014-02-11 21:12:23 -08001446 if (strcmp(codec->name, "vp8") == 0) {
John Koleszarb3c350a2013-03-13 12:15:43 -07001447 struct vpx_ref_frame ref_enc, ref_dec;
1448 int width, height;
1449
1450 width = (stream->config.cfg.g_w + 15) & ~15;
1451 height = (stream->config.cfg.g_h + 15) & ~15;
1452 vpx_img_alloc(&ref_enc.img, VPX_IMG_FMT_I420, width, height, 1);
1453 enc_img = ref_enc.img;
1454 vpx_img_alloc(&ref_dec.img, VPX_IMG_FMT_I420, width, height, 1);
1455 dec_img = ref_dec.img;
1456
1457 ref_enc.frame_type = VP8_LAST_FRAME;
1458 ref_dec.frame_type = VP8_LAST_FRAME;
1459 vpx_codec_control(&stream->encoder, VP8_COPY_REFERENCE, &ref_enc);
1460 vpx_codec_control(&stream->decoder, VP8_COPY_REFERENCE, &ref_dec);
1461 } else {
1462 struct vp9_ref_frame ref;
1463
1464 ref.idx = 0;
1465 vpx_codec_control(&stream->encoder, VP9_GET_REFERENCE, &ref);
1466 enc_img = ref.img;
1467 vpx_codec_control(&stream->decoder, VP9_GET_REFERENCE, &ref);
1468 dec_img = ref.img;
1469 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001470 ctx_exit_on_error(&stream->encoder, "Failed to get encoder reference frame");
John Koleszar6ad3b742012-11-06 12:02:42 -08001471 ctx_exit_on_error(&stream->decoder, "Failed to get decoder reference frame");
John Koleszarefd54f82012-02-13 16:52:18 -08001472
John Koleszarb3c350a2013-03-13 12:15:43 -07001473 if (!compare_img(&enc_img, &dec_img)) {
Deb Mukherjee23144d22013-03-12 14:21:08 -07001474 int y[4], u[4], v[4];
John Koleszarb3c350a2013-03-13 12:15:43 -07001475 find_mismatch(&enc_img, &dec_img, y, u, v);
Ronald S. Bultje97dd7342013-03-04 14:12:49 -08001476 stream->decoder.err = 1;
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001477 warn_or_exit_on_error(&stream->decoder, fatal == TEST_DECODE_FATAL,
Deb Mukherjee23144d22013-03-12 14:21:08 -07001478 "Stream %d: Encode/decode mismatch on frame %d at"
1479 " Y[%d, %d] {%d/%d},"
1480 " U[%d, %d] {%d/%d},"
1481 " V[%d, %d] {%d/%d}",
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001482 stream->index, stream->frames_out,
Deb Mukherjee23144d22013-03-12 14:21:08 -07001483 y[0], y[1], y[2], y[3],
1484 u[0], u[1], u[2], u[3],
1485 v[0], v[1], v[2], v[3]);
Ronald S. Bultje195172c2012-11-10 16:22:49 -08001486 stream->mismatch_seen = stream->frames_out;
John Koleszar6ad3b742012-11-06 12:02:42 -08001487 }
John Koleszarb3c350a2013-03-13 12:15:43 -07001488
1489 vpx_img_free(&enc_img);
1490 vpx_img_free(&dec_img);
John Koleszar6ad3b742012-11-06 12:02:42 -08001491}
John Koleszarefd54f82012-02-13 16:52:18 -08001492
John Koleszar25b6e9f2013-02-12 21:17:56 -08001493
1494static void print_time(const char *label, int64_t etl) {
Tom Finegan7a691f12014-02-10 14:55:25 -08001495 int64_t hours;
1496 int64_t mins;
1497 int64_t secs;
John Koleszar25b6e9f2013-02-12 21:17:56 -08001498
1499 if (etl >= 0) {
1500 hours = etl / 3600;
1501 etl -= hours * 3600;
1502 mins = etl / 60;
1503 etl -= mins * 60;
1504 secs = etl;
1505
Yaowu Xuc1548262014-04-03 18:05:17 -07001506 fprintf(stderr, "[%3s %2"PRId64":%02"PRId64":%02"PRId64"] ",
John Koleszar25b6e9f2013-02-12 21:17:56 -08001507 label, hours, mins, secs);
1508 } else {
1509 fprintf(stderr, "[%3s unknown] ", label);
1510 }
1511}
1512
Tom Finegan44dd3272013-11-20 17:18:28 -08001513
1514int main(int argc, const char **argv_) {
1515 int pass;
1516 vpx_image_t raw;
1517 int frame_avail, got_data;
1518
1519 struct VpxInputContext input = {0};
Tom Finegan49dc9ca2013-11-21 16:46:40 -08001520 struct VpxEncoderConfig global;
Tom Finegan44dd3272013-11-20 17:18:28 -08001521 struct stream_state *streams = NULL;
1522 char **argv, **argi;
1523 uint64_t cx_time = 0;
1524 int stream_cnt = 0;
1525 int res = 0;
John Koleszarefd54f82012-02-13 16:52:18 -08001526
John Koleszar6ad3b742012-11-06 12:02:42 -08001527 exec_name = argv_[0];
John Koleszar9e50ed72012-02-15 12:39:38 -08001528
John Koleszar6ad3b742012-11-06 12:02:42 -08001529 if (argc < 3)
1530 usage_exit();
1531
1532 /* Setup default input stream settings */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001533 input.framerate.numerator = 30;
1534 input.framerate.denominator = 1;
John Koleszar8dd82872013-05-06 11:01:35 -07001535 input.only_i420 = 1;
John Koleszar6ad3b742012-11-06 12:02:42 -08001536
1537 /* First parse the global configuration values, because we want to apply
1538 * other parameters on top of the default configuration provided by the
1539 * codec.
1540 */
1541 argv = argv_dup(argc - 1, argv_ + 1);
1542 parse_global_config(&global, argv);
1543
Alex Converse6c2e88e2014-05-16 12:29:36 -07001544 input.fmt = global.use_i420 ? VPX_IMG_FMT_I420 : VPX_IMG_FMT_YV12;
Tom Finegan44dd3272013-11-20 17:18:28 -08001545
John Koleszar6ad3b742012-11-06 12:02:42 -08001546 {
1547 /* Now parse each stream's parameters. Using a local scope here
1548 * due to the use of 'stream' as loop variable in FOREACH_STREAM
1549 * loops
John Koleszarefd54f82012-02-13 16:52:18 -08001550 */
John Koleszar6ad3b742012-11-06 12:02:42 -08001551 struct stream_state *stream = NULL;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001552
John Koleszar6ad3b742012-11-06 12:02:42 -08001553 do {
1554 stream = new_stream(&global, stream);
1555 stream_cnt++;
1556 if (!streams)
1557 streams = stream;
1558 } while (parse_stream_params(&global, stream, argv));
John Koleszarc6b90392012-07-13 15:21:29 -07001559 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04001560
John Koleszarc6b90392012-07-13 15:21:29 -07001561 /* Check for unrecognized options */
1562 for (argi = argv; *argi; argi++)
1563 if (argi[0][0] == '-' && argi[0][1])
1564 die("Error: Unrecognized option %s\n", *argi);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001565
Tom Finegan249366b2013-11-25 12:05:19 -08001566 FOREACH_STREAM(check_encoder_config(global.disable_warning_prompt,
1567 &global, &stream->config.cfg););
1568
John Koleszarc6b90392012-07-13 15:21:29 -07001569 /* Handle non-option arguments */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001570 input.filename = argv[0];
John Koleszar0ea50ce2010-05-18 11:58:33 -04001571
Tom Finegan00a35aa2013-11-14 12:37:42 -08001572 if (!input.filename)
John Koleszarc6b90392012-07-13 15:21:29 -07001573 usage_exit();
John Koleszar53291892010-10-22 14:48:21 -04001574
John Koleszar8dd82872013-05-06 11:01:35 -07001575 /* Decide if other chroma subsamplings than 4:2:0 are supported */
1576 if (global.codec->fourcc == VP9_FOURCC)
1577 input.only_i420 = 0;
John Koleszar8dd82872013-05-06 11:01:35 -07001578
John Koleszar6ad3b742012-11-06 12:02:42 -08001579 for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) {
John Koleszar2bf563c2013-03-11 15:03:00 -07001580 int frames_in = 0, seen_frames = 0;
John Koleszar25b6e9f2013-02-12 21:17:56 -08001581 int64_t estimated_time_left = -1;
1582 int64_t average_rate = -1;
James Zerne3578af2014-04-17 10:47:08 -07001583 int64_t lagged_count = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001584
John Koleszar6ad3b742012-11-06 12:02:42 -08001585 open_input_file(&input);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001586
John Koleszar6ad3b742012-11-06 12:02:42 -08001587 /* If the input file doesn't specify its w/h (raw files), try to get
1588 * the data from the first stream's configuration.
John Koleszarc6b90392012-07-13 15:21:29 -07001589 */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001590 if (!input.width || !input.height)
John Koleszar6ad3b742012-11-06 12:02:42 -08001591 FOREACH_STREAM( {
1592 if (stream->config.cfg.g_w && stream->config.cfg.g_h) {
Tom Finegan00a35aa2013-11-14 12:37:42 -08001593 input.width = stream->config.cfg.g_w;
1594 input.height = stream->config.cfg.g_h;
John Koleszar6ad3b742012-11-06 12:02:42 -08001595 break;
John Koleszarc6b90392012-07-13 15:21:29 -07001596 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001597 });
John Koleszarc6b90392012-07-13 15:21:29 -07001598
John Koleszar6ad3b742012-11-06 12:02:42 -08001599 /* Update stream configurations from the input file's parameters */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001600 if (!input.width || !input.height)
John Koleszar34882b92012-03-01 12:50:40 -08001601 fatal("Specify stream dimensions with --width (-w) "
1602 " and --height (-h)");
Tom Finegan00a35aa2013-11-14 12:37:42 -08001603 FOREACH_STREAM(set_stream_dimensions(stream, input.width, input.height));
Alex Conversed66bd222014-02-21 10:52:09 -08001604 FOREACH_STREAM(validate_stream_config(stream, &global));
John Koleszar77e6b452010-11-03 13:58:40 -04001605
John Koleszar6ad3b742012-11-06 12:02:42 -08001606 /* Ensure that --passes and --pass are consistent. If --pass is set and
1607 * --passes=2, ensure --fpf was set.
1608 */
1609 if (global.pass && global.passes == 2)
1610 FOREACH_STREAM( {
1611 if (!stream->config.stats_fn)
1612 die("Stream %d: Must specify --fpf when --pass=%d"
1613 " and --passes=2\n", stream->index, global.pass);
1614 });
John Koleszar3245d462010-06-10 17:10:12 -04001615
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -07001616#if !CONFIG_WEBM_IO
1617 FOREACH_STREAM({
1618 stream->config.write_webm = 0;
1619 warn("vpxenc was compiled without WebM container support."
1620 "Producing IVF output");
1621 });
1622#endif
1623
John Koleszar6ad3b742012-11-06 12:02:42 -08001624 /* Use the frame rate from the file only if none was specified
1625 * on the command-line.
1626 */
Tom Finegan00a35aa2013-11-14 12:37:42 -08001627 if (!global.have_framerate) {
1628 global.framerate.num = input.framerate.numerator;
1629 global.framerate.den = input.framerate.denominator;
1630 }
Timothy B. Terriberry44d89492010-05-26 18:27:51 -04001631
John Koleszar6ad3b742012-11-06 12:02:42 -08001632 FOREACH_STREAM(set_default_kf_interval(stream, &global));
1633
1634 /* Show configuration */
1635 if (global.verbose && pass == 0)
1636 FOREACH_STREAM(show_stream_config(stream, &global, &input));
1637
1638 if (pass == (global.pass ? global.pass - 1 : 0)) {
1639 if (input.file_type == FILE_TYPE_Y4M)
John Koleszarc6b90392012-07-13 15:21:29 -07001640 /*The Y4M reader does its own allocation.
1641 Just initialize this here to avoid problems if we never read any
1642 frames.*/
1643 memset(&raw, 0, sizeof(raw));
1644 else
Alex Converse6c2e88e2014-05-16 12:29:36 -07001645 vpx_img_alloc(&raw, input.fmt, input.width, input.height, 32);
John Koleszar05239f02011-06-29 09:53:12 -04001646
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -08001647 FOREACH_STREAM(stream->rate_hist =
1648 init_rate_histogram(&stream->config.cfg,
1649 &global.framerate));
John Koleszar0ea50ce2010-05-18 11:58:33 -04001650 }
1651
John Koleszar6ad3b742012-11-06 12:02:42 -08001652 FOREACH_STREAM(setup_pass(stream, &global, pass));
James Zern8cb09712013-08-14 18:28:42 -07001653 FOREACH_STREAM(open_output_file(stream, &global));
John Koleszar6ad3b742012-11-06 12:02:42 -08001654 FOREACH_STREAM(initialize_encoder(stream, &global));
John Koleszar0ea50ce2010-05-18 11:58:33 -04001655
John Koleszarc6b90392012-07-13 15:21:29 -07001656 frame_avail = 1;
1657 got_data = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001658
John Koleszarc6b90392012-07-13 15:21:29 -07001659 while (frame_avail || got_data) {
John Koleszarc6b90392012-07-13 15:21:29 -07001660 struct vpx_usec_timer timer;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001661
John Koleszar6ad3b742012-11-06 12:02:42 -08001662 if (!global.limit || frames_in < global.limit) {
1663 frame_avail = read_frame(&input, &raw);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001664
John Koleszarc6b90392012-07-13 15:21:29 -07001665 if (frame_avail)
1666 frames_in++;
John Koleszar2bf563c2013-03-11 15:03:00 -07001667 seen_frames = frames_in > global.skip_frames ?
1668 frames_in - global.skip_frames : 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001669
John Koleszar6ad3b742012-11-06 12:02:42 -08001670 if (!global.quiet) {
John Koleszar2bf563c2013-03-11 15:03:00 -07001671 float fps = usec_to_fps(cx_time, seen_frames);
John Koleszar25b6e9f2013-02-12 21:17:56 -08001672 fprintf(stderr, "\rPass %d/%d ", pass + 1, global.passes);
1673
John Koleszar6ad3b742012-11-06 12:02:42 -08001674 if (stream_cnt == 1)
1675 fprintf(stderr,
John Koleszar25b6e9f2013-02-12 21:17:56 -08001676 "frame %4d/%-4d %7"PRId64"B ",
1677 frames_in, streams->frames_out, (int64_t)streams->nbytes);
John Koleszar6ad3b742012-11-06 12:02:42 -08001678 else
John Koleszar25b6e9f2013-02-12 21:17:56 -08001679 fprintf(stderr, "frame %4d ", frames_in);
1680
John Koleszarebf8b9f2013-02-27 11:14:23 -08001681 fprintf(stderr, "%7"PRId64" %s %.2f %s ",
John Koleszar25b6e9f2013-02-12 21:17:56 -08001682 cx_time > 9999999 ? cx_time / 1000 : cx_time,
1683 cx_time > 9999999 ? "ms" : "us",
Yaowu Xu014acfa2013-09-17 16:31:46 -07001684 fps >= 1.0 ? fps : fps * 60,
1685 fps >= 1.0 ? "fps" : "fpm");
John Koleszar25b6e9f2013-02-12 21:17:56 -08001686 print_time("ETA", estimated_time_left);
1687 fprintf(stderr, "\033[K");
John Koleszar3245d462010-06-10 17:10:12 -04001688 }
1689
John Koleszarc6b90392012-07-13 15:21:29 -07001690 } else
1691 frame_avail = 0;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001692
John Koleszar6ad3b742012-11-06 12:02:42 -08001693 if (frames_in > global.skip_frames) {
1694 vpx_usec_timer_start(&timer);
1695 FOREACH_STREAM(encode_frame(stream, &global,
1696 frame_avail ? &raw : NULL,
1697 frames_in));
1698 vpx_usec_timer_mark(&timer);
John Koleszarebf8b9f2013-02-27 11:14:23 -08001699 cx_time += vpx_usec_timer_elapsed(&timer);
John Koleszarc6b90392012-07-13 15:21:29 -07001700
John Koleszar6ad3b742012-11-06 12:02:42 -08001701 FOREACH_STREAM(update_quantizer_histogram(stream));
John Koleszarc6b90392012-07-13 15:21:29 -07001702
John Koleszar0ea50ce2010-05-18 11:58:33 -04001703 got_data = 0;
John Koleszar6ad3b742012-11-06 12:02:42 -08001704 FOREACH_STREAM(get_cx_data(stream, &global, &got_data));
John Koleszar0ea50ce2010-05-18 11:58:33 -04001705
John Koleszar25b6e9f2013-02-12 21:17:56 -08001706 if (!got_data && input.length && !streams->frames_out) {
John Koleszar2bf563c2013-03-11 15:03:00 -07001707 lagged_count = global.limit ? seen_frames : ftello(input.file);
John Koleszarebf8b9f2013-02-27 11:14:23 -08001708 } else if (input.length) {
John Koleszar25b6e9f2013-02-12 21:17:56 -08001709 int64_t remaining;
1710 int64_t rate;
1711
1712 if (global.limit) {
James Zerne3578af2014-04-17 10:47:08 -07001713 const int64_t frame_in_lagged = (seen_frames - lagged_count) * 1000;
John Koleszar25b6e9f2013-02-12 21:17:56 -08001714
1715 rate = cx_time ? frame_in_lagged * (int64_t)1000000 / cx_time : 0;
John Koleszar2bf563c2013-03-11 15:03:00 -07001716 remaining = 1000 * (global.limit - global.skip_frames
1717 - seen_frames + lagged_count);
John Koleszar25b6e9f2013-02-12 21:17:56 -08001718 } else {
James Zerne3578af2014-04-17 10:47:08 -07001719 const int64_t input_pos = ftello(input.file);
1720 const int64_t input_pos_lagged = input_pos - lagged_count;
1721 const int64_t limit = input.length;
John Koleszar25b6e9f2013-02-12 21:17:56 -08001722
1723 rate = cx_time ? input_pos_lagged * (int64_t)1000000 / cx_time : 0;
1724 remaining = limit - input_pos + lagged_count;
1725 }
1726
1727 average_rate = (average_rate <= 0)
1728 ? rate
1729 : (average_rate * 7 + rate) / 8;
1730 estimated_time_left = average_rate ? remaining / average_rate : -1;
1731 }
1732
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001733 if (got_data && global.test_decode != TEST_DECODE_OFF)
John Koleszarb3c350a2013-03-13 12:15:43 -07001734 FOREACH_STREAM(test_decode(stream, global.test_decode, global.codec));
John Koleszarc6b90392012-07-13 15:21:29 -07001735 }
John Koleszar0ea50ce2010-05-18 11:58:33 -04001736
John Koleszarc6b90392012-07-13 15:21:29 -07001737 fflush(stdout);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001738 }
1739
John Koleszar6ad3b742012-11-06 12:02:42 -08001740 if (stream_cnt > 1)
1741 fprintf(stderr, "\n");
John Koleszar3fde9962011-06-20 17:09:29 -04001742
John Koleszar6ad3b742012-11-06 12:02:42 -08001743 if (!global.quiet)
1744 FOREACH_STREAM(fprintf(
1745 stderr,
1746 "\rPass %d/%d frame %4d/%-4d %7"PRId64"B %7lub/f %7"PRId64"b/s"
1747 " %7"PRId64" %s (%.2f fps)\033[K\n", pass + 1,
1748 global.passes, frames_in, stream->frames_out, (int64_t)stream->nbytes,
John Koleszar2bf563c2013-03-11 15:03:00 -07001749 seen_frames ? (unsigned long)(stream->nbytes * 8 / seen_frames) : 0,
1750 seen_frames ? (int64_t)stream->nbytes * 8
John Koleszar6ad3b742012-11-06 12:02:42 -08001751 * (int64_t)global.framerate.num / global.framerate.den
John Koleszar2bf563c2013-03-11 15:03:00 -07001752 / seen_frames
John Koleszar6ad3b742012-11-06 12:02:42 -08001753 : 0,
1754 stream->cx_time > 9999999 ? stream->cx_time / 1000 : stream->cx_time,
1755 stream->cx_time > 9999999 ? "ms" : "us",
John Koleszar2bf563c2013-03-11 15:03:00 -07001756 usec_to_fps(stream->cx_time, seen_frames));
John Koleszar6ad3b742012-11-06 12:02:42 -08001757 );
John Koleszarc96f8e22011-06-21 16:42:33 -04001758
John Koleszar6ad3b742012-11-06 12:02:42 -08001759 if (global.show_psnr)
1760 FOREACH_STREAM(show_psnr(stream));
John Koleszarc6b90392012-07-13 15:21:29 -07001761
John Koleszar6ad3b742012-11-06 12:02:42 -08001762 FOREACH_STREAM(vpx_codec_destroy(&stream->encoder));
1763
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001764 if (global.test_decode != TEST_DECODE_OFF) {
John Koleszar6ad3b742012-11-06 12:02:42 -08001765 FOREACH_STREAM(vpx_codec_destroy(&stream->decoder));
Yaowu Xuf798f9e2012-03-07 12:25:50 -08001766 }
1767
John Koleszar6ad3b742012-11-06 12:02:42 -08001768 close_input_file(&input);
John Koleszar0ea50ce2010-05-18 11:58:33 -04001769
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001770 if (global.test_decode == TEST_DECODE_FATAL) {
1771 FOREACH_STREAM(res |= stream->mismatch_seen);
1772 }
John Koleszar6ad3b742012-11-06 12:02:42 -08001773 FOREACH_STREAM(close_output_file(stream, global.codec->fourcc));
John Koleszar0ea50ce2010-05-18 11:58:33 -04001774
John Koleszar6ad3b742012-11-06 12:02:42 -08001775 FOREACH_STREAM(stats_close(&stream->stats, global.passes - 1));
John Koleszarc6b90392012-07-13 15:21:29 -07001776
John Koleszar6ad3b742012-11-06 12:02:42 -08001777 if (global.pass)
John Koleszarc6b90392012-07-13 15:21:29 -07001778 break;
1779 }
1780
John Koleszar6ad3b742012-11-06 12:02:42 -08001781 if (global.show_q_hist_buckets)
1782 FOREACH_STREAM(show_q_histogram(stream->counts,
1783 global.show_q_hist_buckets));
1784
1785 if (global.show_rate_hist_buckets)
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -08001786 FOREACH_STREAM(show_rate_histogram(stream->rate_hist,
John Koleszar6ad3b742012-11-06 12:02:42 -08001787 &stream->config.cfg,
1788 global.show_rate_hist_buckets));
Dmitry Kovalevf11da2b2014-01-29 12:28:29 -08001789 FOREACH_STREAM(destroy_rate_histogram(stream->rate_hist));
John Koleszar6ad3b742012-11-06 12:02:42 -08001790
Ronald S. Bultje31214972012-10-11 10:13:48 -07001791#if CONFIG_INTERNAL_STATS
John Koleszar6ad3b742012-11-06 12:02:42 -08001792 /* TODO(jkoleszar): This doesn't belong in this executable. Do it for now,
1793 * to match some existing utilities.
1794 */
Yaowu Xu47e784e2013-10-16 16:29:28 -07001795 if (!(global.pass == 1 && global.passes == 2))
1796 FOREACH_STREAM({
1797 FILE *f = fopen("opsnr.stt", "a");
1798 if (stream->mismatch_seen) {
1799 fprintf(f, "First mismatch occurred in frame %d\n",
1800 stream->mismatch_seen);
1801 } else {
1802 fprintf(f, "No mismatch detected in recon buffers\n");
1803 }
1804 fclose(f);
1805 });
Ronald S. Bultje31214972012-10-11 10:13:48 -07001806#endif
John Koleszarc6b90392012-07-13 15:21:29 -07001807
1808 vpx_img_free(&raw);
John Koleszarc6b90392012-07-13 15:21:29 -07001809 free(argv);
John Koleszar6ad3b742012-11-06 12:02:42 -08001810 free(streams);
Ronald S. Bultje9837bf42013-02-15 16:31:02 -08001811 return res ? EXIT_FAILURE : EXIT_SUCCESS;
John Koleszar0ea50ce2010-05-18 11:58:33 -04001812}