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