18 #include "./vpx_config.h" 21 #include "third_party/libyuv/include/libyuv/scale.h" 28 #include "vpx_ports/mem_ops.h" 29 #include "vpx_ports/vpx_timer.h" 31 #if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER 35 #include "./md5_utils.h" 37 #include "./tools_common.h" 39 #include "./webmdec.h" 43 static const char *exec_name;
45 struct VpxDecInputContext {
46 struct VpxInputContext *vpx_input_ctx;
47 struct WebmInputContext *webm_ctx;
50 static const arg_def_t help =
51 ARG_DEF(NULL,
"help", 0,
"Show usage options and exit");
52 static const arg_def_t looparg =
53 ARG_DEF(NULL,
"loops", 1,
"Number of times to decode the file");
54 static const arg_def_t codecarg = ARG_DEF(NULL,
"codec", 1,
"Codec to use");
55 static const arg_def_t use_yv12 =
56 ARG_DEF(NULL,
"yv12", 0,
"Output raw YV12 frames");
57 static const arg_def_t use_i420 =
58 ARG_DEF(NULL,
"i420", 0,
"Output raw I420 frames");
59 static const arg_def_t flipuvarg =
60 ARG_DEF(NULL,
"flipuv", 0,
"Flip the chroma planes in the output");
61 static const arg_def_t rawvideo =
62 ARG_DEF(NULL,
"rawvideo", 0,
"Output raw YUV frames");
63 static const arg_def_t noblitarg =
64 ARG_DEF(NULL,
"noblit", 0,
"Don't process the decoded frames");
65 static const arg_def_t progressarg =
66 ARG_DEF(NULL,
"progress", 0,
"Show progress after each frame decodes");
67 static const arg_def_t limitarg =
68 ARG_DEF(NULL,
"limit", 1,
"Stop decoding after n frames");
69 static const arg_def_t skiparg =
70 ARG_DEF(NULL,
"skip", 1,
"Skip the first n input frames");
71 static const arg_def_t postprocarg =
72 ARG_DEF(NULL,
"postproc", 0,
"Postprocess decoded frames");
73 static const arg_def_t summaryarg =
74 ARG_DEF(NULL,
"summary", 0,
"Show timing summary");
75 static const arg_def_t outputfile =
76 ARG_DEF(
"o",
"output", 1,
"Output file name pattern (see below)");
77 static const arg_def_t threadsarg =
78 ARG_DEF(
"t",
"threads", 1,
"Max threads to use");
79 static const arg_def_t frameparallelarg =
80 ARG_DEF(NULL,
"frame-parallel", 0,
"Frame parallel decode (ignored)");
81 static const arg_def_t verbosearg =
82 ARG_DEF(
"v",
"verbose", 0,
"Show version string");
83 static const arg_def_t error_concealment =
84 ARG_DEF(NULL,
"error-concealment", 0,
"Enable decoder error-concealment");
85 static const arg_def_t scalearg =
86 ARG_DEF(
"S",
"scale", 0,
"Scale output frames uniformly");
87 static const arg_def_t continuearg =
88 ARG_DEF(
"k",
"keep-going", 0,
"(debug) Continue decoding after error");
89 static const arg_def_t fb_arg =
90 ARG_DEF(NULL,
"frame-buffers", 1,
"Number of frame buffers to use");
91 static const arg_def_t md5arg =
92 ARG_DEF(NULL,
"md5", 0,
"Compute the MD5 sum of the decoded frame");
93 #if CONFIG_VP9_HIGHBITDEPTH 94 static const arg_def_t outbitdeptharg =
95 ARG_DEF(NULL,
"output-bit-depth", 1,
"Output bit-depth for decoded frames");
97 static const arg_def_t svcdecodingarg = ARG_DEF(
98 NULL,
"svc-decode-layer", 1,
"Decode SVC stream up to given spatial layer");
99 static const arg_def_t framestatsarg =
100 ARG_DEF(NULL,
"framestats", 1,
"Output per-frame stats (.csv format)");
102 static const arg_def_t *all_args[] = {
103 &help, &codecarg, &use_yv12,
104 &use_i420, &flipuvarg, &rawvideo,
105 &noblitarg, &progressarg, &limitarg,
106 &skiparg, &postprocarg, &summaryarg,
107 &outputfile, &threadsarg, &frameparallelarg,
108 &verbosearg, &scalearg, &fb_arg,
109 &md5arg, &error_concealment, &continuearg,
110 #if CONFIG_VP9_HIGHBITDEPTH 113 &svcdecodingarg, &framestatsarg, NULL
116 #if CONFIG_VP8_DECODER 117 static const arg_def_t addnoise_level =
118 ARG_DEF(NULL,
"noise-level", 1,
"Enable VP8 postproc add noise");
119 static const arg_def_t deblock =
120 ARG_DEF(NULL,
"deblock", 0,
"Enable VP8 deblocking");
121 static const arg_def_t demacroblock_level = ARG_DEF(
122 NULL,
"demacroblock-level", 1,
"Enable VP8 demacroblocking, w/ level");
123 static const arg_def_t mfqe =
124 ARG_DEF(NULL,
"mfqe", 0,
"Enable multiframe quality enhancement");
126 static const arg_def_t *vp8_pp_args[] = { &addnoise_level, &deblock,
127 &demacroblock_level, &mfqe, NULL };
132 FilterModeEnum mode) {
133 #if CONFIG_VP9_HIGHBITDEPTH 157 void show_help(FILE *fout,
int shorthelp) {
160 fprintf(fout,
"Usage: %s <options> filename\n\n", exec_name);
163 fprintf(fout,
"Use --help to see the full list of options.\n");
167 fprintf(fout,
"Options:\n");
168 arg_show_usage(fout, all_args);
169 #if CONFIG_VP8_DECODER 170 fprintf(fout,
"\nVP8 Postprocessing Options:\n");
171 arg_show_usage(fout, vp8_pp_args);
174 "\nOutput File Patterns:\n\n" 175 " The -o argument specifies the name of the file(s) to " 176 "write to. If the\n argument does not include any escape " 177 "characters, the output will be\n written to a single file. " 178 "Otherwise, the filename will be calculated by\n expanding " 179 "the following escape characters:\n");
181 "\n\t%%w - Frame width" 182 "\n\t%%h - Frame height" 183 "\n\t%%<n> - Frame number, zero padded to <n> places (1..9)" 184 "\n\n Pattern arguments are only supported in conjunction " 185 "with the --yv12 and\n --i420 options. If the -o option is " 186 "not specified, the output will be\n directed to stdout.\n");
187 fprintf(fout,
"\nIncluded decoders:\n\n");
189 for (i = 0; i < get_vpx_decoder_count(); ++i) {
190 const VpxInterface *
const decoder = get_vpx_decoder_by_index(i);
191 fprintf(fout,
" %-6s - %s\n", decoder->name,
196 void usage_exit(
void) {
197 show_help(stderr, 1);
201 static int raw_read_frame(FILE *infile, uint8_t **buffer,
size_t *bytes_read,
202 size_t *buffer_size) {
203 char raw_hdr[RAW_FRAME_HDR_SZ];
204 size_t frame_size = 0;
206 if (fread(raw_hdr, RAW_FRAME_HDR_SZ, 1, infile) != 1) {
207 if (!feof(infile)) warn(
"Failed to read RAW frame size\n");
209 const size_t kCorruptFrameThreshold = 256 * 1024 * 1024;
210 const size_t kFrameTooSmallThreshold = 256 * 1024;
211 frame_size = mem_get_le32(raw_hdr);
213 if (frame_size > kCorruptFrameThreshold) {
214 warn(
"Read invalid frame size (%u)\n", (
unsigned int)frame_size);
218 if (frame_size < kFrameTooSmallThreshold) {
219 warn(
"Warning: Read invalid frame size (%u) - not a raw file?\n",
220 (
unsigned int)frame_size);
223 if (frame_size > *buffer_size) {
224 uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
227 *buffer_size = 2 * frame_size;
229 warn(
"Failed to allocate compressed data buffer\n");
236 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
237 warn(
"Failed to read full frame\n");
240 *bytes_read = frame_size;
246 static int read_frame(
struct VpxDecInputContext *input, uint8_t **buf,
247 size_t *bytes_in_buffer,
size_t *buffer_size) {
248 switch (input->vpx_input_ctx->file_type) {
251 return webm_read_frame(input->webm_ctx, buf, bytes_in_buffer);
254 return raw_read_frame(input->vpx_input_ctx->file, buf, bytes_in_buffer,
257 return ivf_read_frame(input->vpx_input_ctx->file, buf, bytes_in_buffer,
263 static void update_image_md5(
const vpx_image_t *img,
const int planes[3],
267 for (i = 0; i < 3; ++i) {
268 const int plane = planes[i];
269 const unsigned char *buf = img->
planes[plane];
270 const int stride = img->
stride[plane];
271 const int w = vpx_img_plane_width(img, plane) *
273 const int h = vpx_img_plane_height(img, plane);
275 for (y = 0; y < h; ++y) {
276 MD5Update(md5, buf, w);
282 static void write_image_file(
const vpx_image_t *img,
const int planes[3],
285 #if CONFIG_VP9_HIGHBITDEPTH 288 const int bytes_per_sample = 1;
291 for (i = 0; i < 3; ++i) {
292 const int plane = planes[i];
293 const unsigned char *buf = img->
planes[plane];
294 const int stride = img->
stride[plane];
295 const int w = vpx_img_plane_width(img, plane);
296 const int h = vpx_img_plane_height(img, plane);
298 for (y = 0; y < h; ++y) {
299 fwrite(buf, bytes_per_sample, w, file);
305 static int file_is_raw(
struct VpxInputContext *input) {
312 if (fread(buf, 1, 32, input->file) == 32) {
315 if (mem_get_le32(buf) < 256 * 1024 * 1024) {
316 for (i = 0; i < get_vpx_decoder_count(); ++i) {
317 const VpxInterface *
const decoder = get_vpx_decoder_by_index(i);
321 input->fourcc = decoder->fourcc;
323 input->height = si.
h;
324 input->framerate.numerator = 30;
325 input->framerate.denominator = 1;
336 static void show_progress(
int frame_in,
int frame_out, uint64_t dx_time) {
338 "%d decoded frames/%d showed frames in %" PRId64
" us (%.2f fps)\r",
339 frame_in, frame_out, dx_time,
340 (
double)frame_out * 1000000.0 / (
double)dx_time);
343 struct ExternalFrameBuffer {
349 struct ExternalFrameBufferList {
350 int num_external_frame_buffers;
351 struct ExternalFrameBuffer *ext_fb;
358 static int get_vp9_frame_buffer(
void *cb_priv,
size_t min_size,
361 struct ExternalFrameBufferList *
const ext_fb_list =
362 (
struct ExternalFrameBufferList *)cb_priv;
363 if (ext_fb_list == NULL)
return -1;
366 for (i = 0; i < ext_fb_list->num_external_frame_buffers; ++i) {
367 if (!ext_fb_list->ext_fb[i].in_use)
break;
370 if (i == ext_fb_list->num_external_frame_buffers)
return -1;
372 if (ext_fb_list->ext_fb[i].size < min_size) {
373 free(ext_fb_list->ext_fb[i].data);
374 ext_fb_list->ext_fb[i].data = (uint8_t *)calloc(min_size,
sizeof(uint8_t));
375 if (!ext_fb_list->ext_fb[i].data)
return -1;
377 ext_fb_list->ext_fb[i].size = min_size;
380 fb->
data = ext_fb_list->ext_fb[i].data;
381 fb->
size = ext_fb_list->ext_fb[i].size;
382 ext_fb_list->ext_fb[i].in_use = 1;
385 fb->
priv = &ext_fb_list->ext_fb[i];
392 static int release_vp9_frame_buffer(
void *cb_priv,
394 struct ExternalFrameBuffer *
const ext_fb =
395 (
struct ExternalFrameBuffer *)fb->
priv;
401 static void generate_filename(
const char *pattern,
char *out,
size_t q_len,
402 unsigned int d_w,
unsigned int d_h,
403 unsigned int frame_in) {
404 const char *p = pattern;
408 char *next_pat = strchr(p,
'%');
416 case 'w': snprintf(q, q_len - 1,
"%d", d_w);
break;
417 case 'h': snprintf(q, q_len - 1,
"%d", d_h);
break;
418 case '1': snprintf(q, q_len - 1,
"%d", frame_in);
break;
419 case '2': snprintf(q, q_len - 1,
"%02d", frame_in);
break;
420 case '3': snprintf(q, q_len - 1,
"%03d", frame_in);
break;
421 case '4': snprintf(q, q_len - 1,
"%04d", frame_in);
break;
422 case '5': snprintf(q, q_len - 1,
"%05d", frame_in);
break;
423 case '6': snprintf(q, q_len - 1,
"%06d", frame_in);
break;
424 case '7': snprintf(q, q_len - 1,
"%07d", frame_in);
break;
425 case '8': snprintf(q, q_len - 1,
"%08d", frame_in);
break;
426 case '9': snprintf(q, q_len - 1,
"%09d", frame_in);
break;
427 default: die(
"Unrecognized pattern %%%c\n", p[1]);
break;
431 if (pat_len >= q_len - 1) die(
"Output filename too long.\n");
440 copy_len = strlen(p);
442 copy_len = next_pat - p;
444 if (copy_len >= q_len - 1) die(
"Output filename too long.\n");
446 memcpy(q, p, copy_len);
455 static int is_single_file(
const char *outfile_pattern) {
456 const char *p = outfile_pattern;
460 if (p && p[1] >=
'1' && p[1] <=
'9')
468 static void print_md5(
unsigned char digest[16],
const char *filename) {
471 for (i = 0; i < 16; ++i) printf(
"%02x", digest[i]);
472 printf(
" %s\n", filename);
475 static FILE *open_outfile(
const char *name) {
476 if (strcmp(
"-", name) == 0) {
477 set_binary_mode(stdout);
480 FILE *file = fopen(name,
"wb");
481 if (!file) fatal(
"Failed to open output file '%s'", name);
486 #if CONFIG_VP9_HIGHBITDEPTH 487 static int img_shifted_realloc_required(
const vpx_image_t *img,
490 return img->
d_w != shifted->
d_w || img->
d_h != shifted->
d_h ||
491 required_fmt != shifted->
fmt;
495 static int main_loop(
int argc,
const char **argv_) {
499 int ret = EXIT_FAILURE;
501 size_t bytes_in_buffer = 0, buffer_size = 0;
503 int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0;
504 int do_md5 = 0, progress = 0;
505 int stop_after = 0, postproc = 0, summary = 0, quiet = 1;
509 const VpxInterface *
interface = NULL;
510 const VpxInterface *fourcc_interface = NULL;
511 uint64_t dx_time = 0;
513 char **argv, **argi, **argj;
520 #if CONFIG_VP9_HIGHBITDEPTH 521 unsigned int output_bit_depth = 0;
523 int svc_decoding = 0;
524 int svc_spatial_layer = 0;
525 #if CONFIG_VP8_DECODER 528 int frames_corrupted = 0;
532 #if CONFIG_VP9_HIGHBITDEPTH 535 int frame_avail, got_data, flush_decoder = 0;
536 int num_external_frame_buffers = 0;
537 struct ExternalFrameBufferList ext_fb_list = { 0, NULL };
539 const char *outfile_pattern = NULL;
540 char outfile_name[PATH_MAX] = { 0 };
541 FILE *outfile = NULL;
543 FILE *framestats_file = NULL;
546 unsigned char md5_digest[16];
548 struct VpxDecInputContext input = { NULL, NULL };
549 struct VpxInputContext vpx_input_ctx;
551 struct WebmInputContext webm_ctx;
552 memset(&(webm_ctx), 0,
sizeof(webm_ctx));
553 input.webm_ctx = &webm_ctx;
555 input.vpx_input_ctx = &vpx_input_ctx;
558 exec_name = argv_[0];
559 argv = argv_dup(argc - 1, argv_ + 1);
561 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
562 memset(&arg, 0,
sizeof(arg));
565 if (arg_match(&arg, &help, argi)) {
566 show_help(stdout, 0);
568 }
else if (arg_match(&arg, &codecarg, argi)) {
569 interface = get_vpx_decoder_by_name(arg.val);
571 die(
"Error: Unrecognized argument (%s) to --codec\n", arg.val);
572 }
else if (arg_match(&arg, &looparg, argi)) {
574 }
else if (arg_match(&arg, &outputfile, argi))
575 outfile_pattern = arg.val;
576 else if (arg_match(&arg, &use_yv12, argi)) {
580 }
else if (arg_match(&arg, &use_i420, argi)) {
584 }
else if (arg_match(&arg, &rawvideo, argi)) {
586 }
else if (arg_match(&arg, &flipuvarg, argi))
588 else if (arg_match(&arg, &noblitarg, argi))
590 else if (arg_match(&arg, &progressarg, argi))
592 else if (arg_match(&arg, &limitarg, argi))
593 stop_after = arg_parse_uint(&arg);
594 else if (arg_match(&arg, &skiparg, argi))
595 arg_skip = arg_parse_uint(&arg);
596 else if (arg_match(&arg, &postprocarg, argi))
598 else if (arg_match(&arg, &md5arg, argi))
600 else if (arg_match(&arg, &summaryarg, argi))
602 else if (arg_match(&arg, &threadsarg, argi))
603 cfg.
threads = arg_parse_uint(&arg);
604 #if CONFIG_VP9_DECODER 605 else if (arg_match(&arg, &frameparallelarg, argi)) {
609 else if (arg_match(&arg, &verbosearg, argi))
611 else if (arg_match(&arg, &scalearg, argi))
613 else if (arg_match(&arg, &fb_arg, argi))
614 num_external_frame_buffers = arg_parse_uint(&arg);
615 else if (arg_match(&arg, &continuearg, argi))
617 #if CONFIG_VP9_HIGHBITDEPTH 618 else if (arg_match(&arg, &outbitdeptharg, argi)) {
619 output_bit_depth = arg_parse_uint(&arg);
622 else if (arg_match(&arg, &svcdecodingarg, argi)) {
624 svc_spatial_layer = arg_parse_uint(&arg);
625 }
else if (arg_match(&arg, &framestatsarg, argi)) {
626 framestats_file = fopen(arg.val,
"w");
627 if (!framestats_file) {
628 die(
"Error: Could not open --framestats file (%s) for writing.\n",
632 #if CONFIG_VP8_DECODER 633 else if (arg_match(&arg, &addnoise_level, argi)) {
637 }
else if (arg_match(&arg, &demacroblock_level, argi)) {
641 }
else if (arg_match(&arg, &deblock, argi)) {
644 }
else if (arg_match(&arg, &mfqe, argi)) {
647 }
else if (arg_match(&arg, &error_concealment, argi)) {
650 #endif // CONFIG_VP8_DECODER 656 for (argi = argv; *argi; argi++)
657 if (argi[0][0] ==
'-' && strlen(argi[0]) > 1)
658 die(
"Error: Unrecognized option %s\n", *argi);
665 fprintf(stderr,
"No input file specified!\n");
669 infile = strcmp(fn,
"-") ? fopen(fn,
"rb") : set_binary_mode(stdin);
672 fatal(
"Failed to open input file '%s'", strcmp(fn,
"-") ? fn :
"stdin");
674 #if CONFIG_OS_SUPPORT 676 if (!outfile_pattern && isatty(fileno(stdout)) && !do_md5 && !noblit) {
678 "Not dumping raw video to your terminal. Use '-o -' to " 683 input.vpx_input_ctx->file = infile;
684 if (file_is_ivf(input.vpx_input_ctx))
685 input.vpx_input_ctx->file_type = FILE_TYPE_IVF;
687 else if (file_is_webm(input.webm_ctx, input.vpx_input_ctx))
688 input.vpx_input_ctx->file_type = FILE_TYPE_WEBM;
690 else if (file_is_raw(input.vpx_input_ctx))
691 input.vpx_input_ctx->file_type = FILE_TYPE_RAW;
693 fprintf(stderr,
"Unrecognized input file type.\n");
695 fprintf(stderr,
"vpxdec was built without WebM container support.\n");
700 outfile_pattern = outfile_pattern ? outfile_pattern :
"-";
701 single_file = is_single_file(outfile_pattern);
703 if (!noblit && single_file) {
704 generate_filename(outfile_pattern, outfile_name, PATH_MAX,
705 vpx_input_ctx.width, vpx_input_ctx.height, 0);
709 outfile = open_outfile(outfile_name);
712 if (use_y4m && !noblit) {
715 "YUV4MPEG2 not supported with output patterns," 716 " try --i420 or --yv12 or --rawvideo.\n");
721 if (vpx_input_ctx.file_type == FILE_TYPE_WEBM) {
722 if (webm_guess_framerate(input.webm_ctx, input.vpx_input_ctx)) {
724 "Failed to guess framerate -- error parsing " 732 fourcc_interface = get_vpx_decoder_by_fourcc(vpx_input_ctx.fourcc);
733 if (interface && fourcc_interface && interface != fourcc_interface)
734 warn(
"Header indicates codec: %s\n", fourcc_interface->name);
736 interface = fourcc_interface;
738 if (!interface)
interface = get_vpx_decoder_by_index(0);
744 fprintf(stderr,
"Failed to initialize decoder: %s\n",
750 svc_spatial_layer)) {
751 fprintf(stderr,
"Failed to set spatial layer for svc decode: %s\n",
756 if (!quiet) fprintf(stderr,
"%s\n", decoder.
name);
758 #if CONFIG_VP8_DECODER 761 fprintf(stderr,
"Failed to configure postproc: %s\n",
767 if (arg_skip) fprintf(stderr,
"Skipping first %d frames.\n", arg_skip);
769 if (read_frame(&input, &buf, &bytes_in_buffer, &buffer_size))
break;
773 if (num_external_frame_buffers > 0) {
774 ext_fb_list.num_external_frame_buffers = num_external_frame_buffers;
775 ext_fb_list.ext_fb = (
struct ExternalFrameBuffer *)calloc(
776 num_external_frame_buffers,
sizeof(*ext_fb_list.ext_fb));
778 release_vp9_frame_buffer,
780 fprintf(stderr,
"Failed to configure external frame buffers: %s\n",
789 if (framestats_file) fprintf(framestats_file,
"bytes,qp\n");
792 while (frame_avail || got_data) {
795 struct vpx_usec_timer timer;
799 if (!stop_after || frame_in < stop_after) {
800 if (!read_frame(&input, &buf, &bytes_in_buffer, &buffer_size)) {
804 vpx_usec_timer_start(&timer);
809 warn(
"Failed to decode frame %d: %s", frame_in,
811 if (detail) warn(
"Additional information: %s", detail);
813 if (!keep_going)
goto fail;
816 if (framestats_file) {
819 warn(
"Failed VPXD_GET_LAST_QUANTIZER: %s",
821 if (!keep_going)
goto fail;
823 fprintf(framestats_file,
"%d,%d\n", (
int)bytes_in_buffer, qp);
826 vpx_usec_timer_mark(&timer);
827 dx_time += vpx_usec_timer_elapsed(&timer);
835 vpx_usec_timer_start(&timer);
842 if (!keep_going)
goto fail;
852 vpx_usec_timer_mark(&timer);
853 dx_time += (
unsigned int)vpx_usec_timer_elapsed(&timer);
858 if (!keep_going)
goto fail;
860 frames_corrupted += corrupted;
862 if (progress) show_progress(frame_in, frame_out, dx_time);
864 if (!noblit && img) {
867 const int *planes = flipuv ? PLANES_YVU : PLANES_YUV;
870 if (frame_out == 1) {
876 int render_width = vpx_input_ctx.width;
877 int render_height = vpx_input_ctx.height;
878 if (!render_width || !render_height) {
883 render_width = img->
d_w;
884 render_height = img->
d_h;
886 render_width = render_size[0];
887 render_height = render_size[1];
895 if (img->
d_w != scaled_img->
d_w || img->
d_h != scaled_img->
d_h) {
897 libyuv_scale(img, scaled_img, kFilterBox);
901 "Failed to scale output frame: %s.\n" 902 "Scaling is disabled in this configuration. " 903 "To enable scaling, configure with --enable-libyuv\n",
909 #if CONFIG_VP9_HIGHBITDEPTH 911 if (!output_bit_depth && single_file && !do_md5) {
915 if (output_bit_depth != 0 && output_bit_depth != img->
bit_depth) {
917 output_bit_depth == 8
921 img_shifted_realloc_required(img, img_shifted, shifted_fmt)) {
928 img_shifted->
bit_depth = output_bit_depth;
931 vpx_img_upshift(img_shifted, img, output_bit_depth - img->
bit_depth);
933 vpx_img_downshift(img_shifted, img,
942 char buf[Y4M_BUFFER_SIZE] = { 0 };
945 fprintf(stderr,
"Cannot produce y4m output for 440 sampling.\n");
948 if (frame_out == 1) {
950 len = y4m_write_file_header(
951 buf,
sizeof(buf), vpx_input_ctx.width, vpx_input_ctx.height,
954 MD5Update(&md5_ctx, (md5byte *)buf, (
unsigned int)len);
961 len = y4m_write_frame_header(buf,
sizeof(buf));
963 MD5Update(&md5_ctx, (md5byte *)buf, (
unsigned int)len);
968 if (frame_out == 1) {
974 fprintf(stderr,
"Cannot produce i420 output for bit-stream.\n");
982 fprintf(stderr,
"Cannot produce yv12 output for bit-stream.\n");
990 update_image_md5(img, planes, &md5_ctx);
992 if (!corrupted) write_image_file(img, planes, outfile);
995 generate_filename(outfile_pattern, outfile_name, PATH_MAX, img->
d_w,
999 update_image_md5(img, planes, &md5_ctx);
1000 MD5Final(md5_digest, &md5_ctx);
1001 print_md5(md5_digest, outfile_name);
1003 outfile = open_outfile(outfile_name);
1004 write_image_file(img, planes, outfile);
1011 if (summary || progress) {
1012 show_progress(frame_in, frame_out, dx_time);
1013 fprintf(stderr,
"\n");
1016 if (frames_corrupted) {
1017 fprintf(stderr,
"WARNING: %d frames corrupted.\n", frames_corrupted);
1025 fprintf(stderr,
"Failed to destroy decoder: %s\n",
1031 if (!noblit && single_file) {
1033 MD5Final(md5_digest, &md5_ctx);
1034 print_md5(md5_digest, outfile_name);
1041 if (input.vpx_input_ctx->file_type == FILE_TYPE_WEBM)
1042 webm_free(input.webm_ctx);
1045 if (input.vpx_input_ctx->file_type != FILE_TYPE_WEBM) free(buf);
1048 #if CONFIG_VP9_HIGHBITDEPTH 1052 for (i = 0; i < ext_fb_list.num_external_frame_buffers; ++i) {
1053 free(ext_fb_list.ext_fb[i].data);
1055 free(ext_fb_list.ext_fb);
1058 if (framestats_file) fclose(framestats_file);
1065 int main(
int argc,
const char **argv_) {
1066 unsigned int loops = 1, i;
1067 char **argv, **argi, **argj;
1071 argv = argv_dup(argc - 1, argv_ + 1);
1072 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
1073 memset(&arg, 0,
sizeof(arg));
1076 if (arg_match(&arg, &looparg, argi)) {
1077 loops = arg_parse_uint(&arg);
1082 for (i = 0; !error && i < loops; i++) error = main_loop(argc, argv_);
Definition: vpx_image.h:66
Image Descriptor.
Definition: vpx_image.h:88
Describes the decoder algorithm interface to applications.
const char * vpx_codec_iface_name(vpx_codec_iface_t *iface)
Return the name for a given interface.
Definition: vpx_image.h:53
unsigned int threads
Definition: vpx_decoder.h:108
unsigned int sz
Definition: vpx_decoder.h:90
Stream properties.
Definition: vpx_decoder.h:89
int noise_level
Definition: vp8.h:93
unsigned int bit_depth
Definition: vpx_image.h:96
Provides definitions for using VP8 or VP9 within the vpx Decoder interface.
vpx_codec_err_t vpx_codec_peek_stream_info(vpx_codec_iface_t *iface, const uint8_t *data, unsigned int data_sz, vpx_codec_stream_info_t *si)
Parse stream info from a buffer.
#define VPX_PLANE_Y
Definition: vpx_image.h:112
uint8_t * data
Definition: vpx_frame_buffer.h:40
const char * name
Definition: vpx_codec.h:198
#define VPX_PLANE_V
Definition: vpx_image.h:114
Codec control function to get last decoded frame quantizer.
Definition: vp8dx.h:125
#define VPX_IMG_FMT_HIGHBITDEPTH
Definition: vpx_image.h:35
#define VPX_CODEC_USE_ERROR_CONCEALMENT
Conceal errors in decoded frames.
Definition: vpx_decoder.h:76
vpx_image_t * vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align)
Open a descriptor, allocating storage for the underlying image.
Definition: vpx_image.h:55
unsigned int d_w
Definition: vpx_image.h:99
#define vpx_codec_dec_init(ctx, iface, cfg, flags)
Convenience macro for vpx_codec_dec_init_ver()
Definition: vpx_decoder.h:144
vpx_codec_err_t vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline)
Decode data.
enum vpx_img_fmt vpx_img_fmt_t
List of supported image formats.
size_t size
Definition: vpx_frame_buffer.h:41
int stride[4]
Definition: vpx_image.h:117
void vpx_img_free(vpx_image_t *img)
Close an image descriptor.
vpx_img_fmt_t fmt
Definition: vpx_image.h:89
unsigned char * planes[4]
Definition: vpx_image.h:116
#define VPX_CODEC_USE_POSTPROC
Definition: vpx_decoder.h:74
const char * vpx_codec_error_detail(vpx_codec_ctx_t *ctx)
Retrieve detailed error information for codec context.
void * priv
Definition: vpx_frame_buffer.h:42
#define VPX_PLANE_U
Definition: vpx_image.h:113
int deblocking_level
Definition: vp8.h:92
unsigned int w
Definition: vpx_decoder.h:91
Definition: vpx_image.h:63
External frame buffer.
Definition: vpx_frame_buffer.h:39
#define vpx_codec_control(ctx, id, data)
vpx_codec_control wrapper macro
Definition: vpx_codec.h:404
vpx_codec_err_t vpx_codec_destroy(vpx_codec_ctx_t *ctx)
Destroy a codec instance.
unsigned int d_h
Definition: vpx_image.h:100
post process flags
Definition: vp8.h:88
vpx_codec_err_t vpx_codec_set_frame_buffer_functions(vpx_codec_ctx_t *ctx, vpx_get_frame_buffer_cb_fn_t cb_get, vpx_release_frame_buffer_cb_fn_t cb_release, void *cb_priv)
Pass in external frame buffers for the decoder to use.
unsigned int h
Definition: vpx_decoder.h:92
const char * vpx_codec_error(vpx_codec_ctx_t *ctx)
Retrieve error synopsis for codec context.
Initialization Configurations.
Definition: vpx_decoder.h:107
Definition: vpx_image.h:61
const void * vpx_codec_iter_t
Iterator.
Definition: vpx_codec.h:187
vpx_image_t * vpx_codec_get_frame(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter)
Decoded frames iterator.
int post_proc_flag
the types of post processing to be done, should be combination of "vp8_postproc_level" ...
Definition: vp8.h:91
Codec context structure.
Definition: vpx_codec.h:197