John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | /* |
John Koleszar | c2140b8 | 2010-09-09 08:16:39 -0400 | [diff] [blame] | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | * |
John Koleszar | 3245d46 | 2010-06-10 17:10:12 -0400 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
John Koleszar | 3245d46 | 2010-06-10 17:10:12 -0400 | [diff] [blame] | 7 | * in the file PATENTS. All contributing project authors may |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 8 | * be found in the AUTHORS file in the root of the source tree. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 11 | #include "./vpxenc.h" |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 12 | #include "./vpx_config.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 13 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 14 | #include <assert.h> |
| 15 | #include <limits.h> |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 16 | #include <math.h> |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 17 | #include <stdarg.h> |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 18 | #include <stdio.h> |
| 19 | #include <stdlib.h> |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 20 | #include <string.h> |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 21 | |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 22 | #include "vpx/vpx_encoder.h" |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 23 | #if CONFIG_DECODERS |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 24 | #include "vpx/vpx_decoder.h" |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 25 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 26 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 27 | #include "third_party/libyuv/include/libyuv/scale.h" |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 28 | #include "./args.h" |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 29 | #include "./ivfenc.h" |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 30 | #include "./tools_common.h" |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 31 | |
John Koleszar | 7b8dfcb | 2012-11-06 16:59:01 -0800 | [diff] [blame] | 32 | #if CONFIG_VP8_ENCODER || CONFIG_VP9_ENCODER |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 33 | #include "vpx/vp8cx.h" |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 34 | #endif |
John Koleszar | 7b8dfcb | 2012-11-06 16:59:01 -0800 | [diff] [blame] | 35 | #if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 36 | #include "vpx/vp8dx.h" |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 37 | #endif |
| 38 | |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 39 | #include "vpx/vpx_integer.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 40 | #include "vpx_ports/mem_ops.h" |
| 41 | #include "vpx_ports/vpx_timer.h" |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 42 | #include "./rate_hist.h" |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 43 | #include "./vpxstats.h" |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 44 | #include "./warnings.h" |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 45 | #if CONFIG_WEBM_IO |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 46 | #include "./webmenc.h" |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 47 | #endif |
Tom Finegan | 78cb2e6 | 2013-11-07 21:28:45 -0800 | [diff] [blame] | 48 | #include "./y4minput.h" |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 49 | |
John Koleszar | 6291dd4 | 2012-06-19 21:05:36 -0700 | [diff] [blame] | 50 | /* Swallow warnings about unused results of fread/fwrite */ |
| 51 | static size_t wrap_fread(void *ptr, size_t size, size_t nmemb, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 52 | FILE *stream) { |
| 53 | return fread(ptr, size, nmemb, stream); |
John Koleszar | 6291dd4 | 2012-06-19 21:05:36 -0700 | [diff] [blame] | 54 | } |
| 55 | #define fread wrap_fread |
| 56 | |
| 57 | static size_t wrap_fwrite(const void *ptr, size_t size, size_t nmemb, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 58 | FILE *stream) { |
| 59 | return fwrite(ptr, size, nmemb, stream); |
John Koleszar | 6291dd4 | 2012-06-19 21:05:36 -0700 | [diff] [blame] | 60 | } |
| 61 | #define fwrite wrap_fwrite |
| 62 | |
| 63 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 64 | static const char *exec_name; |
| 65 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 66 | static void warn_or_exit_on_errorv(vpx_codec_ctx_t *ctx, int fatal, |
| 67 | const char *s, va_list ap) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 68 | if (ctx->err) { |
| 69 | const char *detail = vpx_codec_error_detail(ctx); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 70 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 71 | vfprintf(stderr, s, ap); |
| 72 | fprintf(stderr, ": %s\n", vpx_codec_error(ctx)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 73 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 74 | if (detail) |
| 75 | fprintf(stderr, " %s\n", detail); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 76 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 77 | if (fatal) |
| 78 | exit(EXIT_FAILURE); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 79 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 80 | } |
| 81 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 82 | static 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 | |
| 90 | static 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 Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 99 | int read_frame(struct VpxInputContext *input_ctx, vpx_image_t *img) { |
| 100 | FILE *f = input_ctx->file; |
| 101 | y4m_input *y4m = &input_ctx->y4m; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 102 | int shortread = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 103 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 104 | if (input_ctx->file_type == FILE_TYPE_Y4M) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 105 | if (y4m_input_fetch_frame(y4m, f, img) < 1) |
| 106 | return 0; |
| 107 | } else { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 108 | shortread = read_yuv_frame(input_ctx, img); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | return !shortread; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 112 | } |
| 113 | |
Alex Converse | 64b89f1 | 2014-01-06 16:29:09 -0800 | [diff] [blame] | 114 | int file_is_y4m(const char detect[4]) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 115 | if (memcmp(detect, "YUV4", 4) == 0) { |
| 116 | return 1; |
| 117 | } |
| 118 | return 0; |
Timothy B. Terriberry | 44d8949 | 2010-05-26 18:27:51 -0400 | [diff] [blame] | 119 | } |
| 120 | |
Alex Converse | 64b89f1 | 2014-01-06 16:29:09 -0800 | [diff] [blame] | 121 | int fourcc_is_ivf(const char detect[4]) { |
| 122 | if (memcmp(detect, "DKIF", 4) == 0) { |
| 123 | return 1; |
| 124 | } |
| 125 | return 0; |
| 126 | } |
John Koleszar | dc66630 | 2010-10-20 12:05:48 -0400 | [diff] [blame] | 127 | |
John Koleszar | 75afcee | 2010-10-26 16:22:22 -0400 | [diff] [blame] | 128 | static const arg_def_t debugmode = ARG_DEF("D", "debug", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 129 | "Debug mode (makes output deterministic)"); |
John Koleszar | 5329189 | 2010-10-22 14:48:21 -0400 | [diff] [blame] | 130 | static const arg_def_t outputfile = ARG_DEF("o", "output", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 131 | "Output filename"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 132 | static const arg_def_t use_yv12 = ARG_DEF(NULL, "yv12", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 133 | "Input file is YV12 "); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 134 | static const arg_def_t use_i420 = ARG_DEF(NULL, "i420", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 135 | "Input file is I420 (default)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 136 | static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 137 | "Codec to use"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 138 | static const arg_def_t passes = ARG_DEF("p", "passes", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 139 | "Number of passes (1/2)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 140 | static const arg_def_t pass_arg = ARG_DEF(NULL, "pass", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 141 | "Pass to execute (1/2)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 142 | static const arg_def_t fpf_name = ARG_DEF(NULL, "fpf", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 143 | "First pass statistics file name"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 144 | static const arg_def_t limit = ARG_DEF(NULL, "limit", 1, |
| 145 | "Stop encoding after n input frames"); |
Yaowu Xu | 03d5d69 | 2012-03-14 07:37:10 -0700 | [diff] [blame] | 146 | static const arg_def_t skip = ARG_DEF(NULL, "skip", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 147 | "Skip the first n input frames"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 148 | static const arg_def_t deadline = ARG_DEF("d", "deadline", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 149 | "Deadline per frame (usec)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 150 | static const arg_def_t best_dl = ARG_DEF(NULL, "best", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 151 | "Use Best Quality Deadline"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 152 | static const arg_def_t good_dl = ARG_DEF(NULL, "good", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 153 | "Use Good Quality Deadline"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 154 | static const arg_def_t rt_dl = ARG_DEF(NULL, "rt", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 155 | "Use Realtime Quality Deadline"); |
James Zern | 1fc3cc8 | 2012-10-25 18:31:35 -0700 | [diff] [blame] | 156 | static const arg_def_t quietarg = ARG_DEF("q", "quiet", 0, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 157 | "Do not print encode progress"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 158 | static const arg_def_t verbosearg = ARG_DEF("v", "verbose", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 159 | "Show encoder parameters"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 160 | static const arg_def_t psnrarg = ARG_DEF(NULL, "psnr", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 161 | "Show PSNR in status line"); |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 162 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 163 | static 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 | }; |
| 169 | static const arg_def_t recontest = ARG_DEF_ENUM(NULL, "test-decode", 1, |
| 170 | "Test encode/decode mismatch", |
| 171 | test_decode_enum); |
John Koleszar | 28f177c | 2010-10-21 16:52:14 -0400 | [diff] [blame] | 172 | static const arg_def_t framerate = ARG_DEF(NULL, "fps", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 173 | "Stream frame rate (rate/scale)"); |
John Koleszar | 456bfb1 | 2010-10-21 16:23:20 -0400 | [diff] [blame] | 174 | static const arg_def_t use_ivf = ARG_DEF(NULL, "ivf", 0, |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 175 | "Output IVF (default is WebM if WebM IO is enabled)"); |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 176 | static const arg_def_t out_part = ARG_DEF("P", "output-partitions", 0, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 177 | "Makes encoder output partitions. Requires IVF output!"); |
John Koleszar | 3fde996 | 2011-06-20 17:09:29 -0400 | [diff] [blame] | 178 | static const arg_def_t q_hist_n = ARG_DEF(NULL, "q-hist", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 179 | "Show quantizer histogram (n-buckets)"); |
John Koleszar | c96f8e2 | 2011-06-21 16:42:33 -0400 | [diff] [blame] | 180 | static const arg_def_t rate_hist_n = ARG_DEF(NULL, "rate-hist", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 181 | "Show rate histogram (n-buckets)"); |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 182 | static const arg_def_t disable_warnings = |
| 183 | ARG_DEF(NULL, "disable-warnings", 0, |
| 184 | "Disable warnings about potentially incorrect encode settings."); |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 185 | static 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 Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 188 | static const arg_def_t experimental_bitstream = |
| 189 | ARG_DEF(NULL, "experimental-bitstream", 0, |
| 190 | "Allow experimental bitstream features."); |
| 191 | |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 192 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 193 | static const arg_def_t *main_args[] = { |
| 194 | &debugmode, |
| 195 | &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 196 | &deadline, &best_dl, &good_dl, &rt_dl, |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 197 | &quietarg, &verbosearg, &psnrarg, &use_ivf, &out_part, &q_hist_n, |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 198 | &rate_hist_n, &disable_warnings, &disable_warning_prompt, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 199 | NULL |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 200 | }; |
| 201 | |
| 202 | static const arg_def_t usage = ARG_DEF("u", "usage", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 203 | "Usage profile number to use"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 204 | static const arg_def_t threads = ARG_DEF("t", "threads", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 205 | "Max number of threads to use"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 206 | static const arg_def_t profile = ARG_DEF(NULL, "profile", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 207 | "Bitstream profile number to use"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 208 | static const arg_def_t width = ARG_DEF("w", "width", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 209 | "Frame width"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 210 | static const arg_def_t height = ARG_DEF("h", "height", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 211 | "Frame height"); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 212 | #if CONFIG_WEBM_IO |
Alok Ahuja | 72c76ca | 2011-04-21 00:50:07 -0700 | [diff] [blame] | 213 | static const struct arg_enum_list stereo_mode_enum[] = { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 214 | {"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 Ahuja | 72c76ca | 2011-04-21 00:50:07 -0700 | [diff] [blame] | 220 | }; |
| 221 | static const arg_def_t stereo_mode = ARG_DEF_ENUM(NULL, "stereo-mode", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 222 | "Stereo 3D video format", stereo_mode_enum); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 223 | #endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 224 | static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 225 | "Output timestamp precision (fractional seconds)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 226 | static const arg_def_t error_resilient = ARG_DEF(NULL, "error-resilient", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 227 | "Enable error resiliency features"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 228 | static const arg_def_t lag_in_frames = ARG_DEF(NULL, "lag-in-frames", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 229 | "Max number of frames to lag"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 230 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 231 | static const arg_def_t *global_args[] = { |
| 232 | &use_yv12, &use_i420, &usage, &threads, &profile, |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 233 | &width, &height, |
| 234 | #if CONFIG_WEBM_IO |
| 235 | &stereo_mode, |
| 236 | #endif |
| 237 | &timebase, &framerate, |
Deb Mukherjee | dfd89f2 | 2013-01-25 11:30:28 -0800 | [diff] [blame] | 238 | &error_resilient, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 239 | &lag_in_frames, NULL |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | static const arg_def_t dropframe_thresh = ARG_DEF(NULL, "drop-frame", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 243 | "Temporal resampling threshold (buf %)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 244 | static const arg_def_t resize_allowed = ARG_DEF(NULL, "resize-allowed", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 245 | "Spatial resampling enabled (bool)"); |
Adrian Grange | f7bd127 | 2014-04-09 14:51:29 -0700 | [diff] [blame] | 246 | static const arg_def_t resize_width = ARG_DEF(NULL, "resize-width", 1, |
| 247 | "Width of encoded frame"); |
| 248 | static const arg_def_t resize_height = ARG_DEF(NULL, "resize-height", 1, |
| 249 | "Height of encoded frame"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 250 | static const arg_def_t resize_up_thresh = ARG_DEF(NULL, "resize-up", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 251 | "Upscale threshold (buf %)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 252 | static const arg_def_t resize_down_thresh = ARG_DEF(NULL, "resize-down", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 253 | "Downscale threshold (buf %)"); |
John Koleszar | 500fec2 | 2011-03-21 07:50:42 -0400 | [diff] [blame] | 254 | static const struct arg_enum_list end_usage_enum[] = { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 255 | {"vbr", VPX_VBR}, |
| 256 | {"cbr", VPX_CBR}, |
| 257 | {"cq", VPX_CQ}, |
Deb Mukherjee | e378a89 | 2013-08-29 16:21:44 -0700 | [diff] [blame] | 258 | {"q", VPX_Q}, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 259 | {NULL, 0} |
John Koleszar | 500fec2 | 2011-03-21 07:50:42 -0400 | [diff] [blame] | 260 | }; |
| 261 | static const arg_def_t end_usage = ARG_DEF_ENUM(NULL, "end-usage", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 262 | "Rate control mode", end_usage_enum); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 263 | static const arg_def_t target_bitrate = ARG_DEF(NULL, "target-bitrate", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 264 | "Bitrate (kbps)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 265 | static const arg_def_t min_quantizer = ARG_DEF(NULL, "min-q", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 266 | "Minimum (best) quantizer"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 267 | static const arg_def_t max_quantizer = ARG_DEF(NULL, "max-q", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 268 | "Maximum (worst) quantizer"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 269 | static const arg_def_t undershoot_pct = ARG_DEF(NULL, "undershoot-pct", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 270 | "Datarate undershoot (min) target (%)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 271 | static const arg_def_t overshoot_pct = ARG_DEF(NULL, "overshoot-pct", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 272 | "Datarate overshoot (max) target (%)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 273 | static const arg_def_t buf_sz = ARG_DEF(NULL, "buf-sz", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 274 | "Client buffer size (ms)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 275 | static const arg_def_t buf_initial_sz = ARG_DEF(NULL, "buf-initial-sz", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 276 | "Client initial buffer size (ms)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 277 | static const arg_def_t buf_optimal_sz = ARG_DEF(NULL, "buf-optimal-sz", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 278 | "Client optimal buffer size (ms)"); |
| 279 | static const arg_def_t *rc_args[] = { |
Adrian Grange | f7bd127 | 2014-04-09 14:51:29 -0700 | [diff] [blame] | 280 | &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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 284 | }; |
| 285 | |
| 286 | |
| 287 | static const arg_def_t bias_pct = ARG_DEF(NULL, "bias-pct", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 288 | "CBR/VBR bias (0=CBR, 100=VBR)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 289 | static const arg_def_t minsection_pct = ARG_DEF(NULL, "minsection-pct", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 290 | "GOP min bitrate (% of target)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 291 | static const arg_def_t maxsection_pct = ARG_DEF(NULL, "maxsection-pct", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 292 | "GOP max bitrate (% of target)"); |
| 293 | static const arg_def_t *rc_twopass_args[] = { |
| 294 | &bias_pct, &minsection_pct, &maxsection_pct, NULL |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 295 | }; |
| 296 | |
| 297 | |
| 298 | static const arg_def_t kf_min_dist = ARG_DEF(NULL, "kf-min-dist", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 299 | "Minimum keyframe interval (frames)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 300 | static const arg_def_t kf_max_dist = ARG_DEF(NULL, "kf-max-dist", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 301 | "Maximum keyframe interval (frames)"); |
John Koleszar | b1e36f2 | 2010-06-24 08:41:51 -0400 | [diff] [blame] | 302 | static const arg_def_t kf_disabled = ARG_DEF(NULL, "disable-kf", 0, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 303 | "Disable keyframe placement"); |
| 304 | static const arg_def_t *kf_args[] = { |
| 305 | &kf_min_dist, &kf_max_dist, &kf_disabled, NULL |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 306 | }; |
| 307 | |
| 308 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 309 | static const arg_def_t noise_sens = ARG_DEF(NULL, "noise-sensitivity", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 310 | "Noise sensitivity (frames to blur)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 311 | static const arg_def_t sharpness = ARG_DEF(NULL, "sharpness", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 312 | "Filter sharpness (0-7)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 313 | static const arg_def_t static_thresh = ARG_DEF(NULL, "static-thresh", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 314 | "Motion detection threshold"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 315 | static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 316 | "CPU Used (-16..16)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 317 | static const arg_def_t auto_altref = ARG_DEF(NULL, "auto-alt-ref", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 318 | "Enable automatic alt reference frames"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 319 | static const arg_def_t arnr_maxframes = ARG_DEF(NULL, "arnr-maxframes", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 320 | "AltRef Max Frames"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 321 | static const arg_def_t arnr_strength = ARG_DEF(NULL, "arnr-strength", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 322 | "AltRef Strength"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 323 | static const arg_def_t arnr_type = ARG_DEF(NULL, "arnr-type", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 324 | "AltRef Type"); |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 325 | static const struct arg_enum_list tuning_enum[] = { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 326 | {"psnr", VP8_TUNE_PSNR}, |
| 327 | {"ssim", VP8_TUNE_SSIM}, |
| 328 | {NULL, 0} |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 329 | }; |
| 330 | static const arg_def_t tune_ssim = ARG_DEF_ENUM(NULL, "tune", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 331 | "Material to favor", tuning_enum); |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 332 | static const arg_def_t cq_level = ARG_DEF(NULL, "cq-level", 1, |
Deb Mukherjee | e378a89 | 2013-08-29 16:21:44 -0700 | [diff] [blame] | 333 | "Constant/Constrained Quality level"); |
John Koleszar | 1654ae9 | 2011-07-28 09:17:32 -0400 | [diff] [blame] | 334 | static const arg_def_t max_intra_rate_pct = ARG_DEF(NULL, "max-intra-rate", 1, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 335 | "Max I-frame bitrate (pct)"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 336 | |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 337 | #if CONFIG_VP8_ENCODER |
James Zern | 5248d71 | 2014-01-14 17:56:45 -0800 | [diff] [blame] | 338 | static const arg_def_t token_parts = |
| 339 | ARG_DEF(NULL, "token-parts", 1, "Number of token partitions to use, log2"); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 340 | static 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 Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 343 | &tune_ssim, &cq_level, &max_intra_rate_pct, |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 344 | NULL |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 345 | }; |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 346 | static 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 Zern | 5248d71 | 2014-01-14 17:56:45 -0800 | [diff] [blame] | 357 | static const arg_def_t tile_cols = |
| 358 | ARG_DEF(NULL, "tile-columns", 1, "Number of tile columns to use, log2"); |
| 359 | static const arg_def_t tile_rows = |
| 360 | ARG_DEF(NULL, "tile-rows", 1, "Number of tile rows to use, log2"); |
| 361 | static const arg_def_t lossless = ARG_DEF(NULL, "lossless", 1, "Lossless mode"); |
| 362 | static const arg_def_t frame_parallel_decoding = ARG_DEF( |
| 363 | NULL, "frame-parallel", 1, "Enable frame parallel decodability features"); |
| 364 | static const arg_def_t aq_mode = ARG_DEF( |
| 365 | NULL, "aq-mode", 1, |
Dmitry Kovalev | c8c1b43 | 2014-04-14 12:12:50 -0700 | [diff] [blame] | 366 | "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, " |
Marco Paniconi | 0eb88c9 | 2014-04-03 15:49:03 -0700 | [diff] [blame] | 367 | "3: cyclic refresh)"); |
| 368 | static const arg_def_t frame_periodic_boost = ARG_DEF( |
| 369 | NULL, "frame_boost", 1, |
Dmitry Kovalev | c8c1b43 | 2014-04-14 12:12:50 -0700 | [diff] [blame] | 370 | "Enable frame periodic boost (0: off (default), 1: on)"); |
James Zern | 5248d71 | 2014-01-14 17:56:45 -0800 | [diff] [blame] | 371 | |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 372 | static const arg_def_t *vp9_args[] = { |
| 373 | &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh, |
Adrian Grange | 0a386b9 | 2014-04-28 14:28:58 -0700 | [diff] [blame] | 374 | &tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type, |
Yaowu Xu | d262e26 | 2013-02-20 07:27:35 -0800 | [diff] [blame] | 375 | &tune_ssim, &cq_level, &max_intra_rate_pct, &lossless, |
Marco Paniconi | 0eb88c9 | 2014-04-03 15:49:03 -0700 | [diff] [blame] | 376 | &frame_parallel_decoding, &aq_mode, &frame_periodic_boost, |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 377 | NULL |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 378 | }; |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 379 | static const int vp9_arg_ctrl_map[] = { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 380 | VP8E_SET_CPUUSED, VP8E_SET_ENABLEAUTOALTREF, |
| 381 | VP8E_SET_NOISE_SENSITIVITY, VP8E_SET_SHARPNESS, VP8E_SET_STATIC_THRESHOLD, |
Ronald S. Bultje | 89a206e | 2013-02-08 11:33:11 -0800 | [diff] [blame] | 382 | VP9E_SET_TILE_COLUMNS, VP9E_SET_TILE_ROWS, |
Adrian Grange | 0a386b9 | 2014-04-28 14:28:58 -0700 | [diff] [blame] | 383 | VP8E_SET_ARNR_MAXFRAMES, VP8E_SET_ARNR_STRENGTH, VP8E_SET_ARNR_TYPE, |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 384 | VP8E_SET_TUNING, VP8E_SET_CQ_LEVEL, VP8E_SET_MAX_INTRA_BITRATE_PCT, |
Guillaume Martres | 1708465 | 2013-11-14 19:23:57 +0100 | [diff] [blame] | 385 | VP9E_SET_LOSSLESS, VP9E_SET_FRAME_PARALLEL_DECODING, VP9E_SET_AQ_MODE, |
Marco Paniconi | 0eb88c9 | 2014-04-03 15:49:03 -0700 | [diff] [blame] | 386 | VP9E_SET_FRAME_PERIODIC_BOOST, |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 387 | 0 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 388 | }; |
| 389 | #endif |
| 390 | |
| 391 | static const arg_def_t *no_args[] = { NULL }; |
| 392 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 393 | void usage_exit() { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 394 | int i; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 395 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 396 | fprintf(stderr, "Usage: %s <options> -o dst_filename src_filename \n", |
| 397 | exec_name); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 398 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 399 | fprintf(stderr, "\nOptions:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 400 | arg_show_usage(stderr, main_args); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 401 | fprintf(stderr, "\nEncoder Global Options:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 402 | arg_show_usage(stderr, global_args); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 403 | fprintf(stderr, "\nRate Control Options:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 404 | arg_show_usage(stderr, rc_args); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 405 | fprintf(stderr, "\nTwopass Rate Control Options:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 406 | arg_show_usage(stderr, rc_twopass_args); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 407 | fprintf(stderr, "\nKeyframe Placement Options:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 408 | arg_show_usage(stderr, kf_args); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 409 | #if CONFIG_VP8_ENCODER |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 410 | fprintf(stderr, "\nVP8 Specific Options:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 411 | arg_show_usage(stderr, vp8_args); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 412 | #endif |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 413 | #if CONFIG_VP9_ENCODER |
| 414 | fprintf(stderr, "\nVP9 Specific Options:\n"); |
John Koleszar | b9e2761 | 2013-06-25 09:15:07 -0700 | [diff] [blame] | 415 | arg_show_usage(stderr, vp9_args); |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 416 | #endif |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 417 | 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 Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 420 | fprintf(stderr, "\nIncluded encoders:\n\n"); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 421 | |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 422 | for (i = 0; i < get_vpx_encoder_count(); ++i) { |
| 423 | const VpxInterface *const encoder = get_vpx_encoder_by_index(i); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 424 | fprintf(stderr, " %-6s - %s\n", |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 425 | encoder->name, vpx_codec_iface_name(encoder->interface())); |
| 426 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 427 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 428 | exit(EXIT_FAILURE); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 429 | } |
| 430 | |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 431 | #define mmin(a, b) ((a) < (b) ? (a) : (b)) |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 432 | static void find_mismatch(const vpx_image_t *const img1, |
| 433 | const vpx_image_t *const img2, |
Jingning Han | 12bf079 | 2013-04-06 10:00:53 -0700 | [diff] [blame] | 434 | int yloc[4], int uloc[4], int vloc[4]) { |
James Zern | 6253e8e | 2014-01-31 16:10:43 -0800 | [diff] [blame] | 435 | 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 Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 444 | yloc[0] = yloc[1] = yloc[2] = yloc[3] = -1; |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 445 | for (i = 0, match = 1; match && i < img1->d_h; i += bsize) { |
| 446 | for (j = 0; match && j < img1->d_w; j += bsize) { |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 447 | int k, l; |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 448 | 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 Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 452 | 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 Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 458 | 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 Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 462 | match = 0; |
| 463 | break; |
| 464 | } |
| 465 | } |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 466 | } |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 467 | } |
| 468 | } |
Jingning Han | 12bf079 | 2013-04-06 10:00:53 -0700 | [diff] [blame] | 469 | |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 470 | uloc[0] = uloc[1] = uloc[2] = uloc[3] = -1; |
John Koleszar | beae501 | 2013-05-08 16:07:38 -0700 | [diff] [blame] | 471 | for (i = 0, match = 1; match && i < c_h; i += bsizey) { |
John Koleszar | cc0eeda | 2013-06-11 11:28:08 -0700 | [diff] [blame] | 472 | for (j = 0; match && j < c_w; j += bsizex) { |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 473 | int k, l; |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 474 | 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 Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 478 | 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 Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 484 | 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 Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 487 | (i + k) * img2->stride[VPX_PLANE_U] + j + l); |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 488 | match = 0; |
| 489 | break; |
| 490 | } |
| 491 | } |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 492 | } |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 493 | } |
| 494 | } |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 495 | vloc[0] = vloc[1] = vloc[2] = vloc[3] = -1; |
John Koleszar | beae501 | 2013-05-08 16:07:38 -0700 | [diff] [blame] | 496 | for (i = 0, match = 1; match && i < c_h; i += bsizey) { |
John Koleszar | cc0eeda | 2013-06-11 11:28:08 -0700 | [diff] [blame] | 497 | for (j = 0; match && j < c_w; j += bsizex) { |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 498 | int k, l; |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 499 | 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 Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 503 | 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 Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 509 | 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 Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 513 | match = 0; |
| 514 | break; |
| 515 | } |
| 516 | } |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 517 | } |
Deb Mukherjee | 0742b1e | 2012-11-15 15:14:38 -0800 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 521 | |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 522 | static int compare_img(const vpx_image_t *const img1, |
| 523 | const vpx_image_t *const img2) { |
James Zern | 6253e8e | 2014-01-31 16:10:43 -0800 | [diff] [blame] | 524 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 529 | int match = 1; |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 530 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 531 | match &= (img1->fmt == img2->fmt); |
hkuang | 3671e62 | 2014-01-22 14:58:59 -0800 | [diff] [blame] | 532 | match &= (img1->d_w == img2->d_w); |
| 533 | match &= (img1->d_h == img2->d_h); |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 534 | |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 535 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 538 | img1->d_w) == 0); |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 539 | |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 540 | 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 Koleszar | beae501 | 2013-05-08 16:07:38 -0700 | [diff] [blame] | 543 | c_w) == 0); |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 544 | |
James Zern | d04112d | 2014-01-31 15:49:17 -0800 | [diff] [blame] | 545 | 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 Koleszar | beae501 | 2013-05-08 16:07:38 -0700 | [diff] [blame] | 548 | c_w) == 0); |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 549 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 550 | return match; |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 554 | #define NELEMENTS(x) (sizeof(x)/sizeof(x[0])) |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 555 | #define MAX(x,y) ((x)>(y)?(x):(y)) |
| 556 | #if CONFIG_VP8_ENCODER && !CONFIG_VP9_ENCODER |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 557 | #define ARG_CTRL_CNT_MAX NELEMENTS(vp8_arg_ctrl_map) |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 558 | #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 Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 564 | |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 565 | #if !CONFIG_WEBM_IO |
| 566 | typedef int stereo_format_t; |
| 567 | struct EbmlGlobal { int debug; }; |
| 568 | #endif |
| 569 | |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 570 | /* Per-stream configuration */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 571 | struct 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 580 | }; |
| 581 | |
| 582 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 583 | struct stream_state { |
| 584 | int index; |
| 585 | struct stream_state *next; |
| 586 | struct stream_config config; |
| 587 | FILE *file; |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 588 | struct rate_hist *rate_hist; |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 589 | struct EbmlGlobal ebml; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 590 | 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 Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 600 | struct vpx_image *img; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 601 | vpx_codec_ctx_t decoder; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 602 | int mismatch_seen; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 603 | }; |
| 604 | |
| 605 | |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 606 | void validate_positive_rational(const char *msg, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 607 | struct vpx_rational *rat) { |
| 608 | if (rat->den < 0) { |
| 609 | rat->num *= -1; |
| 610 | rat->den *= -1; |
| 611 | } |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 612 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 613 | if (rat->num < 0) |
| 614 | die("Error: %s must be positive\n", msg); |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 615 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 616 | if (!rat->den) |
| 617 | die("Error: %s has zero denominator\n", msg); |
John Koleszar | 1b27e93 | 2012-04-25 17:08:56 -0700 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 621 | static void parse_global_config(struct VpxEncoderConfig *global, char **argv) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 622 | char **argi, **argj; |
| 623 | struct arg arg; |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 624 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 625 | /* Initialize default parameters */ |
| 626 | memset(global, 0, sizeof(*global)); |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 627 | global->codec = get_vpx_encoder_by_index(0); |
Deb Mukherjee | 0d8723f | 2013-08-19 14:16:26 -0700 | [diff] [blame] | 628 | global->passes = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 629 | global->use_i420 = 1; |
Deb Mukherjee | 0d8723f | 2013-08-19 14:16:26 -0700 | [diff] [blame] | 630 | /* Assign default deadline to good quality */ |
| 631 | global->deadline = VPX_DL_GOOD_QUALITY; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 632 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 633 | for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) { |
| 634 | arg.argv_step = 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 635 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 636 | if (arg_match(&arg, &codecarg, argi)) { |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 637 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 640 | } else if (arg_match(&arg, &passes, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 641 | global->passes = arg_parse_uint(&arg); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 642 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 643 | if (global->passes < 1 || global->passes > 2) |
| 644 | die("Error: Invalid number of passes (%d)\n", global->passes); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 645 | } else if (arg_match(&arg, &pass_arg, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 646 | global->pass = arg_parse_uint(&arg); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 647 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 648 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 653 | else if (arg_match(&arg, &deadline, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 654 | global->deadline = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 655 | else if (arg_match(&arg, &best_dl, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 656 | global->deadline = VPX_DL_BEST_QUALITY; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 657 | else if (arg_match(&arg, &good_dl, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 658 | global->deadline = VPX_DL_GOOD_QUALITY; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 659 | else if (arg_match(&arg, &rt_dl, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 660 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 669 | else if (arg_match(&arg, &limit, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 670 | global->limit = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 671 | else if (arg_match(&arg, &skip, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 672 | global->skip_frames = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 673 | else if (arg_match(&arg, &psnrarg, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 674 | global->show_psnr = 1; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 675 | else if (arg_match(&arg, &recontest, argi)) |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 676 | global->test_decode = arg_parse_enum_or_int(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 677 | else if (arg_match(&arg, &framerate, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 678 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 683 | else if (arg_match(&arg, &debugmode, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 684 | global->debug = 1; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 685 | else if (arg_match(&arg, &q_hist_n, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 686 | global->show_q_hist_buckets = arg_parse_uint(&arg); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 687 | else if (arg_match(&arg, &rate_hist_n, argi)) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 688 | global->show_rate_hist_buckets = arg_parse_uint(&arg); |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 689 | 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 Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 693 | else if (arg_match(&arg, &experimental_bitstream, argi)) |
| 694 | global->experimental_bitstream = 1; |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 695 | else |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 696 | argj++; |
| 697 | } |
| 698 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 699 | if (global->pass) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 700 | /* DWIM: Assume the user meant passes=2 if pass=2 is specified */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 701 | 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 Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 705 | } |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 706 | } |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 707 | /* 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 Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 727 | void open_input_file(struct VpxInputContext *input) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 728 | /* Parse certain options from the input file, if possible */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 729 | input->file = strcmp(input->filename, "-") |
| 730 | ? fopen(input->filename, "rb") : set_binary_mode(stdin); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 731 | |
| 732 | if (!input->file) |
| 733 | fatal("Failed to open input file"); |
| 734 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 735 | 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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 743 | /* For RAW input sources, these bytes will applied on the first frame |
| 744 | * in read_frame(). |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 745 | */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 746 | input->detect.buf_read = fread(input->detect.buf, 1, 4, input->file); |
| 747 | input->detect.position = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 748 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 749 | if (input->detect.buf_read == 4 |
Alex Converse | 64b89f1 | 2014-01-06 16:29:09 -0800 | [diff] [blame] | 750 | && file_is_y4m(input->detect.buf)) { |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 751 | if (y4m_input_open(&input->y4m, input->file, input->detect.buf, 4, |
| 752 | input->only_i420) >= 0) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 753 | input->file_type = FILE_TYPE_Y4M; |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 754 | 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 Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 758 | input->fmt = input->y4m.vpx_fmt; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 759 | } else |
| 760 | fatal("Unsupported Y4M stream."); |
Alex Converse | 64b89f1 | 2014-01-06 16:29:09 -0800 | [diff] [blame] | 761 | } else if (input->detect.buf_read == 4 && fourcc_is_ivf(input->detect.buf)) { |
Tom Finegan | 6c270ed | 2013-11-08 11:32:23 -0800 | [diff] [blame] | 762 | fatal("IVF is not supported as input."); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 763 | } else { |
| 764 | input->file_type = FILE_TYPE_RAW; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 765 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 769 | static void close_input_file(struct VpxInputContext *input) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 770 | fclose(input->file); |
| 771 | if (input->file_type == FILE_TYPE_Y4M) |
| 772 | y4m_input_close(&input->y4m); |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 773 | } |
| 774 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 775 | static struct stream_state *new_stream(struct VpxEncoderConfig *global, |
Tom Finegan | 6c270ed | 2013-11-08 11:32:23 -0800 | [diff] [blame] | 776 | struct stream_state *prev) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 777 | struct stream_state *stream; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 778 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 779 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 788 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 789 | /* Populate encoder configuration */ |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 790 | res = vpx_codec_enc_config_default(global->codec->interface(), |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 791 | &stream->config.cfg, |
| 792 | global->usage); |
| 793 | if (res) |
| 794 | fatal("Failed to get config: %s\n", vpx_codec_err_to_string(res)); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 795 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 796 | /* 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 800 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 801 | /* 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 806 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 807 | /* Initialize remaining stream parameters */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 808 | stream->config.write_webm = 1; |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 809 | #if CONFIG_WEBM_IO |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 810 | stream->config.stereo_fmt = STEREO_FORMAT_MONO; |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 811 | stream->ebml.last_pts_ns = -1; |
| 812 | stream->ebml.writer = NULL; |
| 813 | stream->ebml.segment = NULL; |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 814 | #endif |
Johann | 87c40b3 | 2012-03-01 16:12:53 -0800 | [diff] [blame] | 815 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 816 | /* Allows removal of the application version from the EBML tags */ |
| 817 | stream->ebml.debug = global->debug; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 818 | |
| 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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 822 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 823 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 824 | /* Output files must be specified for each stream */ |
| 825 | stream->config.out_fn = NULL; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 826 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 827 | stream->next = NULL; |
| 828 | return stream; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 832 | static int parse_stream_params(struct VpxEncoderConfig *global, |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 833 | struct stream_state *stream, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 834 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 841 | |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 842 | // Handle codec specific options |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 843 | if (0) { |
| 844 | #if CONFIG_VP8_ENCODER |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 845 | } else if (strcmp(global->codec->name, "vp8") == 0) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 846 | ctrl_args = vp8_args; |
| 847 | ctrl_args_map = vp8_arg_ctrl_map; |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 848 | #endif |
| 849 | #if CONFIG_VP9_ENCODER |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 850 | } else if (strcmp(global->codec->name, "vp9") == 0) { |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 851 | ctrl_args = vp9_args; |
| 852 | ctrl_args_map = vp9_arg_ctrl_map; |
| 853 | #endif |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 854 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 855 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 856 | for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 857 | arg.argv_step = 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 858 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 859 | /* 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 868 | } |
| 869 | |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 870 | if (0) { |
| 871 | } else if (arg_match(&arg, &outputfile, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 872 | config->out_fn = arg.val; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 873 | } else if (arg_match(&arg, &fpf_name, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 874 | config->stats_fn = arg.val; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 875 | } else if (arg_match(&arg, &use_ivf, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 876 | config->write_webm = 0; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 877 | } else if (arg_match(&arg, &threads, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 878 | config->cfg.g_threads = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 879 | } else if (arg_match(&arg, &profile, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 880 | config->cfg.g_profile = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 881 | } else if (arg_match(&arg, &width, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 882 | config->cfg.g_w = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 883 | } else if (arg_match(&arg, &height, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 884 | config->cfg.g_h = arg_parse_uint(&arg); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 885 | #if CONFIG_WEBM_IO |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 886 | } else if (arg_match(&arg, &stereo_mode, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 887 | config->stereo_fmt = arg_parse_enum_or_int(&arg); |
James Zern | dba7376 | 2014-05-10 17:44:12 -0700 | [diff] [blame] | 888 | #endif |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 889 | } else if (arg_match(&arg, &timebase, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 890 | config->cfg.g_timebase = arg_parse_rational(&arg); |
| 891 | validate_positive_rational(arg.name, &config->cfg.g_timebase); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 892 | } else if (arg_match(&arg, &error_resilient, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 893 | config->cfg.g_error_resilient = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 894 | } else if (arg_match(&arg, &lag_in_frames, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 895 | config->cfg.g_lag_in_frames = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 896 | 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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 902 | config->cfg.rc_dropframe_thresh = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 903 | } else if (arg_match(&arg, &resize_allowed, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 904 | config->cfg.rc_resize_allowed = arg_parse_uint(&arg); |
Adrian Grange | f7bd127 | 2014-04-09 14:51:29 -0700 | [diff] [blame] | 905 | } 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 Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 909 | } else if (arg_match(&arg, &resize_up_thresh, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 910 | config->cfg.rc_resize_up_thresh = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 911 | } else if (arg_match(&arg, &resize_down_thresh, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 912 | config->cfg.rc_resize_down_thresh = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 913 | } else if (arg_match(&arg, &end_usage, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 914 | config->cfg.rc_end_usage = arg_parse_enum_or_int(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 915 | } else if (arg_match(&arg, &target_bitrate, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 916 | config->cfg.rc_target_bitrate = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 917 | } else if (arg_match(&arg, &min_quantizer, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 918 | config->cfg.rc_min_quantizer = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 919 | } else if (arg_match(&arg, &max_quantizer, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 920 | config->cfg.rc_max_quantizer = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 921 | } else if (arg_match(&arg, &undershoot_pct, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 922 | config->cfg.rc_undershoot_pct = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 923 | } else if (arg_match(&arg, &overshoot_pct, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 924 | config->cfg.rc_overshoot_pct = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 925 | } else if (arg_match(&arg, &buf_sz, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 926 | config->cfg.rc_buf_sz = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 927 | } else if (arg_match(&arg, &buf_initial_sz, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 928 | config->cfg.rc_buf_initial_sz = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 929 | } else if (arg_match(&arg, &buf_optimal_sz, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 930 | config->cfg.rc_buf_optimal_sz = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 931 | } else if (arg_match(&arg, &bias_pct, argi)) { |
| 932 | config->cfg.rc_2pass_vbr_bias_pct = arg_parse_uint(&arg); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 933 | 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 Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 945 | } else if (arg_match(&arg, &kf_min_dist, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 946 | config->cfg.kf_min_dist = arg_parse_uint(&arg); |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 947 | } else if (arg_match(&arg, &kf_max_dist, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 948 | config->cfg.kf_max_dist = arg_parse_uint(&arg); |
| 949 | config->have_kf_max_dist = 1; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 950 | } else if (arg_match(&arg, &kf_disabled, argi)) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 951 | config->cfg.kf_mode = VPX_KF_DISABLED; |
Deb Mukherjee | 25f22d2 | 2014-02-13 15:34:42 -0800 | [diff] [blame] | 952 | } else { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 953 | int i, match = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 954 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 975 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 976 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 977 | if (!match) |
| 978 | argj++; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 979 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 980 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 981 | return eos_mark_found; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 985 | #define FOREACH_STREAM(func) \ |
| 986 | do { \ |
| 987 | struct stream_state *stream; \ |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 988 | for (stream = streams; stream; stream = stream->next) { \ |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 989 | func; \ |
| 990 | } \ |
| 991 | } while (0) |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 992 | |
| 993 | |
Alex Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 994 | static void validate_stream_config(const struct stream_state *stream, |
| 995 | const struct VpxEncoderConfig *global) { |
| 996 | const struct stream_state *streami; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 997 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 998 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1001 | |
Alex Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 1002 | 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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1008 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1013 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1014 | /* 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1021 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1022 | |
| 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1032 | } |
| 1033 | |
| 1034 | |
| 1035 | static void set_stream_dimensions(struct stream_state *stream, |
| 1036 | unsigned int w, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1037 | unsigned int h) { |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1038 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1050 | static void set_default_kf_interval(struct stream_state *stream, |
| 1051 | struct VpxEncoderConfig *global) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1052 | /* 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 Giles | 061a16d | 2012-01-05 15:05:05 -0600 | [diff] [blame] | 1060 | } |
| 1061 | |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1062 | static 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 | |
| 1070 | static 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 Giles | 061a16d | 2012-01-05 15:05:05 -0600 | [diff] [blame] | 1079 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1080 | static void show_stream_config(struct stream_state *stream, |
| 1081 | struct VpxEncoderConfig *global, |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1082 | struct VpxInputContext *input) { |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1083 | |
| 1084 | #define SHOW(field) \ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1085 | fprintf(stderr, " %-28s = %d\n", #field, stream->config.cfg.field) |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1086 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1087 | if (stream->index == 0) { |
| 1088 | fprintf(stderr, "Codec: %s\n", |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 1089 | vpx_codec_iface_name(global->codec->interface())); |
Alex Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1090 | 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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1094 | } |
| 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1099 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1100 | 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 Grange | f7bd127 | 2014-04-09 14:51:29 -0700 | [diff] [blame] | 1112 | SHOW(rc_scaled_width); |
| 1113 | SHOW(rc_scaled_height); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1114 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1131 | } |
| 1132 | |
| 1133 | |
| 1134 | static void open_output_file(struct stream_state *stream, |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1135 | struct VpxEncoderConfig *global) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1136 | const char *fn = stream->config.out_fn; |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1137 | const struct vpx_codec_enc_cfg *const cfg = &stream->config.cfg; |
| 1138 | |
| 1139 | if (cfg->g_pass == VPX_RC_FIRST_PASS) |
| 1140 | return; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1141 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1142 | stream->file = strcmp(fn, "-") ? fopen(fn, "wb") : set_binary_mode(stdout); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1143 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1144 | if (!stream->file) |
| 1145 | fatal("Failed to open output file"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1146 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1147 | if (stream->config.write_webm && fseek(stream->file, 0, SEEK_CUR)) |
| 1148 | fatal("WebM output to pipes not supported."); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1149 | |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1150 | #if CONFIG_WEBM_IO |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1151 | if (stream->config.write_webm) { |
| 1152 | stream->ebml.stream = stream->file; |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1153 | write_webm_file_header(&stream->ebml, cfg, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1154 | &global->framerate, |
John Koleszar | 08b43fe | 2012-11-13 12:14:28 -0800 | [diff] [blame] | 1155 | stream->config.stereo_fmt, |
| 1156 | global->codec->fourcc); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1157 | } |
| 1158 | #endif |
| 1159 | |
| 1160 | if (!stream->config.write_webm) { |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1161 | ivf_write_file_header(stream->file, cfg, global->codec->fourcc, 0); |
| 1162 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1163 | } |
| 1164 | |
| 1165 | |
| 1166 | static void close_output_file(struct stream_state *stream, |
Dmitry Kovalev | 096ab11 | 2014-01-13 15:21:48 -0800 | [diff] [blame] | 1167 | 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 Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1173 | #if CONFIG_WEBM_IO |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1174 | if (stream->config.write_webm) { |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 1175 | write_webm_file_footer(&stream->ebml); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1176 | } |
| 1177 | #endif |
| 1178 | |
| 1179 | if (!stream->config.write_webm) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1180 | if (!fseek(stream->file, 0, SEEK_SET)) |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1181 | ivf_write_file_header(stream->file, &stream->config.cfg, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1182 | fourcc, |
| 1183 | stream->frames_out); |
| 1184 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1185 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1186 | fclose(stream->file); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1190 | static void setup_pass(struct stream_state *stream, |
| 1191 | struct VpxEncoderConfig *global, |
| 1192 | int pass) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1193 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1201 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1202 | 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 Wang | aabae97 | 2012-02-29 08:24:53 -0500 | [diff] [blame] | 1207 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1208 | stream->cx_time = 0; |
| 1209 | stream->nbytes = 0; |
| 1210 | stream->frames_out = 0; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1211 | } |
| 1212 | |
| 1213 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1214 | static void initialize_encoder(struct stream_state *stream, |
| 1215 | struct VpxEncoderConfig *global) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1216 | int i; |
| 1217 | int flags = 0; |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 1218 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1219 | flags |= global->show_psnr ? VPX_CODEC_USE_PSNR : 0; |
| 1220 | flags |= global->out_part ? VPX_CODEC_USE_OUTPUT_PARTITION : 0; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1221 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1222 | /* Construct Encoder Context */ |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 1223 | vpx_codec_enc_init(&stream->encoder, global->codec->interface(), |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1224 | &stream->config.cfg, flags); |
| 1225 | ctx_exit_on_error(&stream->encoder, "Failed to initialize encoder"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1226 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1227 | /* 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1237 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1238 | ctx_exit_on_error(&stream->encoder, "Failed to control codec"); |
| 1239 | } |
| 1240 | |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 1241 | #if CONFIG_DECODERS |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1242 | if (global->test_decode != TEST_DECODE_OFF) { |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 1243 | const VpxInterface *decoder = get_vpx_decoder_by_name(global->codec->name); |
| 1244 | vpx_codec_dec_init(&stream->decoder, decoder->interface(), NULL, 0); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1245 | } |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 1246 | #endif |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1250 | static void encode_frame(struct stream_state *stream, |
| 1251 | struct VpxEncoderConfig *global, |
| 1252 | struct vpx_image *img, |
| 1253 | unsigned int frames_in) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1254 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1257 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1258 | 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 Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1264 | |
| 1265 | /* Scale if necessary */ |
| 1266 | if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { |
Alex Converse | 2a3092f | 2014-05-16 18:49:04 -0700 | [diff] [blame] | 1267 | 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 Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 1271 | #if CONFIG_LIBYUV |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1272 | 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 Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1287 | img = stream->img; |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 1288 | #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 Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1296 | } |
| 1297 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1298 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1309 | static void update_quantizer_histogram(struct stream_state *stream) { |
| 1310 | if (stream->config.cfg.g_pass != VPX_RC_FIRST_PASS) { |
| 1311 | int q; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1312 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1313 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | |
Tom Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1320 | static void get_cx_data(struct stream_state *stream, |
| 1321 | struct VpxEncoderConfig *global, |
| 1322 | int *got_data) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1323 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1326 | |
Ronald S. Bultje | 88d703c | 2012-11-09 09:07:50 -0800 | [diff] [blame] | 1327 | *got_data = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1328 | while ((pkt = vpx_codec_get_cx_data(&stream->encoder, &iter))) { |
| 1329 | static size_t fsize = 0; |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 1330 | static int64_t ivf_header_pos = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1331 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1332 | 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 Han | babbd5d | 2013-02-13 09:03:21 -0800 | [diff] [blame] | 1337 | if (!global->quiet) |
| 1338 | fprintf(stderr, " %6luF", (unsigned long)pkt->data.frame.sz); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1339 | |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 1340 | update_rate_histogram(stream->rate_hist, cfg, pkt); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1341 | #if CONFIG_WEBM_IO |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1342 | if (stream->config.write_webm) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1343 | write_webm_block(&stream->ebml, cfg, pkt); |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1344 | } |
| 1345 | #endif |
| 1346 | if (!stream->config.write_webm) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1347 | if (pkt->data.frame.partition_id <= 0) { |
| 1348 | ivf_header_pos = ftello(stream->file); |
| 1349 | fsize = pkt->data.frame.sz; |
| 1350 | |
Dmitry Kovalev | 373b0f9 | 2014-01-29 17:57:21 -0800 | [diff] [blame] | 1351 | ivf_write_frame_header(stream->file, pkt->data.frame.pts, fsize); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1352 | } else { |
| 1353 | fsize += pkt->data.frame.sz; |
| 1354 | |
| 1355 | if (!(pkt->data.frame.flags & VPX_FRAME_IS_FRAGMENT)) { |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 1356 | const int64_t currpos = ftello(stream->file); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1357 | fseeko(stream->file, ivf_header_pos, SEEK_SET); |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1358 | ivf_write_frame_size(stream->file, fsize); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1359 | 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 Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 1367 | |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1368 | *got_data = 1; |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 1369 | #if CONFIG_DECODERS |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1370 | if (global->test_decode != TEST_DECODE_OFF && !stream->mismatch_seen) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1371 | vpx_codec_decode(&stream->decoder, pkt->data.frame.buf, |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 1372 | (unsigned int)pkt->data.frame.sz, NULL, 0); |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1373 | 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 Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1380 | } |
John Koleszar | 5ebe94f | 2012-12-23 07:20:10 -0800 | [diff] [blame] | 1381 | #endif |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1382 | break; |
| 1383 | case VPX_CODEC_STATS_PKT: |
| 1384 | stream->frames_out++; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1385 | 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 Han | babbd5d | 2013-02-13 09:03:21 -0800 | [diff] [blame] | 1398 | if (!global->quiet) |
| 1399 | fprintf(stderr, "%.3f ", pkt->data.psnr.psnr[i]); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1400 | stream->psnr_totals[i] += pkt->data.psnr.psnr[i]; |
| 1401 | } |
| 1402 | stream->psnr_count++; |
| 1403 | } |
| 1404 | |
| 1405 | break; |
| 1406 | default: |
| 1407 | break; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1408 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1409 | } |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1410 | } |
| 1411 | |
| 1412 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1413 | static void show_psnr(struct stream_state *stream) { |
| 1414 | int i; |
| 1415 | double ovpsnr; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1416 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1417 | if (!stream->psnr_count) |
| 1418 | return; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1419 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1420 | fprintf(stderr, "Stream %d PSNR (Overall/Avg/Y/U/V)", stream->index); |
Dmitry Kovalev | 2dad0e1 | 2014-02-27 14:00:41 -0800 | [diff] [blame] | 1421 | ovpsnr = sse_to_psnr((double)stream->psnr_samples_total, 255.0, |
| 1422 | (double)stream->psnr_sse_total); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1423 | fprintf(stderr, " %.3f", ovpsnr); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1424 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1425 | for (i = 0; i < 4; i++) { |
| 1426 | fprintf(stderr, " %.3f", stream->psnr_totals[i] / stream->psnr_count); |
| 1427 | } |
| 1428 | fprintf(stderr, "\n"); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1429 | } |
| 1430 | |
| 1431 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1432 | static float usec_to_fps(uint64_t usec, unsigned int frames) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1433 | return (float)(usec > 0 ? frames * 1000000.0 / (float)usec : 0); |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1434 | } |
| 1435 | |
John Koleszar | 732cb9a | 2012-02-14 12:30:17 -0800 | [diff] [blame] | 1436 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1437 | static void test_decode(struct stream_state *stream, |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1438 | enum TestDecodeFatality fatal, |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 1439 | const VpxInterface *codec) { |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1440 | vpx_image_t enc_img, dec_img; |
| 1441 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1442 | if (stream->mismatch_seen) |
| 1443 | return; |
| 1444 | |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1445 | /* Get the internal reference frame */ |
Dmitry Kovalev | 70d9664 | 2014-02-11 21:12:23 -0800 | [diff] [blame] | 1446 | if (strcmp(codec->name, "vp8") == 0) { |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1447 | 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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1470 | ctx_exit_on_error(&stream->encoder, "Failed to get encoder reference frame"); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1471 | ctx_exit_on_error(&stream->decoder, "Failed to get decoder reference frame"); |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1472 | |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1473 | if (!compare_img(&enc_img, &dec_img)) { |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 1474 | int y[4], u[4], v[4]; |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1475 | find_mismatch(&enc_img, &dec_img, y, u, v); |
Ronald S. Bultje | 97dd734 | 2013-03-04 14:12:49 -0800 | [diff] [blame] | 1476 | stream->decoder.err = 1; |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1477 | warn_or_exit_on_error(&stream->decoder, fatal == TEST_DECODE_FATAL, |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 1478 | "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. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1482 | stream->index, stream->frames_out, |
Deb Mukherjee | 23144d2 | 2013-03-12 14:21:08 -0700 | [diff] [blame] | 1483 | 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. Bultje | 195172c | 2012-11-10 16:22:49 -0800 | [diff] [blame] | 1486 | stream->mismatch_seen = stream->frames_out; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1487 | } |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1488 | |
| 1489 | vpx_img_free(&enc_img); |
| 1490 | vpx_img_free(&dec_img); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1491 | } |
John Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1492 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1493 | |
| 1494 | static void print_time(const char *label, int64_t etl) { |
Tom Finegan | 7a691f1 | 2014-02-10 14:55:25 -0800 | [diff] [blame] | 1495 | int64_t hours; |
| 1496 | int64_t mins; |
| 1497 | int64_t secs; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1498 | |
| 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 Xu | c154826 | 2014-04-03 18:05:17 -0700 | [diff] [blame] | 1506 | fprintf(stderr, "[%3s %2"PRId64":%02"PRId64":%02"PRId64"] ", |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1507 | label, hours, mins, secs); |
| 1508 | } else { |
| 1509 | fprintf(stderr, "[%3s unknown] ", label); |
| 1510 | } |
| 1511 | } |
| 1512 | |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1513 | |
| 1514 | int 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 Finegan | 49dc9ca | 2013-11-21 16:46:40 -0800 | [diff] [blame] | 1520 | struct VpxEncoderConfig global; |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1521 | 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 Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1526 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1527 | exec_name = argv_[0]; |
John Koleszar | 9e50ed7 | 2012-02-15 12:39:38 -0800 | [diff] [blame] | 1528 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1529 | if (argc < 3) |
| 1530 | usage_exit(); |
| 1531 | |
| 1532 | /* Setup default input stream settings */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1533 | input.framerate.numerator = 30; |
| 1534 | input.framerate.denominator = 1; |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 1535 | input.only_i420 = 1; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1536 | |
| 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 Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1544 | input.fmt = global.use_i420 ? VPX_IMG_FMT_I420 : VPX_IMG_FMT_YV12; |
Tom Finegan | 44dd327 | 2013-11-20 17:18:28 -0800 | [diff] [blame] | 1545 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1546 | { |
| 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 Koleszar | efd54f8 | 2012-02-13 16:52:18 -0800 | [diff] [blame] | 1550 | */ |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1551 | struct stream_state *stream = NULL; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1552 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1553 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1559 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1560 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1561 | /* 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 Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1565 | |
Tom Finegan | 249366b | 2013-11-25 12:05:19 -0800 | [diff] [blame] | 1566 | FOREACH_STREAM(check_encoder_config(global.disable_warning_prompt, |
| 1567 | &global, &stream->config.cfg);); |
| 1568 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1569 | /* Handle non-option arguments */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1570 | input.filename = argv[0]; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1571 | |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1572 | if (!input.filename) |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1573 | usage_exit(); |
John Koleszar | 5329189 | 2010-10-22 14:48:21 -0400 | [diff] [blame] | 1574 | |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 1575 | /* Decide if other chroma subsamplings than 4:2:0 are supported */ |
| 1576 | if (global.codec->fourcc == VP9_FOURCC) |
| 1577 | input.only_i420 = 0; |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 1578 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1579 | for (pass = global.pass ? global.pass - 1 : 0; pass < global.passes; pass++) { |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1580 | int frames_in = 0, seen_frames = 0; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1581 | int64_t estimated_time_left = -1; |
| 1582 | int64_t average_rate = -1; |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 1583 | int64_t lagged_count = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1584 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1585 | open_input_file(&input); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1586 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1587 | /* 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1589 | */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1590 | if (!input.width || !input.height) |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1591 | FOREACH_STREAM( { |
| 1592 | if (stream->config.cfg.g_w && stream->config.cfg.g_h) { |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1593 | input.width = stream->config.cfg.g_w; |
| 1594 | input.height = stream->config.cfg.g_h; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1595 | break; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1596 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1597 | }); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1598 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1599 | /* Update stream configurations from the input file's parameters */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1600 | if (!input.width || !input.height) |
John Koleszar | 34882b9 | 2012-03-01 12:50:40 -0800 | [diff] [blame] | 1601 | fatal("Specify stream dimensions with --width (-w) " |
| 1602 | " and --height (-h)"); |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1603 | FOREACH_STREAM(set_stream_dimensions(stream, input.width, input.height)); |
Alex Converse | d66bd22 | 2014-02-21 10:52:09 -0800 | [diff] [blame] | 1604 | FOREACH_STREAM(validate_stream_config(stream, &global)); |
John Koleszar | 77e6b45 | 2010-11-03 13:58:40 -0400 | [diff] [blame] | 1605 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1606 | /* 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 Koleszar | 3245d46 | 2010-06-10 17:10:12 -0400 | [diff] [blame] | 1615 | |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 1616 | #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 Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1624 | /* Use the frame rate from the file only if none was specified |
| 1625 | * on the command-line. |
| 1626 | */ |
Tom Finegan | 00a35aa | 2013-11-14 12:37:42 -0800 | [diff] [blame] | 1627 | if (!global.have_framerate) { |
| 1628 | global.framerate.num = input.framerate.numerator; |
| 1629 | global.framerate.den = input.framerate.denominator; |
| 1630 | } |
Timothy B. Terriberry | 44d8949 | 2010-05-26 18:27:51 -0400 | [diff] [blame] | 1631 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1632 | 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 Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1640 | /*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 Converse | 6c2e88e | 2014-05-16 12:29:36 -0700 | [diff] [blame] | 1645 | vpx_img_alloc(&raw, input.fmt, input.width, input.height, 32); |
John Koleszar | 05239f0 | 2011-06-29 09:53:12 -0400 | [diff] [blame] | 1646 | |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 1647 | FOREACH_STREAM(stream->rate_hist = |
| 1648 | init_rate_histogram(&stream->config.cfg, |
| 1649 | &global.framerate)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1650 | } |
| 1651 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1652 | FOREACH_STREAM(setup_pass(stream, &global, pass)); |
James Zern | 8cb0971 | 2013-08-14 18:28:42 -0700 | [diff] [blame] | 1653 | FOREACH_STREAM(open_output_file(stream, &global)); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1654 | FOREACH_STREAM(initialize_encoder(stream, &global)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1655 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1656 | frame_avail = 1; |
| 1657 | got_data = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1658 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1659 | while (frame_avail || got_data) { |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1660 | struct vpx_usec_timer timer; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1661 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1662 | if (!global.limit || frames_in < global.limit) { |
| 1663 | frame_avail = read_frame(&input, &raw); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1664 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1665 | if (frame_avail) |
| 1666 | frames_in++; |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1667 | seen_frames = frames_in > global.skip_frames ? |
| 1668 | frames_in - global.skip_frames : 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1669 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1670 | if (!global.quiet) { |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1671 | float fps = usec_to_fps(cx_time, seen_frames); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1672 | fprintf(stderr, "\rPass %d/%d ", pass + 1, global.passes); |
| 1673 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1674 | if (stream_cnt == 1) |
| 1675 | fprintf(stderr, |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1676 | "frame %4d/%-4d %7"PRId64"B ", |
| 1677 | frames_in, streams->frames_out, (int64_t)streams->nbytes); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1678 | else |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1679 | fprintf(stderr, "frame %4d ", frames_in); |
| 1680 | |
John Koleszar | ebf8b9f | 2013-02-27 11:14:23 -0800 | [diff] [blame] | 1681 | fprintf(stderr, "%7"PRId64" %s %.2f %s ", |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1682 | cx_time > 9999999 ? cx_time / 1000 : cx_time, |
| 1683 | cx_time > 9999999 ? "ms" : "us", |
Yaowu Xu | 014acfa | 2013-09-17 16:31:46 -0700 | [diff] [blame] | 1684 | fps >= 1.0 ? fps : fps * 60, |
| 1685 | fps >= 1.0 ? "fps" : "fpm"); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1686 | print_time("ETA", estimated_time_left); |
| 1687 | fprintf(stderr, "\033[K"); |
John Koleszar | 3245d46 | 2010-06-10 17:10:12 -0400 | [diff] [blame] | 1688 | } |
| 1689 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1690 | } else |
| 1691 | frame_avail = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1692 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1693 | 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 Koleszar | ebf8b9f | 2013-02-27 11:14:23 -0800 | [diff] [blame] | 1699 | cx_time += vpx_usec_timer_elapsed(&timer); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1700 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1701 | FOREACH_STREAM(update_quantizer_histogram(stream)); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1702 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1703 | got_data = 0; |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1704 | FOREACH_STREAM(get_cx_data(stream, &global, &got_data)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1705 | |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1706 | if (!got_data && input.length && !streams->frames_out) { |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1707 | lagged_count = global.limit ? seen_frames : ftello(input.file); |
John Koleszar | ebf8b9f | 2013-02-27 11:14:23 -0800 | [diff] [blame] | 1708 | } else if (input.length) { |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1709 | int64_t remaining; |
| 1710 | int64_t rate; |
| 1711 | |
| 1712 | if (global.limit) { |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 1713 | const int64_t frame_in_lagged = (seen_frames - lagged_count) * 1000; |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1714 | |
| 1715 | rate = cx_time ? frame_in_lagged * (int64_t)1000000 / cx_time : 0; |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1716 | remaining = 1000 * (global.limit - global.skip_frames |
| 1717 | - seen_frames + lagged_count); |
John Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1718 | } else { |
James Zern | e3578af | 2014-04-17 10:47:08 -0700 | [diff] [blame] | 1719 | 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 Koleszar | 25b6e9f | 2013-02-12 21:17:56 -0800 | [diff] [blame] | 1722 | |
| 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. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1733 | if (got_data && global.test_decode != TEST_DECODE_OFF) |
John Koleszar | b3c350a | 2013-03-13 12:15:43 -0700 | [diff] [blame] | 1734 | FOREACH_STREAM(test_decode(stream, global.test_decode, global.codec)); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1735 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1736 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1737 | fflush(stdout); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1738 | } |
| 1739 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1740 | if (stream_cnt > 1) |
| 1741 | fprintf(stderr, "\n"); |
John Koleszar | 3fde996 | 2011-06-20 17:09:29 -0400 | [diff] [blame] | 1742 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1743 | 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 Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1749 | seen_frames ? (unsigned long)(stream->nbytes * 8 / seen_frames) : 0, |
| 1750 | seen_frames ? (int64_t)stream->nbytes * 8 |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1751 | * (int64_t)global.framerate.num / global.framerate.den |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1752 | / seen_frames |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1753 | : 0, |
| 1754 | stream->cx_time > 9999999 ? stream->cx_time / 1000 : stream->cx_time, |
| 1755 | stream->cx_time > 9999999 ? "ms" : "us", |
John Koleszar | 2bf563c | 2013-03-11 15:03:00 -0700 | [diff] [blame] | 1756 | usec_to_fps(stream->cx_time, seen_frames)); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1757 | ); |
John Koleszar | c96f8e2 | 2011-06-21 16:42:33 -0400 | [diff] [blame] | 1758 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1759 | if (global.show_psnr) |
| 1760 | FOREACH_STREAM(show_psnr(stream)); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1761 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1762 | FOREACH_STREAM(vpx_codec_destroy(&stream->encoder)); |
| 1763 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1764 | if (global.test_decode != TEST_DECODE_OFF) { |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1765 | FOREACH_STREAM(vpx_codec_destroy(&stream->decoder)); |
Yaowu Xu | f798f9e | 2012-03-07 12:25:50 -0800 | [diff] [blame] | 1766 | } |
| 1767 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1768 | close_input_file(&input); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1769 | |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1770 | if (global.test_decode == TEST_DECODE_FATAL) { |
| 1771 | FOREACH_STREAM(res |= stream->mismatch_seen); |
| 1772 | } |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1773 | FOREACH_STREAM(close_output_file(stream, global.codec->fourcc)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1774 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1775 | FOREACH_STREAM(stats_close(&stream->stats, global.passes - 1)); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1776 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1777 | if (global.pass) |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1778 | break; |
| 1779 | } |
| 1780 | |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1781 | 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 Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 1786 | FOREACH_STREAM(show_rate_histogram(stream->rate_hist, |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1787 | &stream->config.cfg, |
| 1788 | global.show_rate_hist_buckets)); |
Dmitry Kovalev | f11da2b | 2014-01-29 12:28:29 -0800 | [diff] [blame] | 1789 | FOREACH_STREAM(destroy_rate_histogram(stream->rate_hist)); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1790 | |
Ronald S. Bultje | 3121497 | 2012-10-11 10:13:48 -0700 | [diff] [blame] | 1791 | #if CONFIG_INTERNAL_STATS |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1792 | /* TODO(jkoleszar): This doesn't belong in this executable. Do it for now, |
| 1793 | * to match some existing utilities. |
| 1794 | */ |
Yaowu Xu | 47e784e | 2013-10-16 16:29:28 -0700 | [diff] [blame] | 1795 | 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. Bultje | 3121497 | 2012-10-11 10:13:48 -0700 | [diff] [blame] | 1806 | #endif |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1807 | |
| 1808 | vpx_img_free(&raw); |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 1809 | free(argv); |
John Koleszar | 6ad3b74 | 2012-11-06 12:02:42 -0800 | [diff] [blame] | 1810 | free(streams); |
Ronald S. Bultje | 9837bf4 | 2013-02-15 16:31:02 -0800 | [diff] [blame] | 1811 | return res ? EXIT_FAILURE : EXIT_SUCCESS; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1812 | } |