]> granicus.if.org Git - libvpx/blob - vpxdec.c
Merge "vp9_rdopt.c static analysis issues resolved"
[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 "third_party/libyuv/include/libyuv/scale.h"
19
20 #include "./args.h"
21 #include "./ivfdec.h"
22
23 #define VPX_CODEC_DISABLE_COMPAT 1
24 #include "./vpx_config.h"
25 #include "vpx/vpx_decoder.h"
26 #include "vpx_ports/vpx_timer.h"
27
28 #if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER
29 #include "vpx/vp8dx.h"
30 #endif
31
32 #include "./md5_utils.h"
33
34 #include "./tools_common.h"
35 #include "./webmdec.h"
36 #include "./y4menc.h"
37
38 static const char *exec_name;
39
40 struct VpxDecInputContext {
41   struct VpxInputContext *vpx_input_ctx;
42   struct WebmInputContext *webm_ctx;
43 };
44
45 static const arg_def_t looparg = ARG_DEF(NULL, "loops", 1,
46                                           "Number of times to decode the file");
47 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1,
48                                           "Codec to use");
49 static const arg_def_t use_yv12 = ARG_DEF(NULL, "yv12", 0,
50                                           "Output raw YV12 frames");
51 static const arg_def_t use_i420 = ARG_DEF(NULL, "i420", 0,
52                                           "Output raw I420 frames");
53 static const arg_def_t flipuvarg = ARG_DEF(NULL, "flipuv", 0,
54                                            "Flip the chroma planes in the output");
55 static const arg_def_t noblitarg = ARG_DEF(NULL, "noblit", 0,
56                                            "Don't process the decoded frames");
57 static const arg_def_t progressarg = ARG_DEF(NULL, "progress", 0,
58                                              "Show progress after each frame decodes");
59 static const arg_def_t limitarg = ARG_DEF(NULL, "limit", 1,
60                                           "Stop decoding after n frames");
61 static const arg_def_t skiparg = ARG_DEF(NULL, "skip", 1,
62                                          "Skip the first n input frames");
63 static const arg_def_t postprocarg = ARG_DEF(NULL, "postproc", 0,
64                                              "Postprocess decoded frames");
65 static const arg_def_t summaryarg = ARG_DEF(NULL, "summary", 0,
66                                             "Show timing summary");
67 static const arg_def_t outputfile = ARG_DEF("o", "output", 1,
68                                             "Output file name pattern (see below)");
69 static const arg_def_t threadsarg = ARG_DEF("t", "threads", 1,
70                                             "Max threads to use");
71 static const arg_def_t verbosearg = ARG_DEF("v", "verbose", 0,
72                                             "Show version string");
73 static const arg_def_t error_concealment = ARG_DEF(NULL, "error-concealment", 0,
74                                                    "Enable decoder error-concealment");
75 static const arg_def_t scalearg = ARG_DEF("S", "scale", 0,
76                                             "Scale output frames uniformly");
77
78
79 static const arg_def_t md5arg = ARG_DEF(NULL, "md5", 0,
80                                         "Compute the MD5 sum of the decoded frame");
81
82 static const arg_def_t *all_args[] = {
83   &codecarg, &use_yv12, &use_i420, &flipuvarg, &noblitarg,
84   &progressarg, &limitarg, &skiparg, &postprocarg, &summaryarg, &outputfile,
85   &threadsarg, &verbosearg, &scalearg,
86   &md5arg,
87   &error_concealment,
88   NULL
89 };
90
91 #if CONFIG_VP8_DECODER
92 static const arg_def_t addnoise_level = ARG_DEF(NULL, "noise-level", 1,
93                                                 "Enable VP8 postproc add noise");
94 static const arg_def_t deblock = ARG_DEF(NULL, "deblock", 0,
95                                          "Enable VP8 deblocking");
96 static const arg_def_t demacroblock_level = ARG_DEF(NULL, "demacroblock-level", 1,
97                                                     "Enable VP8 demacroblocking, w/ level");
98 static const arg_def_t pp_debug_info = ARG_DEF(NULL, "pp-debug-info", 1,
99                                                "Enable VP8 visible debug info");
100 static const arg_def_t pp_disp_ref_frame = ARG_DEF(NULL, "pp-dbg-ref-frame", 1,
101                                                    "Display only selected reference frame per macro block");
102 static const arg_def_t pp_disp_mb_modes = ARG_DEF(NULL, "pp-dbg-mb-modes", 1,
103                                                   "Display only selected macro block modes");
104 static const arg_def_t pp_disp_b_modes = ARG_DEF(NULL, "pp-dbg-b-modes", 1,
105                                                  "Display only selected block modes");
106 static const arg_def_t pp_disp_mvs = ARG_DEF(NULL, "pp-dbg-mvs", 1,
107                                              "Draw only selected motion vectors");
108 static const arg_def_t mfqe = ARG_DEF(NULL, "mfqe", 0,
109                                       "Enable multiframe quality enhancement");
110
111 static const arg_def_t *vp8_pp_args[] = {
112   &addnoise_level, &deblock, &demacroblock_level, &pp_debug_info,
113   &pp_disp_ref_frame, &pp_disp_mb_modes, &pp_disp_b_modes, &pp_disp_mvs, &mfqe,
114   NULL
115 };
116 #endif
117
118 static int vpx_image_scale(vpx_image_t *src, vpx_image_t *dst,
119                            FilterMode mode) {
120   assert(src->fmt == VPX_IMG_FMT_I420);
121   assert(dst->fmt == VPX_IMG_FMT_I420);
122   return I420Scale(src->planes[VPX_PLANE_Y], src->stride[VPX_PLANE_Y],
123                    src->planes[VPX_PLANE_U], src->stride[VPX_PLANE_U],
124                    src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V],
125                    src->d_w, src->d_h,
126                    dst->planes[VPX_PLANE_Y], dst->stride[VPX_PLANE_Y],
127                    dst->planes[VPX_PLANE_U], dst->stride[VPX_PLANE_U],
128                    dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V],
129                    dst->d_w, dst->d_h,
130                    mode);
131 }
132
133 void usage_exit() {
134   int i;
135
136   fprintf(stderr, "Usage: %s <options> filename\n\n"
137           "Options:\n", exec_name);
138   arg_show_usage(stderr, all_args);
139 #if CONFIG_VP8_DECODER
140   fprintf(stderr, "\nVP8 Postprocessing Options:\n");
141   arg_show_usage(stderr, vp8_pp_args);
142 #endif
143   fprintf(stderr,
144           "\nOutput File Patterns:\n\n"
145           "  The -o argument specifies the name of the file(s) to "
146           "write to. If the\n  argument does not include any escape "
147           "characters, the output will be\n  written to a single file. "
148           "Otherwise, the filename will be calculated by\n  expanding "
149           "the following escape characters:\n");
150   fprintf(stderr,
151           "\n\t%%w   - Frame width"
152           "\n\t%%h   - Frame height"
153           "\n\t%%<n> - Frame number, zero padded to <n> places (1..9)"
154           "\n\n  Pattern arguments are only supported in conjunction "
155           "with the --yv12 and\n  --i420 options. If the -o option is "
156           "not specified, the output will be\n  directed to stdout.\n"
157          );
158   fprintf(stderr, "\nIncluded decoders:\n\n");
159
160   for (i = 0; i < get_vpx_decoder_count(); ++i) {
161     const VpxInterface *const decoder = get_vpx_decoder_by_index(i);
162     fprintf(stderr, "    %-6s - %s\n",
163             decoder->name, vpx_codec_iface_name(decoder->interface()));
164   }
165
166   exit(EXIT_FAILURE);
167 }
168
169 static int raw_read_frame(FILE *infile, uint8_t **buffer,
170                           size_t *bytes_read, size_t *buffer_size) {
171   char raw_hdr[RAW_FRAME_HDR_SZ];
172   size_t frame_size = 0;
173
174   if (fread(raw_hdr, RAW_FRAME_HDR_SZ, 1, infile) != 1) {
175     if (!feof(infile))
176       warn("Failed to read RAW frame size\n");
177   } else {
178     const size_t kCorruptFrameThreshold = 256 * 1024 * 1024;
179     const size_t kFrameTooSmallThreshold = 256 * 1024;
180     frame_size = mem_get_le32(raw_hdr);
181
182     if (frame_size > kCorruptFrameThreshold) {
183       warn("Read invalid frame size (%u)\n", (unsigned int)frame_size);
184       frame_size = 0;
185     }
186
187     if (frame_size < kFrameTooSmallThreshold) {
188       warn("Warning: Read invalid frame size (%u) - not a raw file?\n",
189            (unsigned int)frame_size);
190     }
191
192     if (frame_size > *buffer_size) {
193       uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
194       if (new_buf) {
195         *buffer = new_buf;
196         *buffer_size = 2 * frame_size;
197       } else {
198         warn("Failed to allocate compressed data buffer\n");
199         frame_size = 0;
200       }
201     }
202   }
203
204   if (!feof(infile)) {
205     if (fread(*buffer, 1, frame_size, infile) != frame_size) {
206       warn("Failed to read full frame\n");
207       return 1;
208     }
209     *bytes_read = frame_size;
210   }
211
212   return 0;
213 }
214
215 static int read_frame(struct VpxDecInputContext *input, uint8_t **buf,
216                       size_t *bytes_in_buffer, size_t *buffer_size) {
217   switch (input->vpx_input_ctx->file_type) {
218     case FILE_TYPE_WEBM:
219       return webm_read_frame(input->webm_ctx,
220                              buf, bytes_in_buffer, buffer_size);
221     case FILE_TYPE_RAW:
222       return raw_read_frame(input->vpx_input_ctx->file,
223                             buf, bytes_in_buffer, buffer_size);
224     case FILE_TYPE_IVF:
225       return ivf_read_frame(input->vpx_input_ctx->file,
226                             buf, bytes_in_buffer, buffer_size);
227     default:
228       return 1;
229   }
230 }
231
232 static void update_image_md5(const vpx_image_t *img, const int planes[3],
233                              MD5Context *md5) {
234   int i, y;
235
236   for (i = 0; i < 3; ++i) {
237     const int plane = planes[i];
238     const unsigned char *buf = img->planes[plane];
239     const int stride = img->stride[plane];
240     const int w = vpx_img_plane_width(img, plane);
241     const int h = vpx_img_plane_height(img, plane);
242
243     for (y = 0; y < h; ++y) {
244       MD5Update(md5, buf, w);
245       buf += stride;
246     }
247   }
248 }
249
250 static void write_image_file(const vpx_image_t *img, const int planes[3],
251                              FILE *file) {
252   int i, y;
253
254   for (i = 0; i < 3; ++i) {
255     const int plane = planes[i];
256     const unsigned char *buf = img->planes[plane];
257     const int stride = img->stride[plane];
258     const int w = vpx_img_plane_width(img, plane);
259     const int h = vpx_img_plane_height(img, plane);
260
261     for (y = 0; y < h; ++y) {
262       fwrite(buf, 1, w, file);
263       buf += stride;
264     }
265   }
266 }
267
268 int file_is_raw(struct VpxInputContext *input) {
269   uint8_t buf[32];
270   int is_raw = 0;
271   vpx_codec_stream_info_t si;
272
273   si.sz = sizeof(si);
274
275   if (fread(buf, 1, 32, input->file) == 32) {
276     int i;
277
278     if (mem_get_le32(buf) < 256 * 1024 * 1024) {
279       for (i = 0; i < get_vpx_decoder_count(); ++i) {
280         const VpxInterface *const decoder = get_vpx_decoder_by_index(i);
281         if (!vpx_codec_peek_stream_info(decoder->interface(),
282                                         buf + 4, 32 - 4, &si)) {
283           is_raw = 1;
284           input->fourcc = decoder->fourcc;
285           input->width = si.w;
286           input->height = si.h;
287           input->framerate.numerator = 30;
288           input->framerate.denominator = 1;
289           break;
290         }
291       }
292     }
293   }
294
295   rewind(input->file);
296   return is_raw;
297 }
298
299 void show_progress(int frame_in, int frame_out, unsigned long dx_time) {
300   fprintf(stderr, "%d decoded frames/%d showed frames in %lu us (%.2f fps)\r",
301           frame_in, frame_out, dx_time,
302           (float)frame_out * 1000000.0 / (float)dx_time);
303 }
304
305 void generate_filename(const char *pattern, char *out, size_t q_len,
306                        unsigned int d_w, unsigned int d_h,
307                        unsigned int frame_in) {
308   const char *p = pattern;
309   char *q = out;
310
311   do {
312     char *next_pat = strchr(p, '%');
313
314     if (p == next_pat) {
315       size_t pat_len;
316
317       /* parse the pattern */
318       q[q_len - 1] = '\0';
319       switch (p[1]) {
320         case 'w':
321           snprintf(q, q_len - 1, "%d", d_w);
322           break;
323         case 'h':
324           snprintf(q, q_len - 1, "%d", d_h);
325           break;
326         case '1':
327           snprintf(q, q_len - 1, "%d", frame_in);
328           break;
329         case '2':
330           snprintf(q, q_len - 1, "%02d", frame_in);
331           break;
332         case '3':
333           snprintf(q, q_len - 1, "%03d", frame_in);
334           break;
335         case '4':
336           snprintf(q, q_len - 1, "%04d", frame_in);
337           break;
338         case '5':
339           snprintf(q, q_len - 1, "%05d", frame_in);
340           break;
341         case '6':
342           snprintf(q, q_len - 1, "%06d", frame_in);
343           break;
344         case '7':
345           snprintf(q, q_len - 1, "%07d", frame_in);
346           break;
347         case '8':
348           snprintf(q, q_len - 1, "%08d", frame_in);
349           break;
350         case '9':
351           snprintf(q, q_len - 1, "%09d", frame_in);
352           break;
353         default:
354           die("Unrecognized pattern %%%c\n", p[1]);
355       }
356
357       pat_len = strlen(q);
358       if (pat_len >= q_len - 1)
359         die("Output filename too long.\n");
360       q += pat_len;
361       p += 2;
362       q_len -= pat_len;
363     } else {
364       size_t copy_len;
365
366       /* copy the next segment */
367       if (!next_pat)
368         copy_len = strlen(p);
369       else
370         copy_len = next_pat - p;
371
372       if (copy_len >= q_len - 1)
373         die("Output filename too long.\n");
374
375       memcpy(q, p, copy_len);
376       q[copy_len] = '\0';
377       q += copy_len;
378       p += copy_len;
379       q_len -= copy_len;
380     }
381   } while (*p);
382 }
383
384 static int is_single_file(const char *outfile_pattern) {
385   const char *p = outfile_pattern;
386
387   do {
388     p = strchr(p, '%');
389     if (p && p[1] >= '1' && p[1] <= '9')
390       return 0;  // pattern contains sequence number, so it's not unique
391     if (p)
392       p++;
393   } while (p);
394
395   return 1;
396 }
397
398 static void print_md5(unsigned char digest[16], const char *filename) {
399   int i;
400
401   for (i = 0; i < 16; ++i)
402     printf("%02x", digest[i]);
403   printf("  %s\n", filename);
404 }
405
406 static FILE *open_outfile(const char *name) {
407   if (strcmp("-", name) == 0) {
408     set_binary_mode(stdout);
409     return stdout;
410   } else {
411     FILE *file = fopen(name, "wb");
412     if (!file)
413       fatal("Failed to output file %s", name);
414     return file;
415   }
416 }
417
418 int main_loop(int argc, const char **argv_) {
419   vpx_codec_ctx_t       decoder;
420   char                  *fn = NULL;
421   uint8_t               *buf = NULL;
422   size_t                 bytes_in_buffer = 0, buffer_size = 0;
423   FILE                  *infile;
424   int                    frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0;
425   int                    do_md5 = 0, progress = 0;
426   int                    stop_after = 0, postproc = 0, summary = 0, quiet = 1;
427   int                    arg_skip = 0;
428   int                    ec_enabled = 0;
429   const VpxInterface *interface = NULL;
430   const VpxInterface *fourcc_interface = NULL;
431   unsigned long          dx_time = 0;
432   struct arg               arg;
433   char                   **argv, **argi, **argj;
434
435   int                     single_file;
436   int                     use_y4m = 1;
437   vpx_codec_dec_cfg_t     cfg = {0};
438 #if CONFIG_VP8_DECODER
439   vp8_postproc_cfg_t      vp8_pp_cfg = {0};
440   int                     vp8_dbg_color_ref_frame = 0;
441   int                     vp8_dbg_color_mb_modes = 0;
442   int                     vp8_dbg_color_b_modes = 0;
443   int                     vp8_dbg_display_mv = 0;
444 #endif
445   int                     frames_corrupted = 0;
446   int                     dec_flags = 0;
447   int                     do_scale = 0;
448   vpx_image_t             *scaled_img = NULL;
449   int                     frame_avail, got_data;
450
451   const char *outfile_pattern = NULL;
452   char outfile_name[PATH_MAX] = {0};
453   FILE *outfile = NULL;
454
455   MD5Context md5_ctx;
456   unsigned char md5_digest[16];
457
458   struct VpxDecInputContext input = {0};
459   struct VpxInputContext vpx_input_ctx = {0};
460   struct WebmInputContext webm_ctx = {0};
461   input.vpx_input_ctx = &vpx_input_ctx;
462   input.webm_ctx = &webm_ctx;
463
464   /* Parse command line */
465   exec_name = argv_[0];
466   argv = argv_dup(argc - 1, argv_ + 1);
467
468   for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
469     memset(&arg, 0, sizeof(arg));
470     arg.argv_step = 1;
471
472     if (arg_match(&arg, &codecarg, argi)) {
473       interface = get_vpx_decoder_by_name(arg.val);
474       if (!interface)
475         die("Error: Unrecognized argument (%s) to --codec\n", arg.val);
476     } else if (arg_match(&arg, &looparg, argi)) {
477       // no-op
478     } else if (arg_match(&arg, &outputfile, argi))
479       outfile_pattern = arg.val;
480     else if (arg_match(&arg, &use_yv12, argi)) {
481       use_y4m = 0;
482       flipuv = 1;
483     } else if (arg_match(&arg, &use_i420, argi)) {
484       use_y4m = 0;
485       flipuv = 0;
486     } else if (arg_match(&arg, &flipuvarg, argi))
487       flipuv = 1;
488     else if (arg_match(&arg, &noblitarg, argi))
489       noblit = 1;
490     else if (arg_match(&arg, &progressarg, argi))
491       progress = 1;
492     else if (arg_match(&arg, &limitarg, argi))
493       stop_after = arg_parse_uint(&arg);
494     else if (arg_match(&arg, &skiparg, argi))
495       arg_skip = arg_parse_uint(&arg);
496     else if (arg_match(&arg, &postprocarg, argi))
497       postproc = 1;
498     else if (arg_match(&arg, &md5arg, argi))
499       do_md5 = 1;
500     else if (arg_match(&arg, &summaryarg, argi))
501       summary = 1;
502     else if (arg_match(&arg, &threadsarg, argi))
503       cfg.threads = arg_parse_uint(&arg);
504     else if (arg_match(&arg, &verbosearg, argi))
505       quiet = 0;
506     else if (arg_match(&arg, &scalearg, argi))
507       do_scale = 1;
508
509 #if CONFIG_VP8_DECODER
510     else if (arg_match(&arg, &addnoise_level, argi)) {
511       postproc = 1;
512       vp8_pp_cfg.post_proc_flag |= VP8_ADDNOISE;
513       vp8_pp_cfg.noise_level = arg_parse_uint(&arg);
514     } else if (arg_match(&arg, &demacroblock_level, argi)) {
515       postproc = 1;
516       vp8_pp_cfg.post_proc_flag |= VP8_DEMACROBLOCK;
517       vp8_pp_cfg.deblocking_level = arg_parse_uint(&arg);
518     } else if (arg_match(&arg, &deblock, argi)) {
519       postproc = 1;
520       vp8_pp_cfg.post_proc_flag |= VP8_DEBLOCK;
521     } else if (arg_match(&arg, &mfqe, argi)) {
522       postproc = 1;
523       vp8_pp_cfg.post_proc_flag |= VP8_MFQE;
524     } else if (arg_match(&arg, &pp_debug_info, argi)) {
525       unsigned int level = arg_parse_uint(&arg);
526
527       postproc = 1;
528       vp8_pp_cfg.post_proc_flag &= ~0x7;
529
530       if (level)
531         vp8_pp_cfg.post_proc_flag |= level;
532     } else if (arg_match(&arg, &pp_disp_ref_frame, argi)) {
533       unsigned int flags = arg_parse_int(&arg);
534       if (flags) {
535         postproc = 1;
536         vp8_dbg_color_ref_frame = flags;
537       }
538     } else if (arg_match(&arg, &pp_disp_mb_modes, argi)) {
539       unsigned int flags = arg_parse_int(&arg);
540       if (flags) {
541         postproc = 1;
542         vp8_dbg_color_mb_modes = flags;
543       }
544     } else if (arg_match(&arg, &pp_disp_b_modes, argi)) {
545       unsigned int flags = arg_parse_int(&arg);
546       if (flags) {
547         postproc = 1;
548         vp8_dbg_color_b_modes = flags;
549       }
550     } else if (arg_match(&arg, &pp_disp_mvs, argi)) {
551       unsigned int flags = arg_parse_int(&arg);
552       if (flags) {
553         postproc = 1;
554         vp8_dbg_display_mv = flags;
555       }
556     } else if (arg_match(&arg, &error_concealment, argi)) {
557       ec_enabled = 1;
558     }
559
560 #endif
561     else
562       argj++;
563   }
564
565   /* Check for unrecognized options */
566   for (argi = argv; *argi; argi++)
567     if (argi[0][0] == '-' && strlen(argi[0]) > 1)
568       die("Error: Unrecognized option %s\n", *argi);
569
570   /* Handle non-option arguments */
571   fn = argv[0];
572
573   if (!fn)
574     usage_exit();
575
576   /* Open file */
577   infile = strcmp(fn, "-") ? fopen(fn, "rb") : set_binary_mode(stdin);
578
579   if (!infile) {
580     fprintf(stderr, "Failed to open file '%s'", strcmp(fn, "-") ? fn : "stdin");
581     return EXIT_FAILURE;
582   }
583 #if CONFIG_OS_SUPPORT
584   /* Make sure we don't dump to the terminal, unless forced to with -o - */
585   if (!outfile_pattern && isatty(fileno(stdout)) && !do_md5 && !noblit) {
586     fprintf(stderr,
587             "Not dumping raw video to your terminal. Use '-o -' to "
588             "override.\n");
589     return EXIT_FAILURE;
590   }
591 #endif
592   input.vpx_input_ctx->file = infile;
593   if (file_is_ivf(input.vpx_input_ctx))
594     input.vpx_input_ctx->file_type = FILE_TYPE_IVF;
595   else if (file_is_webm(input.webm_ctx, input.vpx_input_ctx))
596     input.vpx_input_ctx->file_type = FILE_TYPE_WEBM;
597   else if (file_is_raw(input.vpx_input_ctx))
598     input.vpx_input_ctx->file_type = FILE_TYPE_RAW;
599   else {
600     fprintf(stderr, "Unrecognized input file type.\n");
601     return EXIT_FAILURE;
602   }
603
604   outfile_pattern = outfile_pattern ? outfile_pattern : "-";
605   single_file = is_single_file(outfile_pattern);
606
607   if (!noblit && single_file) {
608     generate_filename(outfile_pattern, outfile_name, PATH_MAX,
609                       vpx_input_ctx.width, vpx_input_ctx.height, 0);
610     if (do_md5)
611       MD5Init(&md5_ctx);
612     else
613       outfile = open_outfile(outfile_name);
614   }
615
616   if (use_y4m && !noblit) {
617     if (!single_file) {
618       fprintf(stderr, "YUV4MPEG2 not supported with output patterns,"
619               " try --i420 or --yv12.\n");
620       return EXIT_FAILURE;
621     }
622
623     if (vpx_input_ctx.file_type == FILE_TYPE_WEBM) {
624       if (webm_guess_framerate(input.webm_ctx, input.vpx_input_ctx)) {
625         fprintf(stderr, "Failed to guess framerate -- error parsing "
626                 "webm file?\n");
627         return EXIT_FAILURE;
628       }
629     }
630   }
631
632   fourcc_interface = get_vpx_decoder_by_fourcc(vpx_input_ctx.fourcc);
633   if (interface && fourcc_interface && interface != fourcc_interface)
634     warn("Header indicates codec: %s\n", fourcc_interface->name);
635   else
636     interface = fourcc_interface;
637
638   if (!interface)
639     interface = get_vpx_decoder_by_index(0);
640
641   dec_flags = (postproc ? VPX_CODEC_USE_POSTPROC : 0) |
642               (ec_enabled ? VPX_CODEC_USE_ERROR_CONCEALMENT : 0);
643   if (vpx_codec_dec_init(&decoder, interface->interface(), &cfg, dec_flags)) {
644     fprintf(stderr, "Failed to initialize decoder: %s\n",
645             vpx_codec_error(&decoder));
646     return EXIT_FAILURE;
647   }
648
649   if (!quiet)
650     fprintf(stderr, "%s\n", decoder.name);
651
652 #if CONFIG_VP8_DECODER
653
654   if (vp8_pp_cfg.post_proc_flag
655       && vpx_codec_control(&decoder, VP8_SET_POSTPROC, &vp8_pp_cfg)) {
656     fprintf(stderr, "Failed to configure postproc: %s\n", vpx_codec_error(&decoder));
657     return EXIT_FAILURE;
658   }
659
660   if (vp8_dbg_color_ref_frame
661       && vpx_codec_control(&decoder, VP8_SET_DBG_COLOR_REF_FRAME, vp8_dbg_color_ref_frame)) {
662     fprintf(stderr, "Failed to configure reference block visualizer: %s\n", vpx_codec_error(&decoder));
663     return EXIT_FAILURE;
664   }
665
666   if (vp8_dbg_color_mb_modes
667       && vpx_codec_control(&decoder, VP8_SET_DBG_COLOR_MB_MODES, vp8_dbg_color_mb_modes)) {
668     fprintf(stderr, "Failed to configure macro block visualizer: %s\n", vpx_codec_error(&decoder));
669     return EXIT_FAILURE;
670   }
671
672   if (vp8_dbg_color_b_modes
673       && vpx_codec_control(&decoder, VP8_SET_DBG_COLOR_B_MODES, vp8_dbg_color_b_modes)) {
674     fprintf(stderr, "Failed to configure block visualizer: %s\n", vpx_codec_error(&decoder));
675     return EXIT_FAILURE;
676   }
677
678   if (vp8_dbg_display_mv
679       && vpx_codec_control(&decoder, VP8_SET_DBG_DISPLAY_MV, vp8_dbg_display_mv)) {
680     fprintf(stderr, "Failed to configure motion vector visualizer: %s\n", vpx_codec_error(&decoder));
681     return EXIT_FAILURE;
682   }
683 #endif
684
685
686   if (arg_skip)
687     fprintf(stderr, "Skipping first %d frames.\n", arg_skip);
688   while (arg_skip) {
689     if (read_frame(&input, &buf, &bytes_in_buffer, &buffer_size))
690       break;
691     arg_skip--;
692   }
693
694   frame_avail = 1;
695   got_data = 0;
696
697   /* Decode file */
698   while (frame_avail || got_data) {
699     vpx_codec_iter_t  iter = NULL;
700     vpx_image_t    *img;
701     struct vpx_usec_timer timer;
702     int                   corrupted;
703
704     frame_avail = 0;
705     if (!stop_after || frame_in < stop_after) {
706       if (!read_frame(&input, &buf, &bytes_in_buffer, &buffer_size)) {
707         frame_avail = 1;
708         frame_in++;
709
710         vpx_usec_timer_start(&timer);
711
712         if (vpx_codec_decode(&decoder, buf, bytes_in_buffer, NULL, 0)) {
713           const char *detail = vpx_codec_error_detail(&decoder);
714           warn("Failed to decode frame %d: %s",
715                frame_in, vpx_codec_error(&decoder));
716
717           if (detail)
718             warn("Additional information: %s", detail);
719           goto fail;
720         }
721
722         vpx_usec_timer_mark(&timer);
723         dx_time += (unsigned int)vpx_usec_timer_elapsed(&timer);
724       }
725     }
726
727     vpx_usec_timer_start(&timer);
728
729     got_data = 0;
730     if ((img = vpx_codec_get_frame(&decoder, &iter))) {
731       ++frame_out;
732       got_data = 1;
733     }
734
735     vpx_usec_timer_mark(&timer);
736     dx_time += (unsigned int)vpx_usec_timer_elapsed(&timer);
737
738     if (vpx_codec_control(&decoder, VP8D_GET_FRAME_CORRUPTED, &corrupted)) {
739       warn("Failed VP8_GET_FRAME_CORRUPTED: %s", vpx_codec_error(&decoder));
740       goto fail;
741     }
742     frames_corrupted += corrupted;
743
744     if (progress)
745       show_progress(frame_in, frame_out, dx_time);
746
747     if (!noblit && img) {
748       const int PLANES_YUV[] = {VPX_PLANE_Y, VPX_PLANE_U, VPX_PLANE_V};
749       const int PLANES_YVU[] = {VPX_PLANE_Y, VPX_PLANE_V, VPX_PLANE_U};
750       const int *planes = flipuv ? PLANES_YVU : PLANES_YUV;
751
752       if (do_scale) {
753         if (frame_out == 1) {
754           // If the output frames are to be scaled to a fixed display size then
755           // use the width and height specified in the container. If either of
756           // these is set to 0, use the display size set in the first frame
757           // header. If that is unavailable, use the raw decoded size of the
758           // first decoded frame.
759           int display_width = vpx_input_ctx.width;
760           int display_height = vpx_input_ctx.height;
761           if (!display_width || !display_height) {
762             int display_size[2];
763             if (vpx_codec_control(&decoder, VP9D_GET_DISPLAY_SIZE,
764                                   display_size)) {
765               // As last resort use size of first frame as display size.
766               display_width = img->d_w;
767               display_height = img->d_h;
768             } else {
769               display_width = display_size[0];
770               display_height = display_size[1];
771             }
772           }
773           scaled_img = vpx_img_alloc(NULL, VPX_IMG_FMT_I420, display_width,
774                                      display_height, 16);
775         }
776
777         if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) {
778           vpx_image_scale(img, scaled_img, kFilterBox);
779           img = scaled_img;
780         }
781       }
782
783       if (single_file) {
784         if (use_y4m) {
785           char buf[Y4M_BUFFER_SIZE] = {0};
786           size_t len = 0;
787           if (frame_out == 1) {
788             // Y4M file header
789             len = y4m_write_file_header(buf, sizeof(buf),
790                                         vpx_input_ctx.width,
791                                         vpx_input_ctx.height,
792                                         &vpx_input_ctx.framerate, img->fmt);
793             if (do_md5) {
794               MD5Update(&md5_ctx, (md5byte *)buf, len);
795             } else {
796               fputs(buf, outfile);
797             }
798           }
799
800           // Y4M frame header
801           len = y4m_write_frame_header(buf, sizeof(buf));
802           if (do_md5) {
803             MD5Update(&md5_ctx, (md5byte *)buf, len);
804           } else {
805             fputs(buf, outfile);
806           }
807         }
808
809         if (do_md5) {
810           update_image_md5(img, planes, &md5_ctx);
811         } else {
812           write_image_file(img, planes, outfile);
813         }
814       } else {
815         generate_filename(outfile_pattern, outfile_name, PATH_MAX,
816                           img->d_w, img->d_h, frame_in);
817         if (do_md5) {
818           MD5Init(&md5_ctx);
819           update_image_md5(img, planes, &md5_ctx);
820           MD5Final(md5_digest, &md5_ctx);
821           print_md5(md5_digest, outfile_name);
822         } else {
823           outfile = open_outfile(outfile_name);
824           write_image_file(img, planes, outfile);
825           fclose(outfile);
826         }
827       }
828     }
829
830     if (stop_after && frame_in >= stop_after)
831       break;
832   }
833
834   if (summary || progress) {
835     show_progress(frame_in, frame_out, dx_time);
836     fprintf(stderr, "\n");
837   }
838
839   if (frames_corrupted)
840     fprintf(stderr, "WARNING: %d frames corrupted.\n", frames_corrupted);
841
842 fail:
843
844   if (vpx_codec_destroy(&decoder)) {
845     fprintf(stderr, "Failed to destroy decoder: %s\n",
846             vpx_codec_error(&decoder));
847     return EXIT_FAILURE;
848   }
849
850   if (!noblit && single_file) {
851     if (do_md5) {
852       MD5Final(md5_digest, &md5_ctx);
853       print_md5(md5_digest, outfile_name);
854     } else {
855       fclose(outfile);
856     }
857   }
858
859   if (input.vpx_input_ctx->file_type == FILE_TYPE_WEBM)
860     webm_free(input.webm_ctx);
861   else
862     free(buf);
863
864   if (scaled_img) vpx_img_free(scaled_img);
865
866   fclose(infile);
867   free(argv);
868
869   return frames_corrupted ? EXIT_FAILURE : EXIT_SUCCESS;
870 }
871
872 int main(int argc, const char **argv_) {
873   unsigned int loops = 1, i;
874   char **argv, **argi, **argj;
875   struct arg arg;
876   int error = 0;
877
878   argv = argv_dup(argc - 1, argv_ + 1);
879   for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
880     memset(&arg, 0, sizeof(arg));
881     arg.argv_step = 1;
882
883     if (arg_match(&arg, &looparg, argi)) {
884       loops = arg_parse_uint(&arg);
885       break;
886     }
887   }
888   free(argv);
889   for (i = 0; !error && i < loops; i++)
890     error = main_loop(argc, argv_);
891   return error;
892 }