]> granicus.if.org Git - libvpx/blob - vpxdec.c
Merge "Sample points to reduce encode overhead."
[libvpx] / vpxdec.c
1 /*
2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #include <assert.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <stdarg.h>
15 #include <string.h>
16 #include <limits.h>
17
18 #include "./vpx_config.h"
19
20 #if CONFIG_LIBYUV
21 #include "third_party/libyuv/include/libyuv/scale.h"
22 #endif
23
24 #include "./args.h"
25 #include "./ivfdec.h"
26
27 #include "vpx/vpx_decoder.h"
28 #include "vpx_ports/mem_ops.h"
29 #include "vpx_ports/vpx_timer.h"
30
31 #if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER
32 #include "vpx/vp8dx.h"
33 #endif
34
35 #include "./md5_utils.h"
36
37 #include "./tools_common.h"
38 #if CONFIG_WEBM_IO
39 #include "./webmdec.h"
40 #endif
41 #include "./y4menc.h"
42
43 static const char *exec_name;
44
45 struct VpxDecInputContext {
46   struct VpxInputContext *vpx_input_ctx;
47   struct WebmInputContext *webm_ctx;
48 };
49
50 static const arg_def_t looparg =
51     ARG_DEF(NULL, "loops", 1, "Number of times to decode the file");
52 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use");
53 static const arg_def_t use_yv12 =
54     ARG_DEF(NULL, "yv12", 0, "Output raw YV12 frames");
55 static const arg_def_t use_i420 =
56     ARG_DEF(NULL, "i420", 0, "Output raw I420 frames");
57 static const arg_def_t flipuvarg =
58     ARG_DEF(NULL, "flipuv", 0, "Flip the chroma planes in the output");
59 static const arg_def_t rawvideo =
60     ARG_DEF(NULL, "rawvideo", 0, "Output raw YUV frames");
61 static const arg_def_t noblitarg =
62     ARG_DEF(NULL, "noblit", 0, "Don't process the decoded frames");
63 static const arg_def_t progressarg =
64     ARG_DEF(NULL, "progress", 0, "Show progress after each frame decodes");
65 static const arg_def_t limitarg =
66     ARG_DEF(NULL, "limit", 1, "Stop decoding after n frames");
67 static const arg_def_t skiparg =
68     ARG_DEF(NULL, "skip", 1, "Skip the first n input frames");
69 static const arg_def_t postprocarg =
70     ARG_DEF(NULL, "postproc", 0, "Postprocess decoded frames");
71 static const arg_def_t summaryarg =
72     ARG_DEF(NULL, "summary", 0, "Show timing summary");
73 static const arg_def_t outputfile =
74     ARG_DEF("o", "output", 1, "Output file name pattern (see below)");
75 static const arg_def_t threadsarg =
76     ARG_DEF("t", "threads", 1, "Max threads to use");
77 static const arg_def_t frameparallelarg =
78     ARG_DEF(NULL, "frame-parallel", 0, "Frame parallel decode");
79 static const arg_def_t verbosearg =
80     ARG_DEF("v", "verbose", 0, "Show version string");
81 static const arg_def_t error_concealment =
82     ARG_DEF(NULL, "error-concealment", 0, "Enable decoder error-concealment");
83 static const arg_def_t scalearg =
84     ARG_DEF("S", "scale", 0, "Scale output frames uniformly");
85 static const arg_def_t continuearg =
86     ARG_DEF("k", "keep-going", 0, "(debug) Continue decoding after error");
87 static const arg_def_t fb_arg =
88     ARG_DEF(NULL, "frame-buffers", 1, "Number of frame buffers to use");
89 static const arg_def_t md5arg =
90     ARG_DEF(NULL, "md5", 0, "Compute the MD5 sum of the decoded frame");
91 #if CONFIG_VP9_HIGHBITDEPTH
92 static const arg_def_t outbitdeptharg =
93     ARG_DEF(NULL, "output-bit-depth", 1, "Output bit-depth for decoded frames");
94 #endif
95
96 static const arg_def_t *all_args[] = { &codecarg,
97                                        &use_yv12,
98                                        &use_i420,
99                                        &flipuvarg,
100                                        &rawvideo,
101                                        &noblitarg,
102                                        &progressarg,
103                                        &limitarg,
104                                        &skiparg,
105                                        &postprocarg,
106                                        &summaryarg,
107                                        &outputfile,
108                                        &threadsarg,
109                                        &frameparallelarg,
110                                        &verbosearg,
111                                        &scalearg,
112                                        &fb_arg,
113                                        &md5arg,
114                                        &error_concealment,
115                                        &continuearg,
116 #if CONFIG_VP9_HIGHBITDEPTH
117                                        &outbitdeptharg,
118 #endif
119                                        NULL };
120
121 #if CONFIG_VP8_DECODER
122 static const arg_def_t addnoise_level =
123     ARG_DEF(NULL, "noise-level", 1, "Enable VP8 postproc add noise");
124 static const arg_def_t deblock =
125     ARG_DEF(NULL, "deblock", 0, "Enable VP8 deblocking");
126 static const arg_def_t demacroblock_level = ARG_DEF(
127     NULL, "demacroblock-level", 1, "Enable VP8 demacroblocking, w/ level");
128 static const arg_def_t pp_debug_info =
129     ARG_DEF(NULL, "pp-debug-info", 1, "Enable VP8 visible debug info");
130 static const arg_def_t pp_disp_ref_frame =
131     ARG_DEF(NULL, "pp-dbg-ref-frame", 1,
132             "Display only selected reference frame per macro block");
133 static const arg_def_t pp_disp_mb_modes = ARG_DEF(
134     NULL, "pp-dbg-mb-modes", 1, "Display only selected macro block modes");
135 static const arg_def_t pp_disp_b_modes =
136     ARG_DEF(NULL, "pp-dbg-b-modes", 1, "Display only selected block modes");
137 static const arg_def_t pp_disp_mvs =
138     ARG_DEF(NULL, "pp-dbg-mvs", 1, "Draw only selected motion vectors");
139 static const arg_def_t mfqe =
140     ARG_DEF(NULL, "mfqe", 0, "Enable multiframe quality enhancement");
141
142 static const arg_def_t *vp8_pp_args[] = { &addnoise_level,
143                                           &deblock,
144                                           &demacroblock_level,
145                                           &pp_debug_info,
146                                           &pp_disp_ref_frame,
147                                           &pp_disp_mb_modes,
148                                           &pp_disp_b_modes,
149                                           &pp_disp_mvs,
150                                           &mfqe,
151                                           NULL };
152 #endif
153
154 #if CONFIG_LIBYUV
155 static INLINE int libyuv_scale(vpx_image_t *src, vpx_image_t *dst,
156                                FilterModeEnum mode) {
157 #if CONFIG_VP9_HIGHBITDEPTH
158   if (src->fmt == VPX_IMG_FMT_I42016) {
159     assert(dst->fmt == VPX_IMG_FMT_I42016);
160     return I420Scale_16(
161         (uint16_t *)src->planes[VPX_PLANE_Y], src->stride[VPX_PLANE_Y] / 2,
162         (uint16_t *)src->planes[VPX_PLANE_U], src->stride[VPX_PLANE_U] / 2,
163         (uint16_t *)src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V] / 2,
164         src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y],
165         dst->stride[VPX_PLANE_Y] / 2, (uint16_t *)dst->planes[VPX_PLANE_U],
166         dst->stride[VPX_PLANE_U] / 2, (uint16_t *)dst->planes[VPX_PLANE_V],
167         dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
168   }
169 #endif
170   assert(src->fmt == VPX_IMG_FMT_I420);
171   assert(dst->fmt == VPX_IMG_FMT_I420);
172   return I420Scale(src->planes[VPX_PLANE_Y], src->stride[VPX_PLANE_Y],
173                    src->planes[VPX_PLANE_U], src->stride[VPX_PLANE_U],
174                    src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V], src->d_w,
175                    src->d_h, dst->planes[VPX_PLANE_Y], dst->stride[VPX_PLANE_Y],
176                    dst->planes[VPX_PLANE_U], dst->stride[VPX_PLANE_U],
177                    dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V], dst->d_w,
178                    dst->d_h, mode);
179 }
180 #endif
181
182 void usage_exit(void) {
183   int i;
184
185   fprintf(stderr,
186           "Usage: %s <options> filename\n\n"
187           "Options:\n",
188           exec_name);
189   arg_show_usage(stderr, all_args);
190 #if CONFIG_VP8_DECODER
191   fprintf(stderr, "\nVP8 Postprocessing Options:\n");
192   arg_show_usage(stderr, vp8_pp_args);
193 #endif
194   fprintf(stderr,
195           "\nOutput File Patterns:\n\n"
196           "  The -o argument specifies the name of the file(s) to "
197           "write to. If the\n  argument does not include any escape "
198           "characters, the output will be\n  written to a single file. "
199           "Otherwise, the filename will be calculated by\n  expanding "
200           "the following escape characters:\n");
201   fprintf(stderr,
202           "\n\t%%w   - Frame width"
203           "\n\t%%h   - Frame height"
204           "\n\t%%<n> - Frame number, zero padded to <n> places (1..9)"
205           "\n\n  Pattern arguments are only supported in conjunction "
206           "with the --yv12 and\n  --i420 options. If the -o option is "
207           "not specified, the output will be\n  directed to stdout.\n");
208   fprintf(stderr, "\nIncluded decoders:\n\n");
209
210   for (i = 0; i < get_vpx_decoder_count(); ++i) {
211     const VpxInterface *const decoder = get_vpx_decoder_by_index(i);
212     fprintf(stderr, "    %-6s - %s\n", decoder->name,
213             vpx_codec_iface_name(decoder->codec_interface()));
214   }
215
216   exit(EXIT_FAILURE);
217 }
218
219 static int raw_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read,
220                           size_t *buffer_size) {
221   char raw_hdr[RAW_FRAME_HDR_SZ];
222   size_t frame_size = 0;
223
224   if (fread(raw_hdr, RAW_FRAME_HDR_SZ, 1, infile) != 1) {
225     if (!feof(infile)) warn("Failed to read RAW frame size\n");
226   } else {
227     const size_t kCorruptFrameThreshold = 256 * 1024 * 1024;
228     const size_t kFrameTooSmallThreshold = 256 * 1024;
229     frame_size = mem_get_le32(raw_hdr);
230
231     if (frame_size > kCorruptFrameThreshold) {
232       warn("Read invalid frame size (%u)\n", (unsigned int)frame_size);
233       frame_size = 0;
234     }
235
236     if (frame_size < kFrameTooSmallThreshold) {
237       warn("Warning: Read invalid frame size (%u) - not a raw file?\n",
238            (unsigned int)frame_size);
239     }
240
241     if (frame_size > *buffer_size) {
242       uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
243       if (new_buf) {
244         *buffer = new_buf;
245         *buffer_size = 2 * frame_size;
246       } else {
247         warn("Failed to allocate compressed data buffer\n");
248         frame_size = 0;
249       }
250     }
251   }
252
253   if (!feof(infile)) {
254     if (fread(*buffer, 1, frame_size, infile) != frame_size) {
255       warn("Failed to read full frame\n");
256       return 1;
257     }
258     *bytes_read = frame_size;
259   }
260
261   return 0;
262 }
263
264 static int read_frame(struct VpxDecInputContext *input, uint8_t **buf,
265                       size_t *bytes_in_buffer, size_t *buffer_size) {
266   switch (input->vpx_input_ctx->file_type) {
267 #if CONFIG_WEBM_IO
268     case FILE_TYPE_WEBM:
269       return webm_read_frame(input->webm_ctx, buf, bytes_in_buffer);
270 #endif
271     case FILE_TYPE_RAW:
272       return raw_read_frame(input->vpx_input_ctx->file, buf, bytes_in_buffer,
273                             buffer_size);
274     case FILE_TYPE_IVF:
275       return ivf_read_frame(input->vpx_input_ctx->file, buf, bytes_in_buffer,
276                             buffer_size);
277     default: return 1;
278   }
279 }
280
281 static void update_image_md5(const vpx_image_t *img, const int planes[3],
282                              MD5Context *md5) {
283   int i, y;
284
285   for (i = 0; i < 3; ++i) {
286     const int plane = planes[i];
287     const unsigned char *buf = img->planes[plane];
288     const int stride = img->stride[plane];
289     const int w = vpx_img_plane_width(img, plane) *
290                   ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
291     const int h = vpx_img_plane_height(img, plane);
292
293     for (y = 0; y < h; ++y) {
294       MD5Update(md5, buf, w);
295       buf += stride;
296     }
297   }
298 }
299
300 static void write_image_file(const vpx_image_t *img, const int planes[3],
301                              FILE *file) {
302   int i, y;
303 #if CONFIG_VP9_HIGHBITDEPTH
304   const int bytes_per_sample = ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1);
305 #else
306   const int bytes_per_sample = 1;
307 #endif
308
309   for (i = 0; i < 3; ++i) {
310     const int plane = planes[i];
311     const unsigned char *buf = img->planes[plane];
312     const int stride = img->stride[plane];
313     const int w = vpx_img_plane_width(img, plane);
314     const int h = vpx_img_plane_height(img, plane);
315
316     for (y = 0; y < h; ++y) {
317       fwrite(buf, bytes_per_sample, w, file);
318       buf += stride;
319     }
320   }
321 }
322
323 static int file_is_raw(struct VpxInputContext *input) {
324   uint8_t buf[32];
325   int is_raw = 0;
326   vpx_codec_stream_info_t si;
327
328   si.sz = sizeof(si);
329
330   if (fread(buf, 1, 32, input->file) == 32) {
331     int i;
332
333     if (mem_get_le32(buf) < 256 * 1024 * 1024) {
334       for (i = 0; i < get_vpx_decoder_count(); ++i) {
335         const VpxInterface *const decoder = get_vpx_decoder_by_index(i);
336         if (!vpx_codec_peek_stream_info(decoder->codec_interface(), buf + 4,
337                                         32 - 4, &si)) {
338           is_raw = 1;
339           input->fourcc = decoder->fourcc;
340           input->width = si.w;
341           input->height = si.h;
342           input->framerate.numerator = 30;
343           input->framerate.denominator = 1;
344           break;
345         }
346       }
347     }
348   }
349
350   rewind(input->file);
351   return is_raw;
352 }
353
354 static void show_progress(int frame_in, int frame_out, uint64_t dx_time) {
355   fprintf(stderr,
356           "%d decoded frames/%d showed frames in %" PRId64 " us (%.2f fps)\r",
357           frame_in, frame_out, dx_time,
358           (double)frame_out * 1000000.0 / (double)dx_time);
359 }
360
361 struct ExternalFrameBuffer {
362   uint8_t *data;
363   size_t size;
364   int in_use;
365 };
366
367 struct ExternalFrameBufferList {
368   int num_external_frame_buffers;
369   struct ExternalFrameBuffer *ext_fb;
370 };
371
372 // Callback used by libvpx to request an external frame buffer. |cb_priv|
373 // Application private data passed into the set function. |min_size| is the
374 // minimum size in bytes needed to decode the next frame. |fb| pointer to the
375 // frame buffer.
376 static int get_vp9_frame_buffer(void *cb_priv, size_t min_size,
377                                 vpx_codec_frame_buffer_t *fb) {
378   int i;
379   struct ExternalFrameBufferList *const ext_fb_list =
380       (struct ExternalFrameBufferList *)cb_priv;
381   if (ext_fb_list == NULL) return -1;
382
383   // Find a free frame buffer.
384   for (i = 0; i < ext_fb_list->num_external_frame_buffers; ++i) {
385     if (!ext_fb_list->ext_fb[i].in_use) break;
386   }
387
388   if (i == ext_fb_list->num_external_frame_buffers) return -1;
389
390   if (ext_fb_list->ext_fb[i].size < min_size) {
391     free(ext_fb_list->ext_fb[i].data);
392     ext_fb_list->ext_fb[i].data = (uint8_t *)calloc(min_size, sizeof(uint8_t));
393     if (!ext_fb_list->ext_fb[i].data) return -1;
394
395     ext_fb_list->ext_fb[i].size = min_size;
396   }
397
398   fb->data = ext_fb_list->ext_fb[i].data;
399   fb->size = ext_fb_list->ext_fb[i].size;
400   ext_fb_list->ext_fb[i].in_use = 1;
401
402   // Set the frame buffer's private data to point at the external frame buffer.
403   fb->priv = &ext_fb_list->ext_fb[i];
404   return 0;
405 }
406
407 // Callback used by libvpx when there are no references to the frame buffer.
408 // |cb_priv| user private data passed into the set function. |fb| pointer
409 // to the frame buffer.
410 static int release_vp9_frame_buffer(void *cb_priv,
411                                     vpx_codec_frame_buffer_t *fb) {
412   struct ExternalFrameBuffer *const ext_fb =
413       (struct ExternalFrameBuffer *)fb->priv;
414   (void)cb_priv;
415   ext_fb->in_use = 0;
416   return 0;
417 }
418
419 static void generate_filename(const char *pattern, char *out, size_t q_len,
420                               unsigned int d_w, unsigned int d_h,
421                               unsigned int frame_in) {
422   const char *p = pattern;
423   char *q = out;
424
425   do {
426     char *next_pat = strchr(p, '%');
427
428     if (p == next_pat) {
429       size_t pat_len;
430
431       /* parse the pattern */
432       q[q_len - 1] = '\0';
433       switch (p[1]) {
434         case 'w': snprintf(q, q_len - 1, "%d", d_w); break;
435         case 'h': snprintf(q, q_len - 1, "%d", d_h); break;
436         case '1': snprintf(q, q_len - 1, "%d", frame_in); break;
437         case '2': snprintf(q, q_len - 1, "%02d", frame_in); break;
438         case '3': snprintf(q, q_len - 1, "%03d", frame_in); break;
439         case '4': snprintf(q, q_len - 1, "%04d", frame_in); break;
440         case '5': snprintf(q, q_len - 1, "%05d", frame_in); break;
441         case '6': snprintf(q, q_len - 1, "%06d", frame_in); break;
442         case '7': snprintf(q, q_len - 1, "%07d", frame_in); break;
443         case '8': snprintf(q, q_len - 1, "%08d", frame_in); break;
444         case '9': snprintf(q, q_len - 1, "%09d", frame_in); break;
445         default: die("Unrecognized pattern %%%c\n", p[1]); break;
446       }
447
448       pat_len = strlen(q);
449       if (pat_len >= q_len - 1) die("Output filename too long.\n");
450       q += pat_len;
451       p += 2;
452       q_len -= pat_len;
453     } else {
454       size_t copy_len;
455
456       /* copy the next segment */
457       if (!next_pat)
458         copy_len = strlen(p);
459       else
460         copy_len = next_pat - p;
461
462       if (copy_len >= q_len - 1) die("Output filename too long.\n");
463
464       memcpy(q, p, copy_len);
465       q[copy_len] = '\0';
466       q += copy_len;
467       p += copy_len;
468       q_len -= copy_len;
469     }
470   } while (*p);
471 }
472
473 static int is_single_file(const char *outfile_pattern) {
474   const char *p = outfile_pattern;
475
476   do {
477     p = strchr(p, '%');
478     if (p && p[1] >= '1' && p[1] <= '9')
479       return 0;  // pattern contains sequence number, so it's not unique
480     if (p) p++;
481   } while (p);
482
483   return 1;
484 }
485
486 static void print_md5(unsigned char digest[16], const char *filename) {
487   int i;
488
489   for (i = 0; i < 16; ++i) printf("%02x", digest[i]);
490   printf("  %s\n", filename);
491 }
492
493 static FILE *open_outfile(const char *name) {
494   if (strcmp("-", name) == 0) {
495     set_binary_mode(stdout);
496     return stdout;
497   } else {
498     FILE *file = fopen(name, "wb");
499     if (!file) fatal("Failed to open output file '%s'", name);
500     return file;
501   }
502 }
503
504 #if CONFIG_VP9_HIGHBITDEPTH
505 static int img_shifted_realloc_required(const vpx_image_t *img,
506                                         const vpx_image_t *shifted,
507                                         vpx_img_fmt_t required_fmt) {
508   return img->d_w != shifted->d_w || img->d_h != shifted->d_h ||
509          required_fmt != shifted->fmt;
510 }
511 #endif
512
513 static int main_loop(int argc, const char **argv_) {
514   vpx_codec_ctx_t decoder;
515   char *fn = NULL;
516   int i;
517   uint8_t *buf = NULL;
518   size_t bytes_in_buffer = 0, buffer_size = 0;
519   FILE *infile;
520   int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0;
521   int do_md5 = 0, progress = 0, frame_parallel = 0;
522   int stop_after = 0, postproc = 0, summary = 0, quiet = 1;
523   int arg_skip = 0;
524   int ec_enabled = 0;
525   int keep_going = 0;
526   const VpxInterface *interface = NULL;
527   const VpxInterface *fourcc_interface = NULL;
528   uint64_t dx_time = 0;
529   struct arg arg;
530   char **argv, **argi, **argj;
531
532   int single_file;
533   int use_y4m = 1;
534   int opt_yv12 = 0;
535   int opt_i420 = 0;
536   vpx_codec_dec_cfg_t cfg = { 0, 0, 0 };
537 #if CONFIG_VP9_HIGHBITDEPTH
538   unsigned int output_bit_depth = 0;
539 #endif
540 #if CONFIG_VP8_DECODER
541   vp8_postproc_cfg_t vp8_pp_cfg = { 0 };
542   int vp8_dbg_color_ref_frame = 0;
543   int vp8_dbg_color_mb_modes = 0;
544   int vp8_dbg_color_b_modes = 0;
545   int vp8_dbg_display_mv = 0;
546 #endif
547   int frames_corrupted = 0;
548   int dec_flags = 0;
549   int do_scale = 0;
550   vpx_image_t *scaled_img = NULL;
551 #if CONFIG_VP9_HIGHBITDEPTH
552   vpx_image_t *img_shifted = NULL;
553 #endif
554   int frame_avail, got_data, flush_decoder = 0;
555   int num_external_frame_buffers = 0;
556   struct ExternalFrameBufferList ext_fb_list = { 0, NULL };
557
558   const char *outfile_pattern = NULL;
559   char outfile_name[PATH_MAX] = { 0 };
560   FILE *outfile = NULL;
561
562   MD5Context md5_ctx;
563   unsigned char md5_digest[16];
564
565   struct VpxDecInputContext input = { NULL, NULL };
566   struct VpxInputContext vpx_input_ctx;
567 #if CONFIG_WEBM_IO
568   struct WebmInputContext webm_ctx;
569   memset(&(webm_ctx), 0, sizeof(webm_ctx));
570   input.webm_ctx = &webm_ctx;
571 #endif
572   input.vpx_input_ctx = &vpx_input_ctx;
573
574   /* Parse command line */
575   exec_name = argv_[0];
576   argv = argv_dup(argc - 1, argv_ + 1);
577
578   for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
579     memset(&arg, 0, sizeof(arg));
580     arg.argv_step = 1;
581
582     if (arg_match(&arg, &codecarg, argi)) {
583       interface = get_vpx_decoder_by_name(arg.val);
584       if (!interface)
585         die("Error: Unrecognized argument (%s) to --codec\n", arg.val);
586     } else if (arg_match(&arg, &looparg, argi)) {
587       // no-op
588     } else if (arg_match(&arg, &outputfile, argi))
589       outfile_pattern = arg.val;
590     else if (arg_match(&arg, &use_yv12, argi)) {
591       use_y4m = 0;
592       flipuv = 1;
593       opt_yv12 = 1;
594     } else if (arg_match(&arg, &use_i420, argi)) {
595       use_y4m = 0;
596       flipuv = 0;
597       opt_i420 = 1;
598     } else if (arg_match(&arg, &rawvideo, argi)) {
599       use_y4m = 0;
600     } else if (arg_match(&arg, &flipuvarg, argi))
601       flipuv = 1;
602     else if (arg_match(&arg, &noblitarg, argi))
603       noblit = 1;
604     else if (arg_match(&arg, &progressarg, argi))
605       progress = 1;
606     else if (arg_match(&arg, &limitarg, argi))
607       stop_after = arg_parse_uint(&arg);
608     else if (arg_match(&arg, &skiparg, argi))
609       arg_skip = arg_parse_uint(&arg);
610     else if (arg_match(&arg, &postprocarg, argi))
611       postproc = 1;
612     else if (arg_match(&arg, &md5arg, argi))
613       do_md5 = 1;
614     else if (arg_match(&arg, &summaryarg, argi))
615       summary = 1;
616     else if (arg_match(&arg, &threadsarg, argi))
617       cfg.threads = arg_parse_uint(&arg);
618 #if CONFIG_VP9_DECODER
619     else if (arg_match(&arg, &frameparallelarg, argi))
620       frame_parallel = 1;
621 #endif
622     else if (arg_match(&arg, &verbosearg, argi))
623       quiet = 0;
624     else if (arg_match(&arg, &scalearg, argi))
625       do_scale = 1;
626     else if (arg_match(&arg, &fb_arg, argi))
627       num_external_frame_buffers = arg_parse_uint(&arg);
628     else if (arg_match(&arg, &continuearg, argi))
629       keep_going = 1;
630 #if CONFIG_VP9_HIGHBITDEPTH
631     else if (arg_match(&arg, &outbitdeptharg, argi)) {
632       output_bit_depth = arg_parse_uint(&arg);
633     }
634 #endif
635 #if CONFIG_VP8_DECODER
636     else if (arg_match(&arg, &addnoise_level, argi)) {
637       postproc = 1;
638       vp8_pp_cfg.post_proc_flag |= VP8_ADDNOISE;
639       vp8_pp_cfg.noise_level = arg_parse_uint(&arg);
640     } else if (arg_match(&arg, &demacroblock_level, argi)) {
641       postproc = 1;
642       vp8_pp_cfg.post_proc_flag |= VP8_DEMACROBLOCK;
643       vp8_pp_cfg.deblocking_level = arg_parse_uint(&arg);
644     } else if (arg_match(&arg, &deblock, argi)) {
645       postproc = 1;
646       vp8_pp_cfg.post_proc_flag |= VP8_DEBLOCK;
647     } else if (arg_match(&arg, &mfqe, argi)) {
648       postproc = 1;
649       vp8_pp_cfg.post_proc_flag |= VP8_MFQE;
650     } else if (arg_match(&arg, &pp_debug_info, argi)) {
651       unsigned int level = arg_parse_uint(&arg);
652
653       postproc = 1;
654       vp8_pp_cfg.post_proc_flag &= ~0x7;
655
656       if (level) vp8_pp_cfg.post_proc_flag |= level;
657     } else if (arg_match(&arg, &pp_disp_ref_frame, argi)) {
658       unsigned int flags = arg_parse_int(&arg);
659       if (flags) {
660         postproc = 1;
661         vp8_dbg_color_ref_frame = flags;
662       }
663     } else if (arg_match(&arg, &pp_disp_mb_modes, argi)) {
664       unsigned int flags = arg_parse_int(&arg);
665       if (flags) {
666         postproc = 1;
667         vp8_dbg_color_mb_modes = flags;
668       }
669     } else if (arg_match(&arg, &pp_disp_b_modes, argi)) {
670       unsigned int flags = arg_parse_int(&arg);
671       if (flags) {
672         postproc = 1;
673         vp8_dbg_color_b_modes = flags;
674       }
675     } else if (arg_match(&arg, &pp_disp_mvs, argi)) {
676       unsigned int flags = arg_parse_int(&arg);
677       if (flags) {
678         postproc = 1;
679         vp8_dbg_display_mv = flags;
680       }
681     } else if (arg_match(&arg, &error_concealment, argi)) {
682       ec_enabled = 1;
683     }
684 #endif  // CONFIG_VP8_DECODER
685     else
686       argj++;
687   }
688
689   /* Check for unrecognized options */
690   for (argi = argv; *argi; argi++)
691     if (argi[0][0] == '-' && strlen(argi[0]) > 1)
692       die("Error: Unrecognized option %s\n", *argi);
693
694   /* Handle non-option arguments */
695   fn = argv[0];
696
697   if (!fn) {
698     free(argv);
699     usage_exit();
700   }
701   /* Open file */
702   infile = strcmp(fn, "-") ? fopen(fn, "rb") : set_binary_mode(stdin);
703
704   if (!infile) {
705     fatal("Failed to open input file '%s'", strcmp(fn, "-") ? fn : "stdin");
706   }
707 #if CONFIG_OS_SUPPORT
708   /* Make sure we don't dump to the terminal, unless forced to with -o - */
709   if (!outfile_pattern && isatty(fileno(stdout)) && !do_md5 && !noblit) {
710     fprintf(stderr,
711             "Not dumping raw video to your terminal. Use '-o -' to "
712             "override.\n");
713     return EXIT_FAILURE;
714   }
715 #endif
716   input.vpx_input_ctx->file = infile;
717   if (file_is_ivf(input.vpx_input_ctx))
718     input.vpx_input_ctx->file_type = FILE_TYPE_IVF;
719 #if CONFIG_WEBM_IO
720   else if (file_is_webm(input.webm_ctx, input.vpx_input_ctx))
721     input.vpx_input_ctx->file_type = FILE_TYPE_WEBM;
722 #endif
723   else if (file_is_raw(input.vpx_input_ctx))
724     input.vpx_input_ctx->file_type = FILE_TYPE_RAW;
725   else {
726     fprintf(stderr, "Unrecognized input file type.\n");
727 #if !CONFIG_WEBM_IO
728     fprintf(stderr, "vpxdec was built without WebM container support.\n");
729 #endif
730     return EXIT_FAILURE;
731   }
732
733   outfile_pattern = outfile_pattern ? outfile_pattern : "-";
734   single_file = is_single_file(outfile_pattern);
735
736   if (!noblit && single_file) {
737     generate_filename(outfile_pattern, outfile_name, PATH_MAX,
738                       vpx_input_ctx.width, vpx_input_ctx.height, 0);
739     if (do_md5)
740       MD5Init(&md5_ctx);
741     else
742       outfile = open_outfile(outfile_name);
743   }
744
745   if (use_y4m && !noblit) {
746     if (!single_file) {
747       fprintf(stderr,
748               "YUV4MPEG2 not supported with output patterns,"
749               " try --i420 or --yv12 or --rawvideo.\n");
750       return EXIT_FAILURE;
751     }
752
753 #if CONFIG_WEBM_IO
754     if (vpx_input_ctx.file_type == FILE_TYPE_WEBM) {
755       if (webm_guess_framerate(input.webm_ctx, input.vpx_input_ctx)) {
756         fprintf(stderr,
757                 "Failed to guess framerate -- error parsing "
758                 "webm file?\n");
759         return EXIT_FAILURE;
760       }
761     }
762 #endif
763   }
764
765   fourcc_interface = get_vpx_decoder_by_fourcc(vpx_input_ctx.fourcc);
766   if (interface && fourcc_interface && interface != fourcc_interface)
767     warn("Header indicates codec: %s\n", fourcc_interface->name);
768   else
769     interface = fourcc_interface;
770
771   if (!interface) interface = get_vpx_decoder_by_index(0);
772
773   dec_flags = (postproc ? VPX_CODEC_USE_POSTPROC : 0) |
774               (ec_enabled ? VPX_CODEC_USE_ERROR_CONCEALMENT : 0) |
775               (frame_parallel ? VPX_CODEC_USE_FRAME_THREADING : 0);
776   if (vpx_codec_dec_init(&decoder, interface->codec_interface(), &cfg,
777                          dec_flags)) {
778     fprintf(stderr, "Failed to initialize decoder: %s\n",
779             vpx_codec_error(&decoder));
780     return EXIT_FAILURE;
781   }
782
783   if (!quiet) fprintf(stderr, "%s\n", decoder.name);
784
785 #if CONFIG_VP8_DECODER
786   if (vp8_pp_cfg.post_proc_flag &&
787       vpx_codec_control(&decoder, VP8_SET_POSTPROC, &vp8_pp_cfg)) {
788     fprintf(stderr, "Failed to configure postproc: %s\n",
789             vpx_codec_error(&decoder));
790     return EXIT_FAILURE;
791   }
792
793   if (vp8_dbg_color_ref_frame &&
794       vpx_codec_control(&decoder, VP8_SET_DBG_COLOR_REF_FRAME,
795                         vp8_dbg_color_ref_frame)) {
796     fprintf(stderr, "Failed to configure reference block visualizer: %s\n",
797             vpx_codec_error(&decoder));
798     return EXIT_FAILURE;
799   }
800
801   if (vp8_dbg_color_mb_modes &&
802       vpx_codec_control(&decoder, VP8_SET_DBG_COLOR_MB_MODES,
803                         vp8_dbg_color_mb_modes)) {
804     fprintf(stderr, "Failed to configure macro block visualizer: %s\n",
805             vpx_codec_error(&decoder));
806     return EXIT_FAILURE;
807   }
808
809   if (vp8_dbg_color_b_modes &&
810       vpx_codec_control(&decoder, VP8_SET_DBG_COLOR_B_MODES,
811                         vp8_dbg_color_b_modes)) {
812     fprintf(stderr, "Failed to configure block visualizer: %s\n",
813             vpx_codec_error(&decoder));
814     return EXIT_FAILURE;
815   }
816
817   if (vp8_dbg_display_mv &&
818       vpx_codec_control(&decoder, VP8_SET_DBG_DISPLAY_MV, vp8_dbg_display_mv)) {
819     fprintf(stderr, "Failed to configure motion vector visualizer: %s\n",
820             vpx_codec_error(&decoder));
821     return EXIT_FAILURE;
822   }
823 #endif
824
825   if (arg_skip) fprintf(stderr, "Skipping first %d frames.\n", arg_skip);
826   while (arg_skip) {
827     if (read_frame(&input, &buf, &bytes_in_buffer, &buffer_size)) break;
828     arg_skip--;
829   }
830
831   if (num_external_frame_buffers > 0) {
832     ext_fb_list.num_external_frame_buffers = num_external_frame_buffers;
833     ext_fb_list.ext_fb = (struct ExternalFrameBuffer *)calloc(
834         num_external_frame_buffers, sizeof(*ext_fb_list.ext_fb));
835     if (vpx_codec_set_frame_buffer_functions(&decoder, get_vp9_frame_buffer,
836                                              release_vp9_frame_buffer,
837                                              &ext_fb_list)) {
838       fprintf(stderr, "Failed to configure external frame buffers: %s\n",
839               vpx_codec_error(&decoder));
840       return EXIT_FAILURE;
841     }
842   }
843
844   frame_avail = 1;
845   got_data = 0;
846
847   /* Decode file */
848   while (frame_avail || got_data) {
849     vpx_codec_iter_t iter = NULL;
850     vpx_image_t *img;
851     struct vpx_usec_timer timer;
852     int corrupted = 0;
853
854     frame_avail = 0;
855     if (!stop_after || frame_in < stop_after) {
856       if (!read_frame(&input, &buf, &bytes_in_buffer, &buffer_size)) {
857         frame_avail = 1;
858         frame_in++;
859
860         vpx_usec_timer_start(&timer);
861
862         if (vpx_codec_decode(&decoder, buf, (unsigned int)bytes_in_buffer, NULL,
863                              0)) {
864           const char *detail = vpx_codec_error_detail(&decoder);
865           warn("Failed to decode frame %d: %s", frame_in,
866                vpx_codec_error(&decoder));
867
868           if (detail) warn("Additional information: %s", detail);
869           if (!keep_going) goto fail;
870         }
871
872         vpx_usec_timer_mark(&timer);
873         dx_time += vpx_usec_timer_elapsed(&timer);
874       } else {
875         flush_decoder = 1;
876       }
877     } else {
878       flush_decoder = 1;
879     }
880
881     vpx_usec_timer_start(&timer);
882
883     if (flush_decoder) {
884       // Flush the decoder in frame parallel decode.
885       if (vpx_codec_decode(&decoder, NULL, 0, NULL, 0)) {
886         warn("Failed to flush decoder: %s", vpx_codec_error(&decoder));
887       }
888     }
889
890     got_data = 0;
891     if ((img = vpx_codec_get_frame(&decoder, &iter))) {
892       ++frame_out;
893       got_data = 1;
894     }
895
896     vpx_usec_timer_mark(&timer);
897     dx_time += (unsigned int)vpx_usec_timer_elapsed(&timer);
898
899     if (!frame_parallel &&
900         vpx_codec_control(&decoder, VP8D_GET_FRAME_CORRUPTED, &corrupted)) {
901       warn("Failed VP8_GET_FRAME_CORRUPTED: %s", vpx_codec_error(&decoder));
902       if (!keep_going) goto fail;
903     }
904     frames_corrupted += corrupted;
905
906     if (progress) show_progress(frame_in, frame_out, dx_time);
907
908     if (!noblit && img) {
909       const int PLANES_YUV[] = { VPX_PLANE_Y, VPX_PLANE_U, VPX_PLANE_V };
910       const int PLANES_YVU[] = { VPX_PLANE_Y, VPX_PLANE_V, VPX_PLANE_U };
911       const int *planes = flipuv ? PLANES_YVU : PLANES_YUV;
912
913       if (do_scale) {
914         if (frame_out == 1) {
915           // If the output frames are to be scaled to a fixed display size then
916           // use the width and height specified in the container. If either of
917           // these is set to 0, use the display size set in the first frame
918           // header. If that is unavailable, use the raw decoded size of the
919           // first decoded frame.
920           int render_width = vpx_input_ctx.width;
921           int render_height = vpx_input_ctx.height;
922           if (!render_width || !render_height) {
923             int render_size[2];
924             if (vpx_codec_control(&decoder, VP9D_GET_DISPLAY_SIZE,
925                                   render_size)) {
926               // As last resort use size of first frame as display size.
927               render_width = img->d_w;
928               render_height = img->d_h;
929             } else {
930               render_width = render_size[0];
931               render_height = render_size[1];
932             }
933           }
934           scaled_img =
935               vpx_img_alloc(NULL, img->fmt, render_width, render_height, 16);
936           scaled_img->bit_depth = img->bit_depth;
937         }
938
939         if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) {
940 #if CONFIG_LIBYUV
941           libyuv_scale(img, scaled_img, kFilterBox);
942           img = scaled_img;
943 #else
944           fprintf(stderr,
945                   "Failed  to scale output frame: %s.\n"
946                   "Scaling is disabled in this configuration. "
947                   "To enable scaling, configure with --enable-libyuv\n",
948                   vpx_codec_error(&decoder));
949           return EXIT_FAILURE;
950 #endif
951         }
952       }
953 #if CONFIG_VP9_HIGHBITDEPTH
954       // Default to codec bit depth if output bit depth not set
955       if (!output_bit_depth && single_file && !do_md5) {
956         output_bit_depth = img->bit_depth;
957       }
958       // Shift up or down if necessary
959       if (output_bit_depth != 0 && output_bit_depth != img->bit_depth) {
960         const vpx_img_fmt_t shifted_fmt =
961             output_bit_depth == 8
962                 ? img->fmt ^ (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH)
963                 : img->fmt | VPX_IMG_FMT_HIGHBITDEPTH;
964         if (img_shifted &&
965             img_shifted_realloc_required(img, img_shifted, shifted_fmt)) {
966           vpx_img_free(img_shifted);
967           img_shifted = NULL;
968         }
969         if (!img_shifted) {
970           img_shifted =
971               vpx_img_alloc(NULL, shifted_fmt, img->d_w, img->d_h, 16);
972           img_shifted->bit_depth = output_bit_depth;
973         }
974         if (output_bit_depth > img->bit_depth) {
975           vpx_img_upshift(img_shifted, img, output_bit_depth - img->bit_depth);
976         } else {
977           vpx_img_downshift(img_shifted, img,
978                             img->bit_depth - output_bit_depth);
979         }
980         img = img_shifted;
981       }
982 #endif
983
984       if (single_file) {
985         if (use_y4m) {
986           char buf[Y4M_BUFFER_SIZE] = { 0 };
987           size_t len = 0;
988           if (img->fmt == VPX_IMG_FMT_I440 || img->fmt == VPX_IMG_FMT_I44016) {
989             fprintf(stderr, "Cannot produce y4m output for 440 sampling.\n");
990             goto fail;
991           }
992           if (frame_out == 1) {
993             // Y4M file header
994             len = y4m_write_file_header(
995                 buf, sizeof(buf), vpx_input_ctx.width, vpx_input_ctx.height,
996                 &vpx_input_ctx.framerate, img->fmt, img->bit_depth);
997             if (do_md5) {
998               MD5Update(&md5_ctx, (md5byte *)buf, (unsigned int)len);
999             } else {
1000               fputs(buf, outfile);
1001             }
1002           }
1003
1004           // Y4M frame header
1005           len = y4m_write_frame_header(buf, sizeof(buf));
1006           if (do_md5) {
1007             MD5Update(&md5_ctx, (md5byte *)buf, (unsigned int)len);
1008           } else {
1009             fputs(buf, outfile);
1010           }
1011         } else {
1012           if (frame_out == 1) {
1013             // Check if --yv12 or --i420 options are consistent with the
1014             // bit-stream decoded
1015             if (opt_i420) {
1016               if (img->fmt != VPX_IMG_FMT_I420 &&
1017                   img->fmt != VPX_IMG_FMT_I42016) {
1018                 fprintf(stderr, "Cannot produce i420 output for bit-stream.\n");
1019                 goto fail;
1020               }
1021             }
1022             if (opt_yv12) {
1023               if ((img->fmt != VPX_IMG_FMT_I420 &&
1024                    img->fmt != VPX_IMG_FMT_YV12) ||
1025                   img->bit_depth != 8) {
1026                 fprintf(stderr, "Cannot produce yv12 output for bit-stream.\n");
1027                 goto fail;
1028               }
1029             }
1030           }
1031         }
1032
1033         if (do_md5) {
1034           update_image_md5(img, planes, &md5_ctx);
1035         } else {
1036           write_image_file(img, planes, outfile);
1037         }
1038       } else {
1039         generate_filename(outfile_pattern, outfile_name, PATH_MAX, img->d_w,
1040                           img->d_h, frame_in);
1041         if (do_md5) {
1042           MD5Init(&md5_ctx);
1043           update_image_md5(img, planes, &md5_ctx);
1044           MD5Final(md5_digest, &md5_ctx);
1045           print_md5(md5_digest, outfile_name);
1046         } else {
1047           outfile = open_outfile(outfile_name);
1048           write_image_file(img, planes, outfile);
1049           fclose(outfile);
1050         }
1051       }
1052     }
1053   }
1054
1055   if (summary || progress) {
1056     show_progress(frame_in, frame_out, dx_time);
1057     fprintf(stderr, "\n");
1058   }
1059
1060   if (frames_corrupted)
1061     fprintf(stderr, "WARNING: %d frames corrupted.\n", frames_corrupted);
1062
1063 fail:
1064
1065   if (vpx_codec_destroy(&decoder)) {
1066     fprintf(stderr, "Failed to destroy decoder: %s\n",
1067             vpx_codec_error(&decoder));
1068     return EXIT_FAILURE;
1069   }
1070
1071   if (!noblit && single_file) {
1072     if (do_md5) {
1073       MD5Final(md5_digest, &md5_ctx);
1074       print_md5(md5_digest, outfile_name);
1075     } else {
1076       fclose(outfile);
1077     }
1078   }
1079
1080 #if CONFIG_WEBM_IO
1081   if (input.vpx_input_ctx->file_type == FILE_TYPE_WEBM)
1082     webm_free(input.webm_ctx);
1083 #endif
1084
1085   if (input.vpx_input_ctx->file_type != FILE_TYPE_WEBM) free(buf);
1086
1087   if (scaled_img) vpx_img_free(scaled_img);
1088 #if CONFIG_VP9_HIGHBITDEPTH
1089   if (img_shifted) vpx_img_free(img_shifted);
1090 #endif
1091
1092   for (i = 0; i < ext_fb_list.num_external_frame_buffers; ++i) {
1093     free(ext_fb_list.ext_fb[i].data);
1094   }
1095   free(ext_fb_list.ext_fb);
1096
1097   fclose(infile);
1098   free(argv);
1099
1100   return frames_corrupted ? EXIT_FAILURE : EXIT_SUCCESS;
1101 }
1102
1103 int main(int argc, const char **argv_) {
1104   unsigned int loops = 1, i;
1105   char **argv, **argi, **argj;
1106   struct arg arg;
1107   int error = 0;
1108
1109   argv = argv_dup(argc - 1, argv_ + 1);
1110   for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
1111     memset(&arg, 0, sizeof(arg));
1112     arg.argv_step = 1;
1113
1114     if (arg_match(&arg, &looparg, argi)) {
1115       loops = arg_parse_uint(&arg);
1116       break;
1117     }
1118   }
1119   free(argv);
1120   for (i = 0; !error && i < loops; i++) error = main_loop(argc, argv_);
1121   return error;
1122 }