2010-05-18 11:58:33 -04:00
|
|
|
/*
|
2010-09-09 08:16:39 -04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 11:58:33 -04:00
|
|
|
*
|
2010-06-18 12:39:21 -04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 16: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 12:39:21 -04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 16:19:40 -04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 11:58:33 -04:00
|
|
|
*/
|
|
|
|
|
2013-12-15 18:25:05 -08:00
|
|
|
#ifndef VP8_ENCODER_RDOPT_H_
|
|
|
|
#define VP8_ENCODER_RDOPT_H_
|
2011-04-07 16:57:25 -04:00
|
|
|
|
2015-08-25 16:50:32 -07:00
|
|
|
#include "./vpx_config.h"
|
|
|
|
|
2014-01-18 12:16:11 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
#define RDCOST(RM, DM, R, D) (((128 + (R) * (RM)) >> 8) + (DM) * (D))
|
2011-04-07 16:57:25 -04:00
|
|
|
|
2017-06-16 02:12:18 -07:00
|
|
|
void vp8cx_initialize_me_consts(VP8_COMP *cpi, int QIndex);
|
|
|
|
void vp8_auto_select_speed(VP8_COMP *cpi);
|
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
static INLINE void insertsortmv(int arr[], int len) {
|
|
|
|
int i, j, k;
|
2011-10-25 15:14:16 -04:00
|
|
|
|
2016-07-18 06:54:50 -07:00
|
|
|
for (i = 1; i <= len - 1; ++i) {
|
|
|
|
for (j = 0; j < i; ++j) {
|
2016-07-13 22:26:28 -07:00
|
|
|
if (arr[j] > arr[i]) {
|
|
|
|
int temp;
|
2011-10-25 15:14:16 -04:00
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
temp = arr[i];
|
2011-10-25 15:14:16 -04:00
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
for (k = i; k > j; k--) arr[k] = arr[k - 1];
|
2011-10-25 15:14:16 -04:00
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
arr[j] = temp;
|
|
|
|
}
|
2011-10-25 15:14:16 -04:00
|
|
|
}
|
2016-07-13 22:26:28 -07:00
|
|
|
}
|
2011-10-25 15:14:16 -04:00
|
|
|
}
|
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
static INLINE void insertsortsad(int arr[], int idx[], int len) {
|
|
|
|
int i, j, k;
|
|
|
|
|
2016-07-18 06:54:50 -07:00
|
|
|
for (i = 1; i <= len - 1; ++i) {
|
|
|
|
for (j = 0; j < i; ++j) {
|
2016-07-13 22:26:28 -07:00
|
|
|
if (arr[j] > arr[i]) {
|
|
|
|
int temp, tempi;
|
|
|
|
|
|
|
|
temp = arr[i];
|
|
|
|
tempi = idx[i];
|
|
|
|
|
|
|
|
for (k = i; k > j; k--) {
|
|
|
|
arr[k] = arr[k - 1];
|
|
|
|
idx[k] = idx[k - 1];
|
2011-10-25 15:14:16 -04:00
|
|
|
}
|
2016-07-13 22:26:28 -07:00
|
|
|
|
|
|
|
arr[j] = temp;
|
|
|
|
idx[j] = tempi;
|
|
|
|
}
|
2011-10-25 15:14:16 -04:00
|
|
|
}
|
2016-07-13 22:26:28 -07:00
|
|
|
}
|
2011-10-25 15:14:16 -04:00
|
|
|
}
|
|
|
|
|
2012-11-06 16:27:00 -08:00
|
|
|
extern void vp8_initialize_rd_consts(VP8_COMP *cpi, MACROBLOCK *x, int Qvalue);
|
2014-06-13 10:08:09 -07:00
|
|
|
extern void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x,
|
|
|
|
int recon_yoffset, int recon_uvoffset,
|
|
|
|
int *returnrate, int *returndistortion,
|
|
|
|
int *returnintra, int mb_row, int mb_col);
|
2012-11-02 12:10:07 -07:00
|
|
|
extern void vp8_rd_pick_intra_mode(MACROBLOCK *x, int *rate);
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2015-08-25 16:50:32 -07:00
|
|
|
static INLINE void get_plane_pointers(const YV12_BUFFER_CONFIG *fb,
|
|
|
|
unsigned char *plane[3],
|
|
|
|
unsigned int recon_yoffset,
|
2016-07-13 22:26:28 -07:00
|
|
|
unsigned int recon_uvoffset) {
|
|
|
|
plane[0] = fb->y_buffer + recon_yoffset;
|
|
|
|
plane[1] = fb->u_buffer + recon_uvoffset;
|
|
|
|
plane[2] = fb->v_buffer + recon_uvoffset;
|
2012-01-11 14:38:58 -08:00
|
|
|
}
|
|
|
|
|
2015-08-25 16:50:32 -07:00
|
|
|
static INLINE void get_predictor_pointers(const VP8_COMP *cpi,
|
|
|
|
unsigned char *plane[4][3],
|
|
|
|
unsigned int recon_yoffset,
|
2016-07-13 22:26:28 -07:00
|
|
|
unsigned int recon_uvoffset) {
|
2016-07-18 23:15:57 -07:00
|
|
|
if (cpi->ref_frame_flags & VP8_LAST_FRAME) {
|
2016-07-13 22:26:28 -07:00
|
|
|
get_plane_pointers(&cpi->common.yv12_fb[cpi->common.lst_fb_idx],
|
|
|
|
plane[LAST_FRAME], recon_yoffset, recon_uvoffset);
|
2016-07-18 23:15:57 -07:00
|
|
|
}
|
2016-07-13 22:26:28 -07:00
|
|
|
|
2016-07-18 23:15:57 -07:00
|
|
|
if (cpi->ref_frame_flags & VP8_GOLD_FRAME) {
|
2016-07-13 22:26:28 -07:00
|
|
|
get_plane_pointers(&cpi->common.yv12_fb[cpi->common.gld_fb_idx],
|
|
|
|
plane[GOLDEN_FRAME], recon_yoffset, recon_uvoffset);
|
2016-07-18 23:15:57 -07:00
|
|
|
}
|
2016-07-13 22:26:28 -07:00
|
|
|
|
2016-07-18 23:15:57 -07:00
|
|
|
if (cpi->ref_frame_flags & VP8_ALTR_FRAME) {
|
2016-07-13 22:26:28 -07:00
|
|
|
get_plane_pointers(&cpi->common.yv12_fb[cpi->common.alt_fb_idx],
|
|
|
|
plane[ALTREF_FRAME], recon_yoffset, recon_uvoffset);
|
2016-07-18 23:15:57 -07:00
|
|
|
}
|
2012-01-11 14:38:58 -08:00
|
|
|
}
|
|
|
|
|
2015-08-25 16:50:32 -07:00
|
|
|
static INLINE void get_reference_search_order(const VP8_COMP *cpi,
|
2016-07-13 22:26:28 -07:00
|
|
|
int ref_frame_map[4]) {
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
ref_frame_map[i++] = INTRA_FRAME;
|
|
|
|
if (cpi->ref_frame_flags & VP8_LAST_FRAME) ref_frame_map[i++] = LAST_FRAME;
|
|
|
|
if (cpi->ref_frame_flags & VP8_GOLD_FRAME) ref_frame_map[i++] = GOLDEN_FRAME;
|
|
|
|
if (cpi->ref_frame_flags & VP8_ALTR_FRAME) ref_frame_map[i++] = ALTREF_FRAME;
|
2016-07-18 06:54:50 -07:00
|
|
|
for (; i < 4; ++i) ref_frame_map[i] = -1;
|
2012-01-11 14:38:58 -08:00
|
|
|
}
|
|
|
|
|
2016-07-13 22:26:28 -07:00
|
|
|
extern void vp8_mv_pred(VP8_COMP *cpi, MACROBLOCKD *xd, const MODE_INFO *here,
|
|
|
|
int_mv *mvp, int refframe, int *ref_frame_sign_bias,
|
|
|
|
int *sr, int near_sadidx[]);
|
|
|
|
void vp8_cal_sad(VP8_COMP *cpi, MACROBLOCKD *xd, MACROBLOCK *x,
|
|
|
|
int recon_yoffset, int near_sadidx[]);
|
2015-05-14 20:31:56 -07:00
|
|
|
int VP8_UVSSE(MACROBLOCK *x);
|
|
|
|
int vp8_cost_mv_ref(MB_PREDICTION_MODE m, const int near_mv_ref_ct[4]);
|
|
|
|
void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv);
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2014-01-18 12:16:11 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-12-15 18:25:05 -08:00
|
|
|
#endif // VP8_ENCODER_RDOPT_H_
|