summaryrefslogtreecommitdiffstats
path: root/third_party/aom/av1/decoder/inspection.h
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-04-07 23:30:51 -0400
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 13:26:42 +0200
commit277f2116b6660e9bbe7f5d67524be57eceb49b8b (patch)
tree4595f7cc71418f71b9a97dfaeb03a30aa60f336a /third_party/aom/av1/decoder/inspection.h
parentd270404436f6e84ffa3b92af537ac721bf10d66e (diff)
downloadUXP-277f2116b6660e9bbe7f5d67524be57eceb49b8b.tar
UXP-277f2116b6660e9bbe7f5d67524be57eceb49b8b.tar.gz
UXP-277f2116b6660e9bbe7f5d67524be57eceb49b8b.tar.lz
UXP-277f2116b6660e9bbe7f5d67524be57eceb49b8b.tar.xz
UXP-277f2116b6660e9bbe7f5d67524be57eceb49b8b.zip
Move aom source to a sub-directory under media/libaom
There is no damned reason to treat this differently than any other media lib given its license and there never was.
Diffstat (limited to 'third_party/aom/av1/decoder/inspection.h')
-rw-r--r--third_party/aom/av1/decoder/inspection.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/third_party/aom/av1/decoder/inspection.h b/third_party/aom/av1/decoder/inspection.h
deleted file mode 100644
index 7214a9bed..000000000
--- a/third_party/aom/av1/decoder/inspection.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (c) 2017, Alliance for Open Media. All rights reserved
- *
- * This source code is subject to the terms of the BSD 2 Clause License and
- * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
- * was not distributed with this source code in the LICENSE file, you can
- * obtain it at www.aomedia.org/license/software. If the Alliance for Open
- * Media Patent License 1.0 was not distributed with this source code in the
- * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
- */
-#ifndef AOM_AV1_DECODER_INSPECTION_H_
-#define AOM_AV1_DECODER_INSPECTION_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif // __cplusplus
-
-#include "av1/common/seg_common.h"
-#if CONFIG_ACCOUNTING
-#include "av1/decoder/accounting.h"
-#endif
-
-#ifndef AOM_AOMDX_H_
-typedef void (*aom_inspect_cb)(void *decoder, void *data);
-#endif
-
-typedef struct insp_mv insp_mv;
-
-struct insp_mv {
- int16_t row;
- int16_t col;
-};
-
-typedef struct insp_mi_data insp_mi_data;
-
-struct insp_mi_data {
- insp_mv mv[2];
- int16_t ref_frame[2];
- int16_t mode;
- int16_t uv_mode;
- int16_t sb_type;
- int16_t skip;
- int16_t segment_id;
- int16_t dual_filter_type;
- int16_t filter[2];
- int16_t tx_type;
- int16_t tx_size;
- int16_t cdef_level;
- int16_t cdef_strength;
- int16_t cfl_alpha_idx;
- int16_t cfl_alpha_sign;
- int16_t current_qindex;
-};
-
-typedef struct insp_frame_data insp_frame_data;
-
-struct insp_frame_data {
-#if CONFIG_ACCOUNTING
- Accounting *accounting;
-#endif
- insp_mi_data *mi_grid;
- int show_frame;
- int frame_type;
- int base_qindex;
- int mi_rows;
- int mi_cols;
- int tile_mi_rows;
- int tile_mi_cols;
- int16_t y_dequant[MAX_SEGMENTS][2];
- int16_t u_dequant[MAX_SEGMENTS][2];
- int16_t v_dequant[MAX_SEGMENTS][2];
- // TODO(negge): add per frame CDEF data
- int delta_q_present_flag;
- int delta_q_res;
-};
-
-void ifd_init(insp_frame_data *fd, int frame_width, int frame_height);
-void ifd_clear(insp_frame_data *fd);
-int ifd_inspect(insp_frame_data *fd, void *decoder);
-
-#ifdef __cplusplus
-} // extern "C"
-#endif // __cplusplus
-#endif // AOM_AV1_DECODER_INSPECTION_H_