2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00: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 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
2012-11-30 04:36:10 +04:00
|
|
|
#ifndef VP9_COMMON_VP9_RECONINTRA_H_
|
|
|
|
#define VP9_COMMON_VP9_RECONINTRA_H_
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
#include "vpx/vpx_integer.h"
|
2012-11-28 22:41:40 +04:00
|
|
|
#include "vp9/common/vp9_blockd.h"
|
2012-05-15 03:21:01 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-11-01 01:34:21 +04:00
|
|
|
void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in,
|
2014-04-12 02:26:24 +04:00
|
|
|
TX_SIZE tx_size, PREDICTION_MODE mode,
|
2013-11-01 01:34:21 +04:00
|
|
|
const uint8_t *ref, int ref_stride,
|
2013-12-13 08:33:06 +04:00
|
|
|
uint8_t *dst, int dst_stride,
|
|
|
|
int aoff, int loff, int plane);
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
#endif // VP9_COMMON_VP9_RECONINTRA_H_
|