michael@0: /* michael@0: * Copyright (c) 2011 The WebM project authors. All Rights Reserved. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license michael@0: * that can be found in the LICENSE file in the root of the source michael@0: * tree. An additional intellectual property rights grant can be found michael@0: * in the file PATENTS. All contributing project authors may michael@0: * be found in the AUTHORS file in the root of the source tree. michael@0: */ michael@0: michael@0: michael@0: #include "vpx_ports/asm_offsets.h" michael@0: #include "vpx_config.h" michael@0: #include "block.h" michael@0: #include "vp8/common/blockd.h" michael@0: #include "onyx_int.h" michael@0: #include "treewriter.h" michael@0: #include "tokenize.h" michael@0: michael@0: BEGIN michael@0: michael@0: /* regular quantize */ michael@0: DEFINE(vp8_block_coeff, offsetof(BLOCK, coeff)); michael@0: DEFINE(vp8_block_zbin, offsetof(BLOCK, zbin)); michael@0: DEFINE(vp8_block_round, offsetof(BLOCK, round)); michael@0: DEFINE(vp8_block_quant, offsetof(BLOCK, quant)); michael@0: DEFINE(vp8_block_quant_fast, offsetof(BLOCK, quant_fast)); michael@0: DEFINE(vp8_block_zbin_extra, offsetof(BLOCK, zbin_extra)); michael@0: DEFINE(vp8_block_zrun_zbin_boost, offsetof(BLOCK, zrun_zbin_boost)); michael@0: DEFINE(vp8_block_quant_shift, offsetof(BLOCK, quant_shift)); michael@0: michael@0: DEFINE(vp8_blockd_qcoeff, offsetof(BLOCKD, qcoeff)); michael@0: DEFINE(vp8_blockd_dequant, offsetof(BLOCKD, dequant)); michael@0: DEFINE(vp8_blockd_dqcoeff, offsetof(BLOCKD, dqcoeff)); michael@0: DEFINE(vp8_blockd_eob, offsetof(BLOCKD, eob)); michael@0: michael@0: /* subtract */ michael@0: DEFINE(vp8_block_base_src, offsetof(BLOCK, base_src)); michael@0: DEFINE(vp8_block_src, offsetof(BLOCK, src)); michael@0: DEFINE(vp8_block_src_diff, offsetof(BLOCK, src_diff)); michael@0: DEFINE(vp8_block_src_stride, offsetof(BLOCK, src_stride)); michael@0: michael@0: DEFINE(vp8_blockd_predictor, offsetof(BLOCKD, predictor)); michael@0: michael@0: /* pack tokens */ michael@0: DEFINE(vp8_writer_lowvalue, offsetof(vp8_writer, lowvalue)); michael@0: DEFINE(vp8_writer_range, offsetof(vp8_writer, range)); michael@0: DEFINE(vp8_writer_count, offsetof(vp8_writer, count)); michael@0: DEFINE(vp8_writer_pos, offsetof(vp8_writer, pos)); michael@0: DEFINE(vp8_writer_buffer, offsetof(vp8_writer, buffer)); michael@0: DEFINE(vp8_writer_buffer_end, offsetof(vp8_writer, buffer_end)); michael@0: DEFINE(vp8_writer_error, offsetof(vp8_writer, error)); michael@0: michael@0: DEFINE(tokenextra_token, offsetof(TOKENEXTRA, Token)); michael@0: DEFINE(tokenextra_extra, offsetof(TOKENEXTRA, Extra)); michael@0: DEFINE(tokenextra_context_tree, offsetof(TOKENEXTRA, context_tree)); michael@0: DEFINE(tokenextra_skip_eob_node, offsetof(TOKENEXTRA, skip_eob_node)); michael@0: DEFINE(TOKENEXTRA_SZ, sizeof(TOKENEXTRA)); michael@0: michael@0: DEFINE(vp8_extra_bit_struct_sz, sizeof(vp8_extra_bit_struct)); michael@0: michael@0: DEFINE(vp8_token_value, offsetof(vp8_token, value)); michael@0: DEFINE(vp8_token_len, offsetof(vp8_token, Len)); michael@0: michael@0: DEFINE(vp8_extra_bit_struct_tree, offsetof(vp8_extra_bit_struct, tree)); michael@0: DEFINE(vp8_extra_bit_struct_prob, offsetof(vp8_extra_bit_struct, prob)); michael@0: DEFINE(vp8_extra_bit_struct_len, offsetof(vp8_extra_bit_struct, Len)); michael@0: DEFINE(vp8_extra_bit_struct_base_val, offsetof(vp8_extra_bit_struct, base_val)); michael@0: michael@0: DEFINE(vp8_comp_tplist, offsetof(VP8_COMP, tplist)); michael@0: DEFINE(vp8_comp_common, offsetof(VP8_COMP, common)); michael@0: DEFINE(vp8_comp_bc , offsetof(VP8_COMP, bc)); michael@0: DEFINE(vp8_writer_sz , sizeof(vp8_writer)); michael@0: michael@0: DEFINE(tokenlist_start, offsetof(TOKENLIST, start)); michael@0: DEFINE(tokenlist_stop, offsetof(TOKENLIST, stop)); michael@0: DEFINE(TOKENLIST_SZ, sizeof(TOKENLIST)); michael@0: michael@0: DEFINE(vp8_common_mb_rows, offsetof(VP8_COMMON, mb_rows)); michael@0: michael@0: END michael@0: michael@0: /* add asserts for any offset that is not supported by assembly code michael@0: * add asserts for any size that is not supported by assembly code michael@0: michael@0: * These are used in vp8cx_pack_tokens. They are hard coded so if their sizes michael@0: * change they will have to be adjusted. michael@0: */ michael@0: michael@0: #if HAVE_EDSP michael@0: ct_assert(TOKENEXTRA_SZ, sizeof(TOKENEXTRA) == 8) michael@0: ct_assert(vp8_extra_bit_struct_sz, sizeof(vp8_extra_bit_struct) == 16) michael@0: #endif