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 
12 #ifndef VP8_COMMON_RECONINTRA_H_
13 #define VP8_COMMON_RECONINTRA_H_
14 
15 #include "vp8/common/blockd.h"
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 void vp8_build_intra_predictors_mby_s(MACROBLOCKD *x,
22                                       unsigned char *yabove_row,
23                                       unsigned char *yleft,
24                                       int left_stride,
25                                       unsigned char *ypred_ptr,
26                                       int y_stride);
27 
28 void vp8_build_intra_predictors_mbuv_s(MACROBLOCKD *x,
29                                        unsigned char * uabove_row,
30                                        unsigned char * vabove_row,
31                                        unsigned char * uleft,
32                                        unsigned char * vleft,
33                                        int left_stride,
34                                        unsigned char * upred_ptr,
35                                        unsigned char * vpred_ptr,
36                                        int pred_stride);
37 
38 void vp8_init_intra_predictors(void);
39 
40 #ifdef __cplusplus
41 }  // extern "C"
42 #endif
43 
44 #endif  // VP8_COMMON_RECONINTRA_H_
45