18#include "config/aom_config.h"
23#elif !defined(STDOUT_FILENO)
24#define STDOUT_FILENO 1
30#include "aom_ports/aom_timer.h"
31#include "aom_ports/mem_ops.h"
32#include "common/args.h"
33#include "common/ivfdec.h"
34#include "common/md5_utils.h"
35#include "common/obudec.h"
36#include "common/tools_common.h"
39#include "common/webmdec.h"
42#include "common/rawenc.h"
43#include "common/y4menc.h"
46#include "third_party/libyuv/include/libyuv/scale.h"
49static const char *exec_name;
51struct AvxDecInputContext {
52 struct AvxInputContext *aom_input_ctx;
53 struct ObuDecInputContext *obu_ctx;
54 struct WebmInputContext *webm_ctx;
57static const arg_def_t help =
58 ARG_DEF(NULL,
"help", 0,
"Show usage options and exit");
59static const arg_def_t looparg =
60 ARG_DEF(NULL,
"loops", 1,
"Number of times to decode the file");
61static const arg_def_t codecarg = ARG_DEF(NULL,
"codec", 1,
"Codec to use");
62static const arg_def_t use_yv12 =
63 ARG_DEF(NULL,
"yv12", 0,
"Output raw YV12 frames");
64static const arg_def_t use_i420 =
65 ARG_DEF(NULL,
"i420", 0,
"Output raw I420 frames");
66static const arg_def_t flipuvarg =
67 ARG_DEF(NULL,
"flipuv", 0,
"Flip the chroma planes in the output");
68static const arg_def_t rawvideo =
69 ARG_DEF(NULL,
"rawvideo", 0,
"Output raw YUV frames");
70static const arg_def_t noblitarg =
71 ARG_DEF(NULL,
"noblit", 0,
"Don't process the decoded frames");
72static const arg_def_t progressarg =
73 ARG_DEF(NULL,
"progress", 0,
"Show progress after each frame decodes");
74static const arg_def_t limitarg =
75 ARG_DEF(NULL,
"limit", 1,
"Stop decoding after n frames");
76static const arg_def_t skiparg =
77 ARG_DEF(NULL,
"skip", 1,
"Skip the first n input frames");
78static const arg_def_t summaryarg =
79 ARG_DEF(NULL,
"summary", 0,
"Show timing summary");
80static const arg_def_t outputfile =
81 ARG_DEF(
"o",
"output", 1,
"Output file name pattern (see below)");
82static const arg_def_t threadsarg =
83 ARG_DEF(
"t",
"threads", 1,
"Max threads to use");
84static const arg_def_t rowmtarg =
85 ARG_DEF(NULL,
"row-mt", 1,
"Enable row based multi-threading, default: 0");
86static const arg_def_t verbosearg =
87 ARG_DEF(
"v",
"verbose", 0,
"Show version string");
88static const arg_def_t scalearg =
89 ARG_DEF(
"S",
"scale", 0,
"Scale output frames uniformly");
90static const arg_def_t continuearg =
91 ARG_DEF(
"k",
"keep-going", 0,
"(debug) Continue decoding after error");
92static const arg_def_t fb_arg =
93 ARG_DEF(NULL,
"frame-buffers", 1,
"Number of frame buffers to use");
94static const arg_def_t md5arg =
95 ARG_DEF(NULL,
"md5", 0,
"Compute the MD5 sum of the decoded frame");
96static const arg_def_t framestatsarg =
97 ARG_DEF(NULL,
"framestats", 1,
"Output per-frame stats (.csv format)");
98static const arg_def_t outbitdeptharg =
99 ARG_DEF(NULL,
"output-bit-depth", 1,
"Output bit-depth for decoded frames");
100static const arg_def_t isannexb =
101 ARG_DEF(NULL,
"annexb", 0,
"Bitstream is in Annex-B format");
102static const arg_def_t oppointarg = ARG_DEF(
103 NULL,
"oppoint", 1,
"Select an operating point of a scalable bitstream");
104static const arg_def_t outallarg = ARG_DEF(
105 NULL,
"all-layers", 0,
"Output all decoded frames of a scalable bitstream");
106static const arg_def_t skipfilmgrain =
107 ARG_DEF(NULL,
"skip-film-grain", 0,
"Skip film grain application");
109static const arg_def_t *all_args[] = {
110 &help, &codecarg, &use_yv12, &use_i420,
111 &flipuvarg, &rawvideo, &noblitarg, &progressarg,
112 &limitarg, &skiparg, &summaryarg, &outputfile,
113 &threadsarg, &rowmtarg, &verbosearg, &scalearg,
114 &fb_arg, &md5arg, &framestatsarg, &continuearg,
115 &outbitdeptharg, &isannexb, &oppointarg, &outallarg,
122 FilterModeEnum mode) {
123 if (src->
fmt != dst->
fmt) {
125 "%s failed to scale output frame because format changed from %s to "
127 exec_name, image_format_to_string(dst->
fmt),
128 image_format_to_string(src->
fmt));
150 fprintf(stderr,
"%s cannot scale output frame of format %s\n", exec_name,
151 image_format_to_string(src->
fmt));
156static void show_help(FILE *fout,
int shorthelp) {
157 fprintf(fout,
"Usage: %s <options> filename\n\n", exec_name);
160 fprintf(fout,
"Use --help to see the full list of options.\n");
164 fprintf(fout,
"Options:\n");
165 arg_show_usage(fout, all_args);
167 "\nOutput File Patterns:\n\n"
168 " The -o argument specifies the name of the file(s) to "
169 "write to. If the\n argument does not include any escape "
170 "characters, the output will be\n written to a single file. "
171 "Otherwise, the filename will be calculated by\n expanding "
172 "the following escape characters:\n");
174 "\n\t%%w - Frame width"
175 "\n\t%%h - Frame height"
176 "\n\t%%<n> - Frame number, zero padded to <n> places (1..9)"
177 "\n\n Pattern arguments are only supported in conjunction "
178 "with the --yv12 and\n --i420 options. If the -o option is "
179 "not specified, the output will be\n directed to stdout.\n");
180 fprintf(fout,
"\nIncluded decoders:\n\n");
182 for (
int i = 0; i < get_aom_decoder_count(); ++i) {
184 fprintf(fout,
" %-6s - %s\n", get_short_name_by_aom_decoder(decoder),
189void usage_exit(
void) {
190 show_help(stderr, 1);
194static int raw_read_frame(
struct AvxInputContext *input_ctx, uint8_t **buffer,
195 size_t *bytes_read,
size_t *buffer_size) {
196 unsigned char raw_hdr[RAW_FRAME_HDR_SZ];
197 size_t frame_size = 0;
199 if (read_from_input(input_ctx, RAW_FRAME_HDR_SZ, raw_hdr) !=
201 if (!input_eof(input_ctx))
202 aom_tools_warn(
"Failed to read RAW frame size\n");
204 const size_t kCorruptFrameThreshold = 256 * 1024 * 1024;
205 const size_t kFrameTooSmallThreshold = 256 * 1024;
206 frame_size = mem_get_le32(raw_hdr);
208 if (frame_size > kCorruptFrameThreshold) {
209 aom_tools_warn(
"Read invalid frame size (%u)\n",
210 (
unsigned int)frame_size);
214 if (frame_size < kFrameTooSmallThreshold) {
216 "Warning: Read invalid frame size (%u) - not a raw file?\n",
217 (
unsigned int)frame_size);
220 if (frame_size > *buffer_size) {
221 uint8_t *new_buf = realloc(*buffer, 2 * frame_size);
224 *buffer_size = 2 * frame_size;
226 aom_tools_warn(
"Failed to allocate compressed data buffer\n");
232 if (!input_eof(input_ctx)) {
233 if (read_from_input(input_ctx, frame_size, *buffer) != frame_size) {
234 aom_tools_warn(
"Failed to read full frame\n");
237 *bytes_read = frame_size;
243static int read_frame(
struct AvxDecInputContext *input, uint8_t **buf,
244 size_t *bytes_in_buffer,
size_t *buffer_size) {
245 switch (input->aom_input_ctx->file_type) {
248 return webm_read_frame(input->webm_ctx, buf, bytes_in_buffer,
252 return raw_read_frame(input->aom_input_ctx, buf, bytes_in_buffer,
255 return ivf_read_frame(input->aom_input_ctx, buf, bytes_in_buffer,
258 return obudec_read_temporal_unit(input->obu_ctx, buf, bytes_in_buffer,
264static int file_is_raw(
struct AvxInputContext *input) {
268 memset(&si, 0,
sizeof(si));
270 if (buffer_input(input, 32, buf,
true) == 32) {
273 if (mem_get_le32(buf) < 256 * 1024 * 1024) {
274 for (i = 0; i < get_aom_decoder_count(); ++i) {
278 input->fourcc = get_fourcc_by_aom_decoder(decoder);
280 input->height = si.
h;
281 input->framerate.numerator = 30;
282 input->framerate.denominator = 1;
289 rewind_detect(input);
293static void show_progress(
int frame_in,
int frame_out, uint64_t dx_time) {
295 "%d decoded frames/%d showed frames in %" PRId64
" us (%.2f fps)\r",
296 frame_in, frame_out, dx_time,
297 (
double)frame_out * 1000000.0 / (
double)dx_time);
300struct ExternalFrameBuffer {
306struct ExternalFrameBufferList {
307 int num_external_frame_buffers;
308 struct ExternalFrameBuffer *ext_fb;
315static int get_av1_frame_buffer(
void *cb_priv,
size_t min_size,
318 struct ExternalFrameBufferList *
const ext_fb_list =
319 (
struct ExternalFrameBufferList *)cb_priv;
320 if (ext_fb_list == NULL)
return -1;
323 for (i = 0; i < ext_fb_list->num_external_frame_buffers; ++i) {
324 if (!ext_fb_list->ext_fb[i].in_use)
break;
327 if (i == ext_fb_list->num_external_frame_buffers)
return -1;
329 if (ext_fb_list->ext_fb[i].size < min_size) {
330 free(ext_fb_list->ext_fb[i].data);
331 ext_fb_list->ext_fb[i].data = (uint8_t *)calloc(min_size,
sizeof(uint8_t));
332 if (!ext_fb_list->ext_fb[i].data)
return -1;
334 ext_fb_list->ext_fb[i].size = min_size;
337 fb->
data = ext_fb_list->ext_fb[i].data;
338 fb->
size = ext_fb_list->ext_fb[i].size;
339 ext_fb_list->ext_fb[i].in_use = 1;
342 fb->
priv = &ext_fb_list->ext_fb[i];
349static int release_av1_frame_buffer(
void *cb_priv,
351 struct ExternalFrameBuffer *
const ext_fb =
352 (
struct ExternalFrameBuffer *)fb->
priv;
358static void generate_filename(
const char *pattern,
char *out,
size_t q_len,
359 unsigned int d_w,
unsigned int d_h,
360 unsigned int frame_in) {
361 const char *p = pattern;
365 char *next_pat = strchr(p,
'%');
373 case 'w': snprintf(q, q_len - 1,
"%d", d_w);
break;
374 case 'h': snprintf(q, q_len - 1,
"%d", d_h);
break;
375 case '1': snprintf(q, q_len - 1,
"%d", frame_in);
break;
376 case '2': snprintf(q, q_len - 1,
"%02d", frame_in);
break;
377 case '3': snprintf(q, q_len - 1,
"%03d", frame_in);
break;
378 case '4': snprintf(q, q_len - 1,
"%04d", frame_in);
break;
379 case '5': snprintf(q, q_len - 1,
"%05d", frame_in);
break;
380 case '6': snprintf(q, q_len - 1,
"%06d", frame_in);
break;
381 case '7': snprintf(q, q_len - 1,
"%07d", frame_in);
break;
382 case '8': snprintf(q, q_len - 1,
"%08d", frame_in);
break;
383 case '9': snprintf(q, q_len - 1,
"%09d", frame_in);
break;
384 default: die(
"Unrecognized pattern %%%c\n", p[1]);
388 if (pat_len >= q_len - 1) die(
"Output filename too long.\n");
397 copy_len = strlen(p);
399 copy_len = next_pat - p;
401 if (copy_len >= q_len - 1) die(
"Output filename too long.\n");
403 memcpy(q, p, copy_len);
412static int is_single_file(
const char *outfile_pattern) {
413 const char *p = outfile_pattern;
417 if (p && p[1] >=
'1' && p[1] <=
'9')
425static void print_md5(
unsigned char digest[16],
const char *filename) {
428 for (i = 0; i < 16; ++i) printf(
"%02x", digest[i]);
429 printf(
" %s\n", filename);
432static FILE *open_outfile(
const char *name) {
433 if (strcmp(
"-", name) == 0) {
434 set_binary_mode(stdout);
437 FILE *file = fopen(name,
"wb");
438 if (!file) fatal(
"Failed to open output file '%s'", name);
443static int main_loop(
int argc,
const char **argv_) {
447 int ret = EXIT_FAILURE;
449 size_t bytes_in_buffer = 0, buffer_size = 0;
451 int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0;
452 int do_md5 = 0, progress = 0;
453 int stop_after = 0, summary = 0, quiet = 1;
456 uint64_t dx_time = 0;
458 char **argv, **argi, **argj;
466 unsigned int fixed_output_bit_depth = 0;
467 unsigned int is_annexb = 0;
468 int frames_corrupted = 0;
471 int operating_point = 0;
472 int output_all_layers = 0;
473 int skip_film_grain = 0;
474 int enable_row_mt = 0;
477 int frame_avail, got_data, flush_decoder = 0;
478 int num_external_frame_buffers = 0;
479 struct ExternalFrameBufferList ext_fb_list = { 0, NULL };
481 const char *outfile_pattern = NULL;
482 char outfile_name[PATH_MAX] = { 0 };
483 FILE *outfile = NULL;
485 FILE *framestats_file = NULL;
488 unsigned char md5_digest[16];
490 struct AvxDecInputContext input = { NULL, NULL, NULL };
491 struct AvxInputContext aom_input_ctx;
492 memset(&aom_input_ctx, 0,
sizeof(aom_input_ctx));
494 struct WebmInputContext webm_ctx;
495 memset(&webm_ctx, 0,
sizeof(webm_ctx));
496 input.webm_ctx = &webm_ctx;
498 struct ObuDecInputContext obu_ctx = { NULL, NULL, 0, 0, 0 };
501 obu_ctx.avx_ctx = &aom_input_ctx;
502 input.obu_ctx = &obu_ctx;
503 input.aom_input_ctx = &aom_input_ctx;
506 exec_name = argv_[0];
507 argv = argv_dup(argc - 1, argv_ + 1);
509 fprintf(stderr,
"Error allocating argument list\n");
514 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
515 memset(&arg, 0,
sizeof(arg));
518 if (arg_match(&arg, &help, argi)) {
519 show_help(stdout, 0);
521 }
else if (arg_match(&arg, &codecarg, argi)) {
522 interface = get_aom_decoder_by_short_name(arg.val);
524 die(
"Error: Unrecognized argument (%s) to --codec\n", arg.val);
525 }
else if (arg_match(&arg, &looparg, argi)) {
527 }
else if (arg_match(&arg, &outputfile, argi)) {
528 outfile_pattern = arg.val;
529 }
else if (arg_match(&arg, &use_yv12, argi)) {
535 }
else if (arg_match(&arg, &use_i420, argi)) {
541 }
else if (arg_match(&arg, &rawvideo, argi)) {
546 }
else if (arg_match(&arg, &flipuvarg, argi)) {
548 }
else if (arg_match(&arg, &noblitarg, argi)) {
550 }
else if (arg_match(&arg, &progressarg, argi)) {
552 }
else if (arg_match(&arg, &limitarg, argi)) {
553 stop_after = arg_parse_uint(&arg);
554 }
else if (arg_match(&arg, &skiparg, argi)) {
555 arg_skip = arg_parse_uint(&arg);
556 }
else if (arg_match(&arg, &md5arg, argi)) {
558 }
else if (arg_match(&arg, &framestatsarg, argi)) {
559 framestats_file = fopen(arg.val,
"w");
560 if (!framestats_file) {
561 die(
"Error: Could not open --framestats file (%s) for writing.\n",
564 }
else if (arg_match(&arg, &summaryarg, argi)) {
566 }
else if (arg_match(&arg, &threadsarg, argi)) {
567 cfg.
threads = arg_parse_uint(&arg);
568#if !CONFIG_MULTITHREAD
570 die(
"Error: --threads=%d is not supported when CONFIG_MULTITHREAD = "
575 }
else if (arg_match(&arg, &rowmtarg, argi)) {
576 enable_row_mt = arg_parse_uint(&arg);
577 }
else if (arg_match(&arg, &verbosearg, argi)) {
579 }
else if (arg_match(&arg, &scalearg, argi)) {
581 }
else if (arg_match(&arg, &fb_arg, argi)) {
582 num_external_frame_buffers = arg_parse_uint(&arg);
583 }
else if (arg_match(&arg, &continuearg, argi)) {
585 }
else if (arg_match(&arg, &outbitdeptharg, argi)) {
586 fixed_output_bit_depth = arg_parse_uint(&arg);
587 }
else if (arg_match(&arg, &isannexb, argi)) {
589 input.obu_ctx->is_annexb = 1;
590 }
else if (arg_match(&arg, &oppointarg, argi)) {
591 operating_point = arg_parse_int(&arg);
592 }
else if (arg_match(&arg, &outallarg, argi)) {
593 output_all_layers = 1;
594 }
else if (arg_match(&arg, &skipfilmgrain, argi)) {
602 for (argi = argv; *argi; argi++)
603 if (argi[0][0] ==
'-' && strlen(argi[0]) > 1)
604 die(
"Error: Unrecognized option %s\n", *argi);
611 fprintf(stderr,
"No input file specified!\n");
615 const bool using_file = strcmp(fn,
"-") != 0;
617 infile = using_file ? fopen(fn,
"rb") : set_binary_mode(stdin);
620 fatal(
"Failed to open input file '%s'", using_file ? fn :
"stdin");
624 if (!outfile_pattern && isatty(STDOUT_FILENO) && !do_md5 && !noblit) {
626 "Not dumping raw video to your terminal. Use '-o -' to "
632 input.aom_input_ctx->filename = fn;
633 input.aom_input_ctx->file = infile;
641 }
else if (using_file && file_is_webm(input.webm_ctx, input.aom_input_ctx)) {
642 input.aom_input_ctx->file_type = FILE_TYPE_WEBM;
644 }
else if (file_is_ivf(input.aom_input_ctx)) {
645 input.aom_input_ctx->file_type = FILE_TYPE_IVF;
647 }
else if (file_is_obu(&obu_ctx)) {
648 input.aom_input_ctx->file_type = FILE_TYPE_OBU;
649 }
else if (file_is_raw(input.aom_input_ctx)) {
650 input.aom_input_ctx->file_type = FILE_TYPE_RAW;
652 fprintf(stderr,
"Unrecognized input file type.\n");
655 fprintf(stderr,
"aomdec does not support piped WebM input.\n");
658 fprintf(stderr,
"aomdec was built without WebM container support.\n");
664 outfile_pattern = outfile_pattern ? outfile_pattern :
"-";
665 single_file = is_single_file(outfile_pattern);
667 if (!noblit && single_file) {
668 generate_filename(outfile_pattern, outfile_name, PATH_MAX,
669 aom_input_ctx.width, aom_input_ctx.height, 0);
673 outfile = open_outfile(outfile_name);
676 if (use_y4m && !noblit) {
679 "YUV4MPEG2 not supported with output patterns,"
680 " try --i420 or --yv12 or --rawvideo.\n");
685 if (aom_input_ctx.file_type == FILE_TYPE_WEBM) {
686 if (webm_guess_framerate(input.webm_ctx, input.aom_input_ctx)) {
688 "Failed to guess framerate -- error parsing "
697 get_aom_decoder_by_fourcc(aom_input_ctx.fourcc);
699 if (is_ivf && !fourcc_interface)
700 fatal(
"Unsupported fourcc: %x\n", aom_input_ctx.fourcc);
702 if (interface && fourcc_interface && interface != fourcc_interface)
703 aom_tools_warn(
"Header indicates codec: %s\n",
706 interface = fourcc_interface;
708 if (!interface)
interface = get_aom_decoder_by_index(0);
712 fprintf(stderr,
"Failed to initialize decoder: %s\n",
717 if (!quiet) fprintf(stderr,
"%s\n", decoder.
name);
720 fprintf(stderr,
"Failed to set is_annexb: %s\n",
aom_codec_error(&decoder));
726 fprintf(stderr,
"Failed to set operating_point: %s\n",
732 output_all_layers)) {
733 fprintf(stderr,
"Failed to set output_all_layers: %s\n",
740 fprintf(stderr,
"Failed to set skip_film_grain: %s\n",
746 fprintf(stderr,
"Failed to set row multithreading mode: %s\n",
751 if (arg_skip) fprintf(stderr,
"Skipping first %d frames.\n", arg_skip);
753 if (read_frame(&input, &buf, &bytes_in_buffer, &buffer_size))
break;
757 if (num_external_frame_buffers > 0) {
758 ext_fb_list.num_external_frame_buffers = num_external_frame_buffers;
759 ext_fb_list.ext_fb = (
struct ExternalFrameBuffer *)calloc(
760 num_external_frame_buffers,
sizeof(*ext_fb_list.ext_fb));
761 if (!ext_fb_list.ext_fb) {
762 fprintf(stderr,
"Failed to allocate ExternalFrameBuffer\n");
766 release_av1_frame_buffer,
768 fprintf(stderr,
"Failed to configure external frame buffers: %s\n",
777 if (framestats_file) fprintf(framestats_file,
"bytes,qp\r\n");
780 while (frame_avail || got_data) {
783 struct aom_usec_timer timer;
787 if (!stop_after || frame_in < stop_after) {
788 if (!read_frame(&input, &buf, &bytes_in_buffer, &buffer_size)) {
792 aom_usec_timer_start(&timer);
796 aom_tools_warn(
"Failed to decode frame %d: %s", frame_in,
799 if (detail) aom_tools_warn(
"Additional information: %s", detail);
800 if (!keep_going)
goto fail;
803 if (framestats_file) {
807 aom_tools_warn(
"Failed AOMD_GET_LAST_QUANTIZER: %s",
809 if (!keep_going)
goto fail;
811 fprintf(framestats_file,
"%d,%d\r\n", (
int)bytes_in_buffer, qp);
814 aom_usec_timer_mark(&timer);
815 dx_time += aom_usec_timer_elapsed(&timer);
823 aom_usec_timer_start(&timer);
828 aom_tools_warn(
"Failed to flush decoder: %s",
833 aom_usec_timer_mark(&timer);
834 dx_time += aom_usec_timer_elapsed(&timer);
845 aom_tools_warn(
"Failed AOM_GET_FRAME_CORRUPTED: %s",
847 if (!keep_going)
goto fail;
849 frames_corrupted += corrupted;
851 if (progress) show_progress(frame_in, frame_out, dx_time);
856 const int *planes = flipuv ? PLANES_YVU : PLANES_YUV;
859 if (frame_out == 1) {
865 int render_width = aom_input_ctx.width;
866 int render_height = aom_input_ctx.height;
867 if (!render_width || !render_height) {
872 render_width = img->
d_w;
873 render_height = img->
d_h;
875 render_width = render_size[0];
876 render_height = render_size[1];
882 fprintf(stderr,
"Failed to allocate scaled image (%d x %d)\n",
883 render_width, render_height);
888 scaled_img->
csp = img->
csp;
891 if (img->
d_w != scaled_img->
d_w || img->
d_h != scaled_img->
d_h) {
893 if (libyuv_scale(img, scaled_img, kFilterBox) != 0)
goto fail;
898 "Failed to scale output frame: %s.\n"
899 "libyuv is required for scaling but is currently disabled.\n"
900 "Be sure to specify -DCONFIG_LIBYUV=1 when running cmake.\n",
907 unsigned int output_bit_depth;
908 if (!fixed_output_bit_depth && single_file) {
911 output_bit_depth = fixed_output_bit_depth;
914 if (output_bit_depth != 0) {
915 if (!aom_shift_img(output_bit_depth, &img, &img_shifted)) {
916 fprintf(stderr,
"Error allocating image\n");
921 aom_input_ctx.width = img->
d_w;
922 aom_input_ctx.height = img->
d_h;
924 int num_planes = (opt_raw && img->
monochrome) ? 1 : 3;
927 char y4m_buf[Y4M_BUFFER_SIZE] = { 0 };
929 if (frame_out == 1) {
931 len = y4m_write_file_header(
932 y4m_buf,
sizeof(y4m_buf), aom_input_ctx.width,
933 aom_input_ctx.height, &aom_input_ctx.framerate,
938 "Warning: Y4M lacks a colorspace for colocated "
939 "chroma. Using a placeholder.\n");
942 MD5Update(&md5_ctx, (md5byte *)y4m_buf, (
unsigned int)len);
944 fputs(y4m_buf, outfile);
949 len = y4m_write_frame_header(y4m_buf,
sizeof(y4m_buf));
951 MD5Update(&md5_ctx, (md5byte *)y4m_buf, (
unsigned int)len);
952 y4m_update_image_md5(img, planes, &md5_ctx);
954 fputs(y4m_buf, outfile);
955 y4m_write_image_file(img, planes, outfile);
958 if (frame_out == 1) {
965 "Cannot produce i420 output for bit-stream.\n");
974 "Cannot produce yv12 output for bit-stream.\n");
980 raw_update_image_md5(img, planes, num_planes, &md5_ctx);
982 raw_write_image_file(img, planes, num_planes, outfile);
986 generate_filename(outfile_pattern, outfile_name, PATH_MAX, img->
d_w,
991 y4m_update_image_md5(img, planes, &md5_ctx);
993 raw_update_image_md5(img, planes, num_planes, &md5_ctx);
995 MD5Final(md5_digest, &md5_ctx);
996 print_md5(md5_digest, outfile_name);
998 outfile = open_outfile(outfile_name);
1000 y4m_write_image_file(img, planes, outfile);
1002 raw_write_image_file(img, planes, num_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.aom_input_ctx->file_type == FILE_TYPE_WEBM)
1042 webm_free(input.webm_ctx);
1044 if (input.aom_input_ctx->file_type == FILE_TYPE_OBU)
1045 obudec_free(input.obu_ctx);
1047 if (input.aom_input_ctx->file_type != FILE_TYPE_WEBM) free(buf);
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);
1065int 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);
1073 fprintf(stderr,
"Error allocating argument list\n");
1074 return EXIT_FAILURE;
1076 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
1077 memset(&arg, 0,
sizeof(arg));
1080 if (arg_match(&arg, &looparg, argi)) {
1081 loops = arg_parse_uint(&arg);
1086 for (i = 0; !error && i < loops; i++) error = main_loop(argc, argv_);
Describes the decoder algorithm interface to applications.
#define AOM_PLANE_U
Definition aom_image.h:211
@ AOM_CSP_COLOCATED
Definition aom_image.h:146
#define AOM_PLANE_Y
Definition aom_image.h:210
#define AOM_PLANE_V
Definition aom_image.h:212
aom_image_t * aom_img_alloc(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align)
Open a descriptor, allocating storage for the underlying image.
@ AOM_IMG_FMT_I42016
Definition aom_image.h:56
@ AOM_IMG_FMT_I420
Definition aom_image.h:45
@ AOM_IMG_FMT_YV12
Definition aom_image.h:43
void aom_img_free(aom_image_t *img)
Close an image descriptor.
Provides definitions for using AOM or AV1 within the aom Decoder interface.
@ AOMD_GET_FRAME_CORRUPTED
Codec control function to check if the indicated frame is corrupted, int* parameter.
Definition aomdx.h:204
@ AV1D_SET_SKIP_FILM_GRAIN
Codec control function to set the skip film grain flag, int parameter.
Definition aomdx.h:390
@ AV1D_SET_IS_ANNEXB
Codec control function to indicate whether bitstream is in Annex-B format, unsigned int parameter.
Definition aomdx.h:352
@ AV1D_SET_ROW_MT
Codec control function to enable the row based multi-threading of decoding, unsigned int parameter.
Definition aomdx.h:347
@ AV1D_GET_DISPLAY_SIZE
Codec control function to get the current frame's intended display dimensions (as specified in the wr...
Definition aomdx.h:225
@ AV1D_SET_OUTPUT_ALL_LAYERS
Codec control function to indicate whether to output one frame per temporal unit (the default),...
Definition aomdx.h:374
@ AV1D_SET_OPERATING_POINT
Codec control function to indicate which operating point to use, int parameter.
Definition aomdx.h:362
@ AOMD_GET_LAST_QUANTIZER
Codec control function to get last decoded frame quantizer, int* parameter.
Definition aomdx.h:297
aom_codec_err_t aom_codec_set_frame_buffer_functions(aom_codec_ctx_t *ctx, aom_get_frame_buffer_cb_fn_t cb_get, aom_release_frame_buffer_cb_fn_t cb_release, void *cb_priv)
Pass in external frame buffers for the decoder to use.
const char * aom_codec_iface_name(aom_codec_iface_t *iface)
Return the name for a given interface.
const struct aom_codec_iface aom_codec_iface_t
Codec interface structure.
Definition aom_codec.h:271
const char * aom_codec_error(const aom_codec_ctx_t *ctx)
Retrieve error synopsis for codec context.
aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx)
Destroy a codec instance.
#define AOM_CODEC_CONTROL_TYPECHECKED(ctx, id, data)
aom_codec_control wrapper macro (adds type-checking, less flexible)
Definition aom_codec.h:542
const char * aom_codec_error_detail(const aom_codec_ctx_t *ctx)
Retrieve detailed error information for codec context.
const void * aom_codec_iter_t
Iterator.
Definition aom_codec.h:305
aom_codec_err_t aom_codec_peek_stream_info(aom_codec_iface_t *iface, const uint8_t *data, size_t data_sz, aom_codec_stream_info_t *si)
Parse stream info from a buffer.
aom_image_t * aom_codec_get_frame(aom_codec_ctx_t *ctx, aom_codec_iter_t *iter)
Decoded frames iterator.
aom_codec_err_t aom_codec_decode(aom_codec_ctx_t *ctx, const uint8_t *data, size_t data_sz, void *user_priv)
Decode data.
#define aom_codec_dec_init(ctx, iface, cfg, flags)
Convenience macro for aom_codec_dec_init_ver()
Definition aom_decoder.h:129
Codec context structure.
Definition aom_codec.h:315
const char * name
Definition aom_codec.h:316
Initialization Configurations.
Definition aom_decoder.h:91
unsigned int threads
Definition aom_decoder.h:92
External frame buffer.
Definition aom_frame_buffer.h:40
uint8_t * data
Definition aom_frame_buffer.h:41
size_t size
Definition aom_frame_buffer.h:42
void * priv
Definition aom_frame_buffer.h:43
Initialization-time Feature Enabling.
Definition aom_decoder.h:71
unsigned int h
Definition aom_decoder.h:73
unsigned int w
Definition aom_decoder.h:72
Image Descriptor.
Definition aom_image.h:182
unsigned int bit_depth
Definition aom_image.h:194
aom_chroma_sample_position_t csp
Definition aom_image.h:188
aom_img_fmt_t fmt
Definition aom_image.h:183
int stride[3]
Definition aom_image.h:216
unsigned int d_w
Definition aom_image.h:197
int monochrome
Definition aom_image.h:187
unsigned int d_h
Definition aom_image.h:198
aom_color_range_t range
Definition aom_image.h:189
unsigned char * planes[3]
Definition aom_image.h:215