OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #ifndef VP9_COMMON_VP9_RECONINTRA_H_ |
| 12 #define VP9_COMMON_VP9_RECONINTRA_H_ |
| 13 |
| 14 #include "vp9/common/vp9_blockd.h" |
| 15 |
| 16 extern void vp9_recon_intra_mbuv(MACROBLOCKD *xd); |
| 17 extern B_PREDICTION_MODE vp9_find_dominant_direction(unsigned char *ptr, |
| 18 int stride, int n); |
| 19 extern B_PREDICTION_MODE vp9_find_bpred_context(BLOCKD *x); |
| 20 #if CONFIG_COMP_INTERINTRA_PRED |
| 21 extern void vp9_build_interintra_16x16_predictors_mb(MACROBLOCKD *xd, |
| 22 unsigned char *ypred, |
| 23 unsigned char *upred, |
| 24 unsigned char *vpred, |
| 25 int ystride, |
| 26 int uvstride); |
| 27 extern void vp9_build_interintra_16x16_predictors_mby(MACROBLOCKD *xd, |
| 28 unsigned char *ypred, |
| 29 int ystride); |
| 30 extern void vp9_build_interintra_16x16_predictors_mbuv(MACROBLOCKD *xd, |
| 31 unsigned char *upred, |
| 32 unsigned char *vpred, |
| 33 int uvstride); |
| 34 #if CONFIG_SUPERBLOCKS |
| 35 extern void vp9_build_interintra_32x32_predictors_sb(MACROBLOCKD *xd, |
| 36 unsigned char *ypred, |
| 37 unsigned char *upred, |
| 38 unsigned char *vpred, |
| 39 int ystride, |
| 40 int uvstride); |
| 41 #endif |
| 42 #endif |
| 43 |
| 44 #endif // __INC_RECONINTRA_H |
OLD | NEW |