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_ENCODEMB_H_
|
|
|
|
#define VP9_ENCODER_VP9_ENCODEMB_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/encoder/vp9_block.h"
|
2013-03-05 23:12:16 +01:00
|
|
|
#include "vp9/encoder/vp9_onyx_int.h"
|
2013-02-20 19:16:24 +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-30 20:29:27 +02:00
|
|
|
struct optimize_ctx {
|
|
|
|
ENTROPY_CONTEXT ta[MAX_MB_PLANE][16];
|
|
|
|
ENTROPY_CONTEXT tl[MAX_MB_PLANE][16];
|
|
|
|
};
|
2013-05-31 21:30:32 +02:00
|
|
|
|
2013-07-02 01:50:58 +02:00
|
|
|
struct encode_b_args {
|
|
|
|
MACROBLOCK *x;
|
|
|
|
struct optimize_ctx *ctx;
|
2014-01-15 02:58:25 +01:00
|
|
|
unsigned char *skip_coeff;
|
2013-07-02 01:50:58 +02:00
|
|
|
};
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize);
|
|
|
|
void vp9_encode_sby(MACROBLOCK *x, BLOCK_SIZE bsize);
|
2013-05-31 21:30:32 +02:00
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize,
|
2013-08-16 02:03:03 +02:00
|
|
|
TX_SIZE tx_size, void *arg);
|
2012-11-08 20:03:00 +01:00
|
|
|
|
2013-08-27 20:05:08 +02: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 21:51:20 +02:00
|
|
|
|
2013-11-15 21:17:16 +01:00
|
|
|
void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
|
|
|
|
TX_SIZE tx_size, void *arg);
|
|
|
|
|
2013-08-27 20:05:08 +02: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 21:51:20 +02:00
|
|
|
|
2013-11-15 21:17:16 +01:00
|
|
|
int vp9_encode_intra(MACROBLOCK *x, int use_16x16_pred);
|
2014-01-24 21:26:57 +01:00
|
|
|
void vp9_setup_interp_filters(MACROBLOCKD *xd, INTERP_FILTER filter,
|
2013-11-19 23:57:58 +01:00
|
|
|
VP9_COMMON *cm);
|
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_ENCODEMB_H_
|