2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2012-11-30 01:36:10 +01:00
|
|
|
#ifndef VP9_ENCODER_VP9_BLOCK_H_
|
|
|
|
#define VP9_ENCODER_VP9_BLOCK_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_entropymv.h"
|
|
|
|
#include "vp9/common/vp9_entropy.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_ports/mem.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-04-23 17:26:10 +02:00
|
|
|
struct macroblock_plane {
|
2013-10-15 20:50:25 +02:00
|
|
|
DECLARE_ALIGNED(16, int16_t, src_diff[64 * 64]);
|
2013-11-27 03:52:10 +01:00
|
|
|
int16_t *qcoeff;
|
2013-11-01 20:53:37 +01:00
|
|
|
int16_t *coeff;
|
2013-12-04 02:59:32 +01:00
|
|
|
uint16_t *eobs;
|
2013-04-24 01:22:47 +02:00
|
|
|
struct buf_2d src;
|
2013-04-24 00:22:18 +02:00
|
|
|
|
|
|
|
// Quantizer setings
|
|
|
|
int16_t *quant;
|
2013-07-01 20:36:07 +02:00
|
|
|
int16_t *quant_shift;
|
2013-04-24 00:22:18 +02:00
|
|
|
int16_t *zbin;
|
|
|
|
int16_t *round;
|
|
|
|
|
|
|
|
// Zbin Over Quant value
|
|
|
|
int16_t zbin_extra;
|
2013-04-23 17:26:10 +02:00
|
|
|
};
|
|
|
|
|
2013-07-25 00:13:58 +02:00
|
|
|
/* The [2] dimension is for whether we skip the EOB node (i.e. if previous
|
|
|
|
* coefficient in this block was zero) or not. */
|
2013-12-06 19:54:00 +01:00
|
|
|
typedef unsigned int vp9_coeff_cost[PLANE_TYPES][REF_TYPES][COEF_BANDS][2]
|
2013-12-06 02:08:06 +01:00
|
|
|
[COEFF_CONTEXTS][ENTROPY_TOKENS];
|
2013-07-25 00:13:58 +02:00
|
|
|
|
2013-02-27 19:00:24 +01:00
|
|
|
typedef struct macroblock MACROBLOCK;
|
|
|
|
struct macroblock {
|
2013-04-23 17:26:10 +02:00
|
|
|
struct macroblock_plane plane[MAX_MB_PLANE];
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
MACROBLOCKD e_mbd;
|
2013-04-24 01:22:47 +02:00
|
|
|
int skip_block;
|
2013-11-06 06:07:08 +01:00
|
|
|
int select_txfm_size;
|
2013-11-07 23:56:58 +01:00
|
|
|
int skip_recode;
|
2013-11-06 06:07:08 +01:00
|
|
|
int skip_optimize;
|
2013-11-13 02:28:27 +01:00
|
|
|
int q_index;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
int errorperbit;
|
|
|
|
int sadperbit16;
|
|
|
|
int sadperbit4;
|
|
|
|
int rddiv;
|
|
|
|
int rdmult;
|
2013-10-07 20:20:10 +02:00
|
|
|
unsigned int mb_energy;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-12-05 17:23:38 +01:00
|
|
|
int mv_best_ref_index[MAX_REF_FRAMES];
|
2013-07-12 18:52:24 +02:00
|
|
|
unsigned int max_mv_context[MAX_REF_FRAMES];
|
2013-07-31 18:33:58 +02:00
|
|
|
unsigned int source_variance;
|
2013-12-21 00:24:22 +01:00
|
|
|
unsigned int pred_sse[MAX_REF_FRAMES];
|
|
|
|
int pred_mv_sad[MAX_REF_FRAMES];
|
2012-12-05 17:23:38 +01:00
|
|
|
|
2012-07-26 22:42:07 +02:00
|
|
|
int nmvjointcost[MV_JOINTS];
|
|
|
|
int nmvcosts[2][MV_VALS];
|
|
|
|
int *nmvcost[2];
|
|
|
|
int nmvcosts_hp[2][MV_VALS];
|
|
|
|
int *nmvcost_hp[2];
|
2012-11-09 00:44:39 +01:00
|
|
|
int **mvcost;
|
2012-07-26 22:42:07 +02:00
|
|
|
|
|
|
|
int nmvjointsadcost[MV_JOINTS];
|
|
|
|
int nmvsadcosts[2][MV_VALS];
|
|
|
|
int *nmvsadcost[2];
|
|
|
|
int nmvsadcosts_hp[2][MV_VALS];
|
|
|
|
int *nmvsadcost_hp[2];
|
2012-11-09 00:44:39 +01:00
|
|
|
int **mvsadcost;
|
2012-08-03 21:17:18 +02:00
|
|
|
|
2012-10-22 23:43:01 +02:00
|
|
|
// These define limits to motion vector components to prevent them
|
|
|
|
// from extending outside the UMV borders
|
2012-07-14 00:21:29 +02:00
|
|
|
int mv_col_min;
|
|
|
|
int mv_col_max;
|
|
|
|
int mv_row_min;
|
|
|
|
int mv_row_max;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-10-15 01:03:23 +02:00
|
|
|
uint8_t zcoeff_blk[TX_SIZES][256];
|
2012-07-14 00:21:29 +02:00
|
|
|
int skip;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int encode_breakout;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-08 03:15:33 +01:00
|
|
|
int in_active_map;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-05-08 19:04:14 +02:00
|
|
|
// note that token_costs is the cost when eob node is skipped
|
2013-07-27 02:15:37 +02:00
|
|
|
vp9_coeff_cost token_costs[TX_SIZES];
|
2012-01-26 23:36:20 +01:00
|
|
|
|
2014-04-17 18:58:17 +02:00
|
|
|
int in_static_area;
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int optimize;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-14 20:28:56 +02:00
|
|
|
// indicate if it is in the rd search loop or encoding process
|
2013-08-08 00:22:51 +02:00
|
|
|
int use_lp32x32fdct;
|
2013-07-09 01:48:47 +02:00
|
|
|
int skip_encode;
|
2013-06-14 20:28:56 +02:00
|
|
|
|
2013-07-03 23:43:23 +02:00
|
|
|
// Used to store sub partition's choices.
|
2014-05-19 20:43:07 +02:00
|
|
|
MV pred_mv[MAX_REF_FRAMES];
|
2013-07-03 23:43:23 +02:00
|
|
|
|
2013-10-24 20:48:25 +02:00
|
|
|
void (*fwd_txm4x4)(const int16_t *input, int16_t *output, int stride);
|
2013-02-27 19:00:24 +01:00
|
|
|
};
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_ENCODER_VP9_BLOCK_H_
|