Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
michael@0 | 3 | * |
michael@0 | 4 | * Use of this source code is governed by a BSD-style license |
michael@0 | 5 | * that can be found in the LICENSE file in the root of the source |
michael@0 | 6 | * tree. An additional intellectual property rights grant can be found |
michael@0 | 7 | * in the file PATENTS. All contributing project authors may |
michael@0 | 8 | * be found in the AUTHORS file in the root of the source tree. |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | #ifndef VP9_ENCODER_VP9_ENCODEMB_H_ |
michael@0 | 12 | #define VP9_ENCODER_VP9_ENCODEMB_H_ |
michael@0 | 13 | |
michael@0 | 14 | #include "./vpx_config.h" |
michael@0 | 15 | #include "vp9/encoder/vp9_block.h" |
michael@0 | 16 | #include "vp9/encoder/vp9_onyx_int.h" |
michael@0 | 17 | #include "vp9/common/vp9_onyxc_int.h" |
michael@0 | 18 | |
michael@0 | 19 | typedef struct { |
michael@0 | 20 | MB_PREDICTION_MODE mode; |
michael@0 | 21 | MV_REFERENCE_FRAME ref_frame; |
michael@0 | 22 | MV_REFERENCE_FRAME second_ref_frame; |
michael@0 | 23 | } MODE_DEFINITION; |
michael@0 | 24 | |
michael@0 | 25 | typedef struct { |
michael@0 | 26 | MV_REFERENCE_FRAME ref_frame; |
michael@0 | 27 | MV_REFERENCE_FRAME second_ref_frame; |
michael@0 | 28 | } REF_DEFINITION; |
michael@0 | 29 | |
michael@0 | 30 | struct optimize_ctx { |
michael@0 | 31 | ENTROPY_CONTEXT ta[MAX_MB_PLANE][16]; |
michael@0 | 32 | ENTROPY_CONTEXT tl[MAX_MB_PLANE][16]; |
michael@0 | 33 | }; |
michael@0 | 34 | |
michael@0 | 35 | struct encode_b_args { |
michael@0 | 36 | MACROBLOCK *x; |
michael@0 | 37 | struct optimize_ctx *ctx; |
michael@0 | 38 | }; |
michael@0 | 39 | |
michael@0 | 40 | void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 41 | void vp9_encode_sby(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 42 | |
michael@0 | 43 | void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize, |
michael@0 | 44 | TX_SIZE tx_size, void *arg); |
michael@0 | 45 | |
michael@0 | 46 | void vp9_subtract_sby(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 47 | void vp9_subtract_sbuv(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 48 | void vp9_subtract_sb(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 49 | |
michael@0 | 50 | void vp9_encode_intra_block_y(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 51 | void vp9_encode_intra_block_uv(MACROBLOCK *x, BLOCK_SIZE bsize); |
michael@0 | 52 | |
michael@0 | 53 | |
michael@0 | 54 | #endif // VP9_ENCODER_VP9_ENCODEMB_H_ |