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
|
|
|
*/
|
|
|
|
|
2012-11-29 16:36:10 -08:00
|
|
|
#ifndef VP9_ENCODER_VP9_ENCODEMB_H_
|
|
|
|
#define VP9_ENCODER_VP9_ENCODEMB_H_
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2012-12-23 07:20:10 -08:00
|
|
|
#include "./vpx_config.h"
|
2012-11-28 10:41:40 -08:00
|
|
|
#include "vp9/encoder/vp9_block.h"
|
2013-03-05 14:12:16 -08:00
|
|
|
#include "vp9/encoder/vp9_onyx_int.h"
|
2013-02-20 10:16:24 -08:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2012-07-13 15:21:29 -07:00
|
|
|
typedef struct {
|
2013-09-27 16:02:49 -07:00
|
|
|
MB_PREDICTION_MODE mode;
|
2012-07-13 15:21:29 -07:00
|
|
|
MV_REFERENCE_FRAME ref_frame;
|
|
|
|
MV_REFERENCE_FRAME second_ref_frame;
|
2012-06-25 16:23:58 -07:00
|
|
|
} MODE_DEFINITION;
|
|
|
|
|
2013-09-27 16:02:49 -07:00
|
|
|
typedef struct {
|
|
|
|
MV_REFERENCE_FRAME ref_frame;
|
|
|
|
MV_REFERENCE_FRAME second_ref_frame;
|
|
|
|
} REF_DEFINITION;
|
|
|
|
|
2013-04-30 11:29:27 -07:00
|
|
|
struct optimize_ctx {
|
|
|
|
ENTROPY_CONTEXT ta[MAX_MB_PLANE][16];
|
|
|
|
ENTROPY_CONTEXT tl[MAX_MB_PLANE][16];
|
|
|
|
};
|
2013-05-31 12:30:32 -07:00
|
|
|
|
2013-07-01 16:50:58 -07:00
|
|
|
struct encode_b_args {
|
|
|
|
MACROBLOCK *x;
|
|
|
|
struct optimize_ctx *ctx;
|
|
|
|
};
|
|
|
|
|
2013-08-27 11:05:08 -07:00
|
|
|
void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
|
|
|
|
void vp9_encode_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
|
2013-05-31 12:30:32 -07:00
|
|
|
|
2013-08-27 11:05:08 -07:00
|
|
|
void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize,
|
2013-08-15 17:03:03 -07:00
|
|
|
TX_SIZE tx_size, void *arg);
|
2012-11-08 11:03:00 -08:00
|
|
|
|
2013-08-27 11:05:08 -07:00
|
|
|
void vp9_subtract_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
|
|
|
|
void vp9_subtract_sbuv(MACROBLOCK *x, BLOCK_SIZE bsize);
|
|
|
|
void vp9_subtract_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
|
2013-08-16 12:51:20 -07:00
|
|
|
|
2013-11-15 12:17:16 -08:00
|
|
|
void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
|
|
|
|
TX_SIZE tx_size, void *arg);
|
|
|
|
|
2013-08-27 11:05:08 -07:00
|
|
|
void vp9_encode_intra_block_y(MACROBLOCK *x, BLOCK_SIZE bsize);
|
|
|
|
void vp9_encode_intra_block_uv(MACROBLOCK *x, BLOCK_SIZE bsize);
|
2013-08-16 12:51:20 -07:00
|
|
|
|
2013-11-15 12:17:16 -08:00
|
|
|
int vp9_encode_intra(MACROBLOCK *x, int use_16x16_pred);
|
2013-11-19 14:57:58 -08:00
|
|
|
void vp9_setup_interp_filters(MACROBLOCKD *xd,
|
|
|
|
INTERPOLATION_TYPE mcomp_filter_type,
|
|
|
|
VP9_COMMON *cm);
|
2012-12-18 15:31:19 -08:00
|
|
|
#endif // VP9_ENCODER_VP9_ENCODEMB_H_
|