23#include <emscripten.h>
25#define EMSCRIPTEN_KEEPALIVE
28#include "config/aom_config.h"
32#include "av1/common/av1_common_int.h"
35#include "av1/decoder/accounting.h"
38#include "av1/decoder/inspection.h"
39#include "common/args.h"
40#include "common/tools_common.h"
41#include "common/video_common.h"
42#include "common/video_reader.h"
45const int MAX_BUFFER = 1024 * 1024 * 256;
49 BLOCK_SIZE_LAYER = 1 << 1,
50 TRANSFORM_SIZE_LAYER = 1 << 2,
51 TRANSFORM_TYPE_LAYER = 1 << 3,
54 FILTER_LAYER = 1 << 6,
56 REFERENCE_FRAME_LAYER = 1 << 8,
57 MOTION_VECTORS_LAYER = 1 << 9,
58 UV_MODE_LAYER = 1 << 10,
60 DUAL_FILTER_LAYER = 1 << 12,
61 Q_INDEX_LAYER = 1 << 13,
62 SEGMENT_ID_LAYER = 1 << 14,
63 MOTION_MODE_LAYER = 1 << 15,
64 COMPOUND_TYPE_LAYER = 1 << 16,
65 INTRABC_LAYER = 1 << 17,
66 PALETTE_LAYER = 1 << 18,
67 UV_PALETTE_LAYER = 1 << 19,
68 ALL_LAYERS = (1 << 20) - 1
71static LayerType layers = 0;
73static int stop_after = 0;
74static int compress = 0;
76static const arg_def_t limit_arg =
77 ARG_DEF(NULL,
"limit", 1,
"Stop decoding after n frames");
78static const arg_def_t dump_all_arg = ARG_DEF(
"A",
"all", 0,
"Dump All");
79static const arg_def_t compress_arg =
80 ARG_DEF(
"x",
"compress", 0,
"Compress JSON using RLE");
81static const arg_def_t dump_accounting_arg =
82 ARG_DEF(
"a",
"accounting", 0,
"Dump Accounting");
83static const arg_def_t dump_block_size_arg =
84 ARG_DEF(
"bs",
"blockSize", 0,
"Dump Block Size");
85static const arg_def_t dump_motion_vectors_arg =
86 ARG_DEF(
"mv",
"motionVectors", 0,
"Dump Motion Vectors");
87static const arg_def_t dump_transform_size_arg =
88 ARG_DEF(
"ts",
"transformSize", 0,
"Dump Transform Size");
89static const arg_def_t dump_transform_type_arg =
90 ARG_DEF(
"tt",
"transformType", 0,
"Dump Transform Type");
91static const arg_def_t dump_mode_arg = ARG_DEF(
"m",
"mode", 0,
"Dump Mode");
92static const arg_def_t dump_motion_mode_arg =
93 ARG_DEF(
"mm",
"motion_mode", 0,
"Dump Motion Modes");
94static const arg_def_t dump_compound_type_arg =
95 ARG_DEF(
"ct",
"compound_type", 0,
"Dump Compound Types");
96static const arg_def_t dump_uv_mode_arg =
97 ARG_DEF(
"uvm",
"uv_mode", 0,
"Dump UV Intra Prediction Modes");
98static const arg_def_t dump_skip_arg = ARG_DEF(
"s",
"skip", 0,
"Dump Skip");
99static const arg_def_t dump_filter_arg =
100 ARG_DEF(
"f",
"filter", 0,
"Dump Filter");
101static const arg_def_t dump_cdef_arg = ARG_DEF(
"c",
"cdef", 0,
"Dump CDEF");
102static const arg_def_t dump_cfl_arg =
103 ARG_DEF(
"cfl",
"chroma_from_luma", 0,
"Dump Chroma from Luma Alphas");
104static const arg_def_t dump_dual_filter_type_arg =
105 ARG_DEF(
"df",
"dualFilterType", 0,
"Dump Dual Filter Type");
106static const arg_def_t dump_reference_frame_arg =
107 ARG_DEF(
"r",
"referenceFrame", 0,
"Dump Reference Frame");
108static const arg_def_t dump_delta_q_arg =
109 ARG_DEF(
"dq",
"delta_q", 0,
"Dump QIndex");
110static const arg_def_t dump_seg_id_arg =
111 ARG_DEF(
"si",
"seg_id", 0,
"Dump Segment ID");
112static const arg_def_t dump_intrabc_arg =
113 ARG_DEF(
"ibc",
"intrabc", 0,
"Dump If IntraBC Is Used");
114static const arg_def_t dump_palette_arg =
115 ARG_DEF(
"plt",
"palette", 0,
"Dump Palette Size");
116static const arg_def_t dump_uv_palette_arg =
117 ARG_DEF(
"uvp",
"uv_palette", 0,
"Dump UV Palette Size");
118static const arg_def_t usage_arg = ARG_DEF(
"h",
"help", 0,
"Help");
119static const arg_def_t skip_non_transform_arg = ARG_DEF(
120 "snt",
"skip_non_transform", 1,
"Skip is counted as a non transform.");
121static const arg_def_t combined_arg =
122 ARG_DEF(
"comb",
"combined", 1,
"combinining parameters into one output.");
124int combined_parm_list[15];
125int combined_parm_count = 0;
127static const arg_def_t *main_args[] = { &limit_arg,
131 &dump_accounting_arg,
133 &dump_block_size_arg,
134 &dump_transform_size_arg,
135 &dump_transform_type_arg,
138 &dump_motion_mode_arg,
139 &dump_compound_type_arg,
143 &dump_dual_filter_type_arg,
145 &dump_reference_frame_arg,
146 &dump_motion_vectors_arg,
151 &dump_uv_palette_arg,
153 &skip_non_transform_arg,
160typedef struct map_entry {
165const map_entry refs_map[] = {
166 ENUM(INTRA_FRAME), ENUM(LAST_FRAME), ENUM(LAST2_FRAME),
167 ENUM(LAST3_FRAME), ENUM(GOLDEN_FRAME), ENUM(BWDREF_FRAME),
168 ENUM(ALTREF2_FRAME), ENUM(ALTREF_FRAME), LAST_ENUM
171const map_entry block_size_map[] = {
172 ENUM(BLOCK_4X4), ENUM(BLOCK_4X8), ENUM(BLOCK_8X4),
173 ENUM(BLOCK_8X8), ENUM(BLOCK_8X16), ENUM(BLOCK_16X8),
174 ENUM(BLOCK_16X16), ENUM(BLOCK_16X32), ENUM(BLOCK_32X16),
175 ENUM(BLOCK_32X32), ENUM(BLOCK_32X64), ENUM(BLOCK_64X32),
176 ENUM(BLOCK_64X64), ENUM(BLOCK_64X128), ENUM(BLOCK_128X64),
177 ENUM(BLOCK_128X128), ENUM(BLOCK_4X16), ENUM(BLOCK_16X4),
178 ENUM(BLOCK_8X32), ENUM(BLOCK_32X8), ENUM(BLOCK_16X64),
179 ENUM(BLOCK_64X16), LAST_ENUM
184const map_entry tx_size_map[] = {
185 ENUM(TX_4X4), ENUM(TX_8X8), ENUM(TX_16X16), ENUM(TX_32X32),
186 ENUM(TX_64X64), ENUM(TX_4X8), ENUM(TX_8X4), ENUM(TX_8X16),
187 ENUM(TX_16X8), ENUM(TX_16X32), ENUM(TX_32X16), ENUM(TX_32X64),
188 ENUM(TX_64X32), ENUM(TX_4X16), ENUM(TX_16X4), ENUM(TX_8X32),
189 ENUM(TX_32X8), ENUM(TX_16X64), ENUM(TX_64X16), LAST_ENUM
192const map_entry tx_type_map[] = { ENUM(DCT_DCT),
198 ENUM(FLIPADST_FLIPADST),
209const map_entry dual_filter_map[] = { ENUM(REG_REG), ENUM(REG_SMOOTH),
210 ENUM(REG_SHARP), ENUM(SMOOTH_REG),
211 ENUM(SMOOTH_SMOOTH), ENUM(SMOOTH_SHARP),
212 ENUM(SHARP_REG), ENUM(SHARP_SMOOTH),
213 ENUM(SHARP_SHARP), LAST_ENUM };
215const map_entry prediction_mode_map[] = {
216 ENUM(DC_PRED), ENUM(V_PRED), ENUM(H_PRED),
217 ENUM(D45_PRED), ENUM(D135_PRED), ENUM(D113_PRED),
218 ENUM(D157_PRED), ENUM(D203_PRED), ENUM(D67_PRED),
219 ENUM(SMOOTH_PRED), ENUM(SMOOTH_V_PRED), ENUM(SMOOTH_H_PRED),
220 ENUM(PAETH_PRED), ENUM(NEARESTMV), ENUM(NEARMV),
221 ENUM(GLOBALMV), ENUM(NEWMV), ENUM(NEAREST_NEARESTMV),
222 ENUM(NEAR_NEARMV), ENUM(NEAREST_NEWMV), ENUM(NEW_NEARESTMV),
223 ENUM(NEAR_NEWMV), ENUM(NEW_NEARMV), ENUM(GLOBAL_GLOBALMV),
224 ENUM(NEW_NEWMV), ENUM(INTRA_INVALID), LAST_ENUM
227const map_entry motion_mode_map[] = { ENUM(SIMPLE_TRANSLATION),
232const map_entry compound_type_map[] = { ENUM(COMPOUND_AVERAGE),
233 ENUM(COMPOUND_WEDGE),
234 ENUM(COMPOUND_DIFFWTD), LAST_ENUM };
236const map_entry uv_prediction_mode_map[] = {
237 ENUM(UV_DC_PRED), ENUM(UV_V_PRED),
238 ENUM(UV_H_PRED), ENUM(UV_D45_PRED),
239 ENUM(UV_D135_PRED), ENUM(UV_D113_PRED),
240 ENUM(UV_D157_PRED), ENUM(UV_D203_PRED),
241 ENUM(UV_D67_PRED), ENUM(UV_SMOOTH_PRED),
242 ENUM(UV_SMOOTH_V_PRED), ENUM(UV_SMOOTH_H_PRED),
243 ENUM(UV_PAETH_PRED), ENUM(UV_CFL_PRED),
244 ENUM(UV_MODE_INVALID), LAST_ENUM
249const map_entry skip_map[] = { ENUM(SKIP), ENUM(NO_SKIP), LAST_ENUM };
251const map_entry intrabc_map[] = { {
"INTRABC", 1 },
255const map_entry palette_map[] = {
256 {
"ZERO_COLORS", 0 }, {
"TWO_COLORS", 2 }, {
"THREE_COLORS", 3 },
257 {
"FOUR_COLORS", 4 }, {
"FIVE_COLORS", 5 }, {
"SIX_COLORS", 6 },
258 {
"SEVEN_COLORS", 7 }, {
"EIGHT_COLORS", 8 }, LAST_ENUM
261const map_entry config_map[] = { ENUM(MI_SIZE), LAST_ENUM };
263static const char *exec_name;
269struct parm_offset parm_offsets[] = {
270 {
"blockSize", offsetof(insp_mi_data, bsize) },
271 {
"transformSize", offsetof(insp_mi_data, tx_size) },
272 {
"transformType", offsetof(insp_mi_data, tx_type) },
273 {
"dualFilterType", offsetof(insp_mi_data, dual_filter_type) },
274 {
"mode", offsetof(insp_mi_data, mode) },
275 {
"uv_mode", offsetof(insp_mi_data, uv_mode) },
276 {
"motion_mode", offsetof(insp_mi_data, motion_mode) },
277 {
"compound_type", offsetof(insp_mi_data, compound_type) },
278 {
"referenceFrame", offsetof(insp_mi_data, ref_frame) },
279 {
"skip", offsetof(insp_mi_data, skip) },
281int parm_count =
sizeof(parm_offsets) /
sizeof(parm_offsets[0]);
283int convert_to_indices(
char *str,
int *indices,
int maxCount,
int *count) {
286 char *comma = strchr(str,
',');
287 int length = (comma ? (int)(comma - str) : (int)strlen(str));
289 for (i = 0; i < parm_count; ++i) {
290 if (!strncmp(str, parm_offsets[i].parm, length)) {
294 if (i == parm_count)
return 0;
295 indices[(*count)++] = i;
296 if (*count > maxCount)
return 0;
298 }
while (strlen(str) > 0);
302insp_frame_data frame_data;
304int decoded_frame_count = 0;
306AvxVideoReader *reader = NULL;
307const AvxVideoInfo *info = NULL;
310void on_frame_decoded_dump(
char *json) {
312 EM_ASM_({ Module.on_frame_decoded_json($0); }, json);
320int put_str(
char *buffer,
const char *str) {
322 for (i = 0; str[i] !=
'\0'; i++) {
328int put_str_with_escape(
char *buffer,
const char *str) {
331 for (i = 0; str[i] !=
'\0'; i++) {
334 }
else if (str[i] ==
'"' || str[i] ==
'\\') {
337 buffer[j++] = str[i];
342int put_num(
char *buffer,
char prefix,
int num,
char suffix) {
358 buf[i++] =
'0' + (num % 10);
379int put_map(
char *buffer,
const map_entry *map) {
381 const map_entry *entry = map;
382 while (entry->name != NULL) {
384 buf += put_str(buf, entry->name);
386 buf += put_num(buf,
':', entry->value, 0);
388 if (entry->name != NULL) {
392 return (
int)(buf - buffer);
395int put_reference_frame(
char *buffer) {
396 const int mi_rows = frame_data.mi_rows;
397 const int mi_cols = frame_data.mi_cols;
400 buf += put_str(buf,
" \"referenceFrameMap\": {");
401 buf += put_map(buf, refs_map);
402 buf += put_str(buf,
"},\n");
403 buf += put_str(buf,
" \"referenceFrame\": [");
404 for (r = 0; r < mi_rows; ++r) {
406 for (c = 0; c < mi_cols; ++c) {
407 insp_mi_data *mi = &frame_data.mi_grid[r * mi_cols + c];
408 buf += put_num(buf,
'[', mi->ref_frame[0], 0);
409 buf += put_num(buf,
',', mi->ref_frame[1],
']');
411 for (t = c + 1; t < mi_cols; ++t) {
412 insp_mi_data *next_mi = &frame_data.mi_grid[r * mi_cols + t];
413 if (mi->ref_frame[0] != next_mi->ref_frame[0] ||
414 mi->ref_frame[1] != next_mi->ref_frame[1]) {
420 buf += put_num(buf,
'[', t - c - 1,
']');
424 if (c < mi_cols - 1) *(buf++) =
',';
427 if (r < mi_rows - 1) *(buf++) =
',';
429 buf += put_str(buf,
"],\n");
430 return (
int)(buf - buffer);
433int put_motion_vectors(
char *buffer) {
434 const int mi_rows = frame_data.mi_rows;
435 const int mi_cols = frame_data.mi_cols;
438 buf += put_str(buf,
" \"motionVectors\": [");
439 for (r = 0; r < mi_rows; ++r) {
441 for (c = 0; c < mi_cols; ++c) {
442 insp_mi_data *mi = &frame_data.mi_grid[r * mi_cols + c];
443 buf += put_num(buf,
'[', mi->mv[0].col, 0);
444 buf += put_num(buf,
',', mi->mv[0].row, 0);
445 buf += put_num(buf,
',', mi->mv[1].col, 0);
446 buf += put_num(buf,
',', mi->mv[1].row,
']');
448 for (t = c + 1; t < mi_cols; ++t) {
449 insp_mi_data *next_mi = &frame_data.mi_grid[r * mi_cols + t];
450 if (mi->mv[0].col != next_mi->mv[0].col ||
451 mi->mv[0].row != next_mi->mv[0].row ||
452 mi->mv[1].col != next_mi->mv[1].col ||
453 mi->mv[1].row != next_mi->mv[1].row) {
459 buf += put_num(buf,
'[', t - c - 1,
']');
463 if (c < mi_cols - 1) *(buf++) =
',';
466 if (r < mi_rows - 1) *(buf++) =
',';
468 buf += put_str(buf,
"],\n");
469 return (
int)(buf - buffer);
472int put_combined(
char *buffer) {
473 const int mi_rows = frame_data.mi_rows;
474 const int mi_cols = frame_data.mi_cols;
477 buf += put_str(buf,
" \"");
478 for (p = 0; p < combined_parm_count; ++p) {
479 if (p) buf += put_str(buf,
"&");
480 buf += put_str(buf, parm_offsets[combined_parm_list[p]].parm);
482 buf += put_str(buf,
"\": [");
483 for (r = 0; r < mi_rows; ++r) {
485 for (c = 0; c < mi_cols; ++c) {
486 insp_mi_data *mi = &frame_data.mi_grid[r * mi_cols + c];
488 for (p = 0; p < combined_parm_count; ++p) {
489 if (p) *(buf++) =
',';
490 int16_t *v = (int16_t *)(((int8_t *)mi) +
491 parm_offsets[combined_parm_list[p]].offset);
492 buf += put_num(buf, 0, v[0], 0);
495 if (c < mi_cols - 1) *(buf++) =
',';
498 if (r < mi_rows - 1) *(buf++) =
',';
500 buf += put_str(buf,
"],\n");
501 return (
int)(buf - buffer);
504int put_block_info(
char *buffer,
const map_entry *map,
const char *name,
505 size_t offset,
int len) {
506 const int mi_rows = frame_data.mi_rows;
507 const int mi_cols = frame_data.mi_cols;
510 if (compress && len == 1) {
511 die(
"Can't encode scalars as arrays when RLE compression is enabled.");
515 buf += snprintf(buf, MAX_BUFFER,
" \"%sMap\": {", name);
516 buf += put_map(buf, map);
517 buf += put_str(buf,
"},\n");
519 buf += snprintf(buf, MAX_BUFFER,
" \"%s\": [", name);
520 for (r = 0; r < mi_rows; ++r) {
522 for (c = 0; c < mi_cols; ++c) {
523 insp_mi_data *mi = &frame_data.mi_grid[r * mi_cols + c];
524 int16_t *v = (int16_t *)(((int8_t *)mi) + offset);
526 buf += put_num(buf, 0, v[0], 0);
528 buf += put_str(buf,
"[");
529 for (i = 0; i < len; i++) {
530 buf += put_num(buf, 0, v[i], 0);
532 buf += put_str(buf,
",");
535 buf += put_str(buf,
"]");
538 for (t = c + 1; t < mi_cols; ++t) {
539 insp_mi_data *next_mi = &frame_data.mi_grid[r * mi_cols + t];
540 int16_t *nv = (int16_t *)(((int8_t *)next_mi) + offset);
543 same = v[0] == nv[0];
545 for (i = 0; i < len; i++) {
546 same = v[i] == nv[i];
558 buf += put_num(buf,
'[', t - c - 1,
']');
562 if (c < mi_cols - 1) *(buf++) =
',';
565 if (r < mi_rows - 1) *(buf++) =
',';
567 buf += put_str(buf,
"],\n");
568 return (
int)(buf - buffer);
572int put_accounting(
char *buffer) {
575 const Accounting *accounting = frame_data.accounting;
576 if (accounting == NULL) {
580 const int num_syms = accounting->syms.num_syms;
581 const int num_strs = accounting->syms.dictionary.num_strs;
582 buf += put_str(buf,
" \"symbolsMap\": [");
583 for (i = 0; i < num_strs; i++) {
584 buf += snprintf(buf, MAX_BUFFER,
"\"%s\"",
585 accounting->syms.dictionary.strs[i]);
586 if (i < num_strs - 1) *(buf++) =
',';
588 buf += put_str(buf,
"],\n");
589 buf += put_str(buf,
" \"symbols\": [\n ");
590 AccountingSymbolContext context;
593 AccountingSymbol *sym;
594 for (i = 0; i < num_syms; i++) {
595 sym = &accounting->syms.syms[i];
596 if (memcmp(&context, &sym->context,
sizeof(AccountingSymbolContext)) != 0) {
597 buf += put_num(buf,
'[', sym->context.x, 0);
598 buf += put_num(buf,
',', sym->context.y,
']');
600 buf += put_num(buf,
'[', sym->id, 0);
601 buf += put_num(buf,
',', sym->bits, 0);
602 buf += put_num(buf,
',', sym->samples,
']');
604 context = sym->context;
605 if (i < num_syms - 1) *(buf++) =
',';
607 buf += put_str(buf,
"],\n");
608 return (
int)(buf - buffer);
612int skip_non_transform = 0;
614void inspect(
void *pbi,
void *data) {
616 ifd_inspect(&frame_data, pbi, skip_non_transform);
620 if (frame_data.show_existing_frame)
return;
625 char *buffer = aom_malloc(MAX_BUFFER);
627 buf += put_str(buf,
"{\n");
628 if (layers & BLOCK_SIZE_LAYER) {
629 buf += put_block_info(buf, block_size_map,
"blockSize",
630 offsetof(insp_mi_data, bsize), 0);
632 if (layers & TRANSFORM_SIZE_LAYER) {
633 buf += put_block_info(buf, tx_size_map,
"transformSize",
634 offsetof(insp_mi_data, tx_size), 0);
636 if (layers & TRANSFORM_TYPE_LAYER) {
637 buf += put_block_info(buf, tx_type_map,
"transformType",
638 offsetof(insp_mi_data, tx_type), 0);
640 if (layers & DUAL_FILTER_LAYER) {
641 buf += put_block_info(buf, dual_filter_map,
"dualFilterType",
642 offsetof(insp_mi_data, dual_filter_type), 0);
644 if (layers & MODE_LAYER) {
645 buf += put_block_info(buf, prediction_mode_map,
"mode",
646 offsetof(insp_mi_data, mode), 0);
648 if (layers & UV_MODE_LAYER) {
649 buf += put_block_info(buf, uv_prediction_mode_map,
"uv_mode",
650 offsetof(insp_mi_data, uv_mode), 0);
652 if (layers & MOTION_MODE_LAYER) {
653 buf += put_block_info(buf, motion_mode_map,
"motion_mode",
654 offsetof(insp_mi_data, motion_mode), 0);
656 if (layers & COMPOUND_TYPE_LAYER) {
657 buf += put_block_info(buf, compound_type_map,
"compound_type",
658 offsetof(insp_mi_data, compound_type), 0);
660 if (layers & SKIP_LAYER) {
662 put_block_info(buf, skip_map,
"skip", offsetof(insp_mi_data, skip), 0);
664 if (layers & FILTER_LAYER) {
666 put_block_info(buf, NULL,
"filter", offsetof(insp_mi_data, filter), 2);
668 if (layers & CDEF_LAYER) {
669 buf += put_block_info(buf, NULL,
"cdef_level",
670 offsetof(insp_mi_data, cdef_level), 0);
671 buf += put_block_info(buf, NULL,
"cdef_strength",
672 offsetof(insp_mi_data, cdef_strength), 0);
674 if (layers & CFL_LAYER) {
675 buf += put_block_info(buf, NULL,
"cfl_alpha_idx",
676 offsetof(insp_mi_data, cfl_alpha_idx), 0);
677 buf += put_block_info(buf, NULL,
"cfl_alpha_sign",
678 offsetof(insp_mi_data, cfl_alpha_sign), 0);
680 if (layers & Q_INDEX_LAYER) {
681 buf += put_block_info(buf, NULL,
"delta_q",
682 offsetof(insp_mi_data, current_qindex), 0);
684 if (layers & SEGMENT_ID_LAYER) {
685 buf += put_block_info(buf, NULL,
"seg_id",
686 offsetof(insp_mi_data, segment_id), 0);
688 if (layers & MOTION_VECTORS_LAYER) {
689 buf += put_motion_vectors(buf);
691 if (layers & INTRABC_LAYER) {
692 buf += put_block_info(buf, intrabc_map,
"intrabc",
693 offsetof(insp_mi_data, intrabc), 0);
695 if (layers & PALETTE_LAYER) {
696 buf += put_block_info(buf, palette_map,
"palette",
697 offsetof(insp_mi_data, palette), 0);
699 if (layers & UV_PALETTE_LAYER) {
700 buf += put_block_info(buf, palette_map,
"uv_palette",
701 offsetof(insp_mi_data, uv_palette), 0);
703 if (combined_parm_count > 0) buf += put_combined(buf);
704 if (layers & REFERENCE_FRAME_LAYER) {
705 buf += put_block_info(buf, refs_map,
"referenceFrame",
706 offsetof(insp_mi_data, ref_frame), 2);
709 if (layers & ACCOUNTING_LAYER) {
710 buf += put_accounting(buf);
714 snprintf(buf, MAX_BUFFER,
" \"frame\": %d,\n", frame_data.frame_number);
715 buf += snprintf(buf, MAX_BUFFER,
" \"showFrame\": %d,\n",
716 frame_data.show_frame);
717 buf += snprintf(buf, MAX_BUFFER,
" \"frameType\": %d,\n",
718 frame_data.frame_type);
719 buf += snprintf(buf, MAX_BUFFER,
" \"baseQIndex\": %d,\n",
720 frame_data.base_qindex);
721 buf += snprintf(buf, MAX_BUFFER,
" \"tileCols\": %d,\n",
722 frame_data.tile_mi_cols);
723 buf += snprintf(buf, MAX_BUFFER,
" \"tileRows\": %d,\n",
724 frame_data.tile_mi_rows);
725 buf += snprintf(buf, MAX_BUFFER,
" \"deltaQPresentFlag\": %d,\n",
726 frame_data.delta_q_present_flag);
727 buf += snprintf(buf, MAX_BUFFER,
" \"deltaQRes\": %d,\n",
728 frame_data.delta_q_res);
729 buf += put_str(buf,
" \"config\": {");
730 buf += put_map(buf, config_map);
731 buf += put_str(buf,
"},\n");
732 buf += put_str(buf,
" \"configString\": \"");
734 buf += put_str(buf,
"\"\n");
735 decoded_frame_count++;
736 buf += put_str(buf,
"},\n");
738 on_frame_decoded_dump(buffer);
750int open_file(
char *file) {
753 file =
"/tmp/input.ivf";
755 reader = aom_video_reader_open(file);
756 if (!reader) die(
"Failed to open %s for reading.", file);
757 info = aom_video_reader_get_info(reader);
759 if (!decoder) die(
"Unknown input codec.");
762 die(
"Failed to initialize decoder.");
763 ifd_init(&frame_data, info->frame_width, info->frame_height);
770const unsigned char *frame;
771const unsigned char *end_frame;
772size_t frame_size = 0;
782 if (!aom_video_reader_read_frame(reader))
return EXIT_FAILURE;
783 frame = aom_video_reader_get_frame(reader, &frame_size);
786 end_frame = frame + frame_size;
791 die_codec(&codec,
"Failed to decode frame.");
795 frame_size = end_frame - frame;
796 if (frame == end_frame) have_frame = 0;
799 int got_any_frames = 0;
807 if (ref_dec.idx == -1) {
813 img = frame_img = &ref_dec.img;
817 if (!got_any_frames) {
830int get_bits_per_sample() {
return img->
bps; }
833int get_image_format() {
return img->
fmt; }
836unsigned char *get_plane(
int plane) {
return img->
planes[plane]; }
839int get_plane_stride(
int plane) {
return img->
stride[plane]; }
848int get_frame_width() {
return info->frame_width; }
851int get_frame_height() {
return info->frame_height; }
853static void parse_args(
char **argv) {
856 (void)dump_accounting_arg;
858 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) {
860 if (arg_match(&arg, &dump_block_size_arg, argi)) layers |= BLOCK_SIZE_LAYER;
862 else if (arg_match(&arg, &dump_accounting_arg, argi))
863 layers |= ACCOUNTING_LAYER;
865 else if (arg_match(&arg, &dump_transform_size_arg, argi))
866 layers |= TRANSFORM_SIZE_LAYER;
867 else if (arg_match(&arg, &dump_transform_type_arg, argi))
868 layers |= TRANSFORM_TYPE_LAYER;
869 else if (arg_match(&arg, &dump_mode_arg, argi))
870 layers |= MODE_LAYER;
871 else if (arg_match(&arg, &dump_uv_mode_arg, argi))
872 layers |= UV_MODE_LAYER;
873 else if (arg_match(&arg, &dump_motion_mode_arg, argi))
874 layers |= MOTION_MODE_LAYER;
875 else if (arg_match(&arg, &dump_compound_type_arg, argi))
876 layers |= COMPOUND_TYPE_LAYER;
877 else if (arg_match(&arg, &dump_skip_arg, argi))
878 layers |= SKIP_LAYER;
879 else if (arg_match(&arg, &dump_filter_arg, argi))
880 layers |= FILTER_LAYER;
881 else if (arg_match(&arg, &dump_cdef_arg, argi))
882 layers |= CDEF_LAYER;
883 else if (arg_match(&arg, &dump_cfl_arg, argi))
885 else if (arg_match(&arg, &dump_reference_frame_arg, argi))
886 layers |= REFERENCE_FRAME_LAYER;
887 else if (arg_match(&arg, &dump_motion_vectors_arg, argi))
888 layers |= MOTION_VECTORS_LAYER;
889 else if (arg_match(&arg, &dump_dual_filter_type_arg, argi))
890 layers |= DUAL_FILTER_LAYER;
891 else if (arg_match(&arg, &dump_delta_q_arg, argi))
892 layers |= Q_INDEX_LAYER;
893 else if (arg_match(&arg, &dump_seg_id_arg, argi))
894 layers |= SEGMENT_ID_LAYER;
895 else if (arg_match(&arg, &dump_intrabc_arg, argi))
896 layers |= INTRABC_LAYER;
897 else if (arg_match(&arg, &dump_palette_arg, argi))
898 layers |= PALETTE_LAYER;
899 else if (arg_match(&arg, &dump_uv_palette_arg, argi))
900 layers |= UV_PALETTE_LAYER;
901 else if (arg_match(&arg, &dump_all_arg, argi))
902 layers |= ALL_LAYERS;
903 else if (arg_match(&arg, &compress_arg, argi))
905 else if (arg_match(&arg, &usage_arg, argi))
907 else if (arg_match(&arg, &limit_arg, argi))
908 stop_after = arg_parse_uint(&arg);
909 else if (arg_match(&arg, &skip_non_transform_arg, argi))
910 skip_non_transform = arg_parse_uint(&arg);
911 else if (arg_match(&arg, &combined_arg, argi))
913 (
char *)arg.val, combined_parm_list,
914 sizeof(combined_parm_list) /
sizeof(combined_parm_list[0]),
915 &combined_parm_count);
921static const char *exec_name;
923void usage_exit(
void) {
924 fprintf(stderr,
"Usage: %s src_filename <options>\n", exec_name);
925 fprintf(stderr,
"\nOptions:\n");
926 arg_show_usage(stderr, main_args);
931int main(
int argc,
char **argv) {
938 if (stop_after && (decoded_frame_count >= stop_after))
break;
939 if (read_frame())
break;
951 aom_video_reader_close(reader);
955void set_layers(LayerType v) { layers = v; }
958void set_compress(
int v) { compress = v; }
Describes the decoder algorithm interface to applications.
int aom_img_plane_height(const aom_image_t *img, int plane)
Get the height of a plane.
int aom_img_plane_width(const aom_image_t *img, int plane)
Get the width of a plane.
Provides definitions for using AOM or AV1 within the aom Decoder interface.
struct Accounting Accounting
Definition: aomdx.h:50
@ AV1_SET_INSPECTION_CALLBACK
Codec control function to set an aom_inspect_cb callback that is invoked each time a frame is decoded...
Definition: aomdx.h:375
@ AV1_GET_REFERENCE
Codec control function to get a pointer to a reference frame.
Definition: aom.h:51
const char * aom_codec_iface_name(aom_codec_iface_t *iface)
Return the name for a given interface.
aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id,...)
Algorithm Control.
const struct aom_codec_iface aom_codec_iface_t
Codec interface structure.
Definition: aom_codec.h:254
const char * aom_codec_build_config(void)
Return the build configuration.
aom_codec_err_t aom_codec_destroy(aom_codec_ctx_t *ctx)
Destroy a codec instance.
const void * aom_codec_iter_t
Iterator.
Definition: aom_codec.h:288
@ AOM_CODEC_OK
Operation completed without error.
Definition: aom_codec.h:157
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
Structure to collect a buffer index when inspecting.
Definition: aomdx.h:78
const unsigned char * buf
Definition: aomdx.h:80
int show_existing
Definition: aomdx.h:84
int idx
Definition: aomdx.h:82
Codec context structure.
Definition: aom_codec.h:298
Image Descriptor.
Definition: aom_image.h:171
unsigned int bit_depth
Definition: aom_image.h:183
aom_img_fmt_t fmt
Definition: aom_image.h:172
int stride[3]
Definition: aom_image.h:203
int bps
Definition: aom_image.h:206
unsigned char * planes[3]
Definition: aom_image.h:202
Structure to hold inspection callback and context.
Definition: aomdx.h:64
void * inspect_ctx
Definition: aomdx.h:69
aom_inspect_cb inspect_cb
Definition: aomdx.h:66
AV1 specific reference frame data struct.
Definition: aom.h:89
aom_image_t img
Definition: aom.h:92
int idx
Definition: aom.h:90