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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INC_BLOCK_H
|
|
|
|
#define __INC_BLOCK_H
|
|
|
|
|
2011-02-10 20:41:38 +01:00
|
|
|
#include "vp8/common/onyx.h"
|
|
|
|
#include "vp8/common/blockd.h"
|
|
|
|
#include "vp8/common/entropymv.h"
|
|
|
|
#include "vp8/common/entropy.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_ports/mem.h"
|
|
|
|
|
|
|
|
// motion search site
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MV mv;
|
|
|
|
int offset;
|
|
|
|
} search_site;
|
|
|
|
|
2012-01-13 01:55:44 +01:00
|
|
|
typedef struct block
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
|
|
|
// 16 Y blocks, 4 U blocks, 4 V blocks each with 16 entries
|
|
|
|
short *src_diff;
|
|
|
|
short *coeff;
|
|
|
|
|
|
|
|
// 16 Y blocks, 4 U blocks, 4 V blocks each with 16 entries
|
2010-10-22 02:04:30 +02:00
|
|
|
short *quant;
|
2010-12-28 20:51:46 +01:00
|
|
|
short *quant_fast;
|
2011-04-13 19:45:58 +02:00
|
|
|
unsigned char *quant_shift;
|
2010-10-22 02:04:30 +02:00
|
|
|
short *zbin;
|
|
|
|
short *zrun_zbin_boost;
|
|
|
|
short *round;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
// Zbin Over Quant value
|
|
|
|
short zbin_extra;
|
|
|
|
|
|
|
|
unsigned char **base_src;
|
|
|
|
int src;
|
|
|
|
int src_stride;
|
|
|
|
} BLOCK;
|
|
|
|
|
2010-09-02 22:17:52 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int count;
|
2011-06-02 19:46:41 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
B_PREDICTION_MODE mode;
|
|
|
|
int_mv mv;
|
|
|
|
} bmi[16];
|
2010-09-02 22:17:52 +02:00
|
|
|
} PARTITION_INFO;
|
|
|
|
|
2012-01-13 01:55:44 +01:00
|
|
|
typedef struct macroblock
|
2010-05-18 17:58:33 +02:00
|
|
|
{
|
|
|
|
DECLARE_ALIGNED(16, short, src_diff[400]); // 16x16 Y 8x8 U 8x8 V 4x4 2nd Y
|
|
|
|
DECLARE_ALIGNED(16, short, coeff[400]); // 16x16 Y 8x8 U 8x8 V 4x4 2nd Y
|
2011-06-23 19:54:02 +02:00
|
|
|
DECLARE_ALIGNED(16, unsigned char, thismb[256]);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-06-23 19:54:02 +02:00
|
|
|
unsigned char *thismb_ptr;
|
2010-05-18 17:58:33 +02:00
|
|
|
// 16 Y blocks, 4 U blocks, 4 V blocks, 1 DC 2nd order block each with 16 entries
|
|
|
|
BLOCK block[25];
|
|
|
|
|
|
|
|
YV12_BUFFER_CONFIG src;
|
|
|
|
|
|
|
|
MACROBLOCKD e_mbd;
|
2010-09-02 22:17:52 +02:00
|
|
|
PARTITION_INFO *partition_info; /* work pointer */
|
|
|
|
PARTITION_INFO *pi; /* Corresponds to upper left visible macroblock */
|
|
|
|
PARTITION_INFO *pip; /* Base of allocated array */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-02-02 19:40:08 +01:00
|
|
|
int ref_frame_cost[MAX_REF_FRAMES];
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
search_site *ss;
|
|
|
|
int ss_count;
|
|
|
|
int searches_per_step;
|
|
|
|
|
|
|
|
int errorperbit;
|
|
|
|
int sadperbit16;
|
|
|
|
int sadperbit4;
|
|
|
|
int rddiv;
|
|
|
|
int rdmult;
|
2011-05-12 18:01:55 +02:00
|
|
|
unsigned int * mb_activity_ptr;
|
|
|
|
int * mb_norm_activity_ptr;
|
|
|
|
signed int act_zbin_adj;
|
2011-11-01 21:20:00 +01:00
|
|
|
signed int last_act_zbin_adj;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
int *mvcost[2];
|
|
|
|
int *mvsadcost[2];
|
2012-04-17 09:40:56 +02:00
|
|
|
int (*mbmode_cost)[MB_MODE_COUNT];
|
|
|
|
int (*intra_uv_mode_cost)[MB_MODE_COUNT];
|
|
|
|
int (*bmode_costs)[10][10];
|
|
|
|
int *inter_bmode_costs;
|
|
|
|
int (*token_costs)[COEF_BANDS][PREV_COEF_CONTEXTS]
|
|
|
|
[MAX_ENTROPY_TOKENS];
|
|
|
|
|
|
|
|
// These define limits to motion vector components to prevent
|
|
|
|
// them from extending outside the UMV borders
|
2010-05-18 17:58:33 +02:00
|
|
|
int mv_col_min;
|
|
|
|
int mv_col_max;
|
|
|
|
int mv_row_min;
|
|
|
|
int mv_row_max;
|
|
|
|
|
|
|
|
int skip;
|
|
|
|
|
|
|
|
int encode_breakout;
|
|
|
|
|
2010-08-11 17:02:31 +02:00
|
|
|
//char * gf_active_ptr;
|
|
|
|
signed char *gf_active_ptr;
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
unsigned char *active_ptr;
|
|
|
|
MV_CONTEXT *mvc;
|
|
|
|
|
|
|
|
int optimize;
|
2010-12-29 20:30:57 +01:00
|
|
|
int q_index;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-01-13 01:55:44 +01:00
|
|
|
void (*short_fdct4x4)(short *input, short *output, int pitch);
|
|
|
|
void (*short_fdct8x4)(short *input, short *output, int pitch);
|
2010-05-18 17:58:33 +02:00
|
|
|
void (*short_walsh4x4)(short *input, short *output, int pitch);
|
|
|
|
void (*quantize_b)(BLOCK *b, BLOCKD *d);
|
2011-05-09 09:09:41 +02:00
|
|
|
void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
} MACROBLOCK;
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|