Initial WebM release
[platform/upstream/libvpx.git] / vp8 / common / reconinter.h
1 /*
2  *  Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license and patent
5  *  grant that can be found in the LICENSE file in the root of the source
6  *  tree. All contributing project authors may be found in the AUTHORS
7  *  file in the root of the source tree.
8  */
9
10
11 #ifndef __INC_RECONINTER_H
12 #define __INC_RECONINTER_H
13
14 extern void vp8_build_inter_predictors_mb(MACROBLOCKD *x);
15 extern void vp8_build_inter_predictors_mb_s(MACROBLOCKD *x);
16
17 extern void vp8_build_inter_predictors_mby(MACROBLOCKD *x);
18 extern void vp8_build_uvmvs(MACROBLOCKD *x, int fullpixel);
19 extern void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, vp8_subpix_fn_t sppf);
20 extern void vp8_build_inter_predictors_mbuv(MACROBLOCKD *x);
21
22 #endif