2014-01-10 20:51:20 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifndef VP9_ENCODER_VP9_PICKMODE_H_
|
|
|
|
#define VP9_ENCODER_VP9_PICKMODE_H_
|
|
|
|
|
2014-04-19 03:27:47 +02:00
|
|
|
#include "vp9/encoder/vp9_encoder.h"
|
2014-01-10 20:51:20 +01:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-11-20 20:28:00 +01:00
|
|
|
void vp9_pick_intra_mode(VP9_COMP *cpi, MACROBLOCK *x, RD_COST *rd_cost,
|
|
|
|
BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx);
|
|
|
|
|
2016-07-27 05:43:23 +02:00
|
|
|
void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, TileDataEnc *tile_data,
|
2014-10-22 01:31:37 +02:00
|
|
|
int mi_row, int mi_col, RD_COST *rd_cost,
|
2016-07-27 05:43:23 +02:00
|
|
|
BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx);
|
2014-01-18 21:16:11 +01:00
|
|
|
|
2016-07-27 05:43:23 +02:00
|
|
|
void vp9_pick_inter_mode_sub8x8(VP9_COMP *cpi, MACROBLOCK *x, int mi_row,
|
|
|
|
int mi_col, RD_COST *rd_cost, BLOCK_SIZE bsize,
|
2014-12-22 22:38:34 +01:00
|
|
|
PICK_MODE_CONTEXT *ctx);
|
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // VP9_ENCODER_VP9_PICKMODE_H_
|