2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04: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 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-30 04:36:10 +04:00
|
|
|
#ifndef VP9_ENCODER_VP9_RDOPT_H_
|
|
|
|
#define VP9_ENCODER_VP9_RDOPT_H_
|
2011-04-08 00:57:25 +04:00
|
|
|
|
2012-08-02 21:07:33 +04:00
|
|
|
#define RDCOST(RM,DM,R,D) ( ((128+((int64_t)R)*(RM)) >> 8) + ((int64_t)DM)*(D) )
|
|
|
|
#define RDCOST_8x8(RM,DM,R,D) ( ((128+((int64_t)R)*(RM)) >> 8) + ((int64_t)DM)*(D) )
|
2011-04-08 00:57:25 +04:00
|
|
|
|
2012-10-31 04:53:32 +04:00
|
|
|
extern void vp9_initialize_rd_consts(VP9_COMP *cpi, int Qvalue);
|
2012-10-31 01:25:33 +04:00
|
|
|
|
2012-11-02 22:22:57 +04:00
|
|
|
extern void vp9_initialize_me_consts(VP9_COMP *cpi, int QIndex);
|
2012-10-31 01:25:33 +04:00
|
|
|
|
2012-10-31 04:53:32 +04:00
|
|
|
extern void vp9_rd_pick_intra_mode(VP9_COMP *cpi, MACROBLOCK *x,
|
2012-10-31 01:25:33 +04:00
|
|
|
int *r, int *d);
|
|
|
|
|
2013-01-06 06:20:25 +04:00
|
|
|
extern void vp9_rd_pick_intra_mode_sb32(VP9_COMP *cpi, MACROBLOCK *x,
|
|
|
|
int *r, int *d);
|
|
|
|
|
|
|
|
extern void vp9_rd_pick_intra_mode_sb64(VP9_COMP *cpi, MACROBLOCK *x,
|
|
|
|
int *r, int *d);
|
2012-10-31 01:25:33 +04:00
|
|
|
|
2012-11-02 22:22:57 +04:00
|
|
|
extern void vp9_pick_mode_inter_macroblock(VP9_COMP *cpi, MACROBLOCK *x,
|
2013-02-07 22:09:05 +04:00
|
|
|
int mb_row, int mb_col,
|
2013-01-06 06:20:25 +04:00
|
|
|
int *r, int *d);
|
|
|
|
|
|
|
|
extern int64_t vp9_rd_pick_inter_mode_sb32(VP9_COMP *cpi, MACROBLOCK *x,
|
2013-02-07 22:09:05 +04:00
|
|
|
int mb_row, int mb_col,
|
2013-01-06 06:20:25 +04:00
|
|
|
int *r, int *d);
|
2012-11-02 22:22:57 +04:00
|
|
|
|
2013-01-06 06:20:25 +04:00
|
|
|
extern int64_t vp9_rd_pick_inter_mode_sb64(VP9_COMP *cpi, MACROBLOCK *x,
|
2013-02-07 22:09:05 +04:00
|
|
|
int mb_row, int mb_col,
|
2013-01-06 06:20:25 +04:00
|
|
|
int *r, int *d);
|
2012-11-02 22:22:57 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
extern void vp9_init_me_luts();
|
2012-10-31 01:25:33 +04:00
|
|
|
|
|
|
|
extern void vp9_set_mbmode_and_mvs(MACROBLOCK *x,
|
|
|
|
MB_PREDICTION_MODE mb, int_mv *mv);
|
|
|
|
|
2013-02-07 22:09:05 +04:00
|
|
|
static void setup_pred_block(YV12_BUFFER_CONFIG *dst,
|
|
|
|
const YV12_BUFFER_CONFIG *src,
|
|
|
|
int mb_row, int mb_col) {
|
|
|
|
const int recon_y_stride = src->y_stride;
|
|
|
|
const int recon_uv_stride = src->uv_stride;
|
|
|
|
const int recon_yoffset = 16 * mb_row * recon_y_stride + 16 * mb_col;
|
|
|
|
const int recon_uvoffset = 8 * mb_row * recon_uv_stride + 8 * mb_col;
|
|
|
|
|
|
|
|
*dst = *src;
|
|
|
|
dst->y_buffer += recon_yoffset;
|
|
|
|
dst->u_buffer += recon_uvoffset;
|
|
|
|
dst->v_buffer += recon_uvoffset;
|
|
|
|
}
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
#endif // VP9_ENCODER_VP9_RDOPT_H_
|