1538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber/*
2538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *
4538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *  Use of this source code is governed by a BSD-style license
5538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *  that can be found in the LICENSE file in the root of the source
6538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *  tree. An additional intellectual property rights grant can be found
7538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *  in the file PATENTS.  All contributing project authors may
8538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber *  be found in the AUTHORS file in the root of the source tree.
9538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber */
10538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber
11538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber
12538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber#ifndef __INC_RECONINTRA_MT_H
13538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber#define __INC_RECONINTRA_MT_H
14538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber
15538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber/* reconintra functions used in multi-threaded decoder */
16538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber#if CONFIG_MULTITHREAD
17538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huberextern void vp8mt_build_intra_predictors_mby(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
18538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huberextern void vp8mt_build_intra_predictors_mby_s(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
19538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huberextern void vp8mt_build_intra_predictors_mbuv(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
20538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huberextern void vp8mt_build_intra_predictors_mbuv_s(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
21538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber
22538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huberextern void vp8mt_predict_intra4x4(VP8D_COMP *pbi, MACROBLOCKD *x, int b_mode, unsigned char *predictor, int mb_row, int mb_col, int num);
23538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huberextern void vp8mt_intra_prediction_down_copy(VP8D_COMP *pbi, MACROBLOCKD *x, int mb_row, int mb_col);
24538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber#endif
25538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber
26538f6170b788de7408b06efc6613dc98579aa6a6Andreas Huber#endif
27