michael@0: /* michael@0: * Copyright (c) 2010 The WebM project authors. All Rights Reserved. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license michael@0: * that can be found in the LICENSE file in the root of the source michael@0: * tree. An additional intellectual property rights grant can be found michael@0: * in the file PATENTS. All contributing project authors may michael@0: * be found in the AUTHORS file in the root of the source tree. michael@0: */ michael@0: michael@0: michael@0: #ifndef __INC_RECONINTER_H michael@0: #define __INC_RECONINTER_H michael@0: michael@0: extern void vp8_build_inter_predictors_mb(MACROBLOCKD *x); michael@0: extern void vp8_build_inter16x16_predictors_mb(MACROBLOCKD *x, michael@0: unsigned char *dst_y, michael@0: unsigned char *dst_u, michael@0: unsigned char *dst_v, michael@0: int dst_ystride, michael@0: int dst_uvstride); michael@0: michael@0: michael@0: extern void vp8_build_inter16x16_predictors_mby(MACROBLOCKD *x, michael@0: unsigned char *dst_y, michael@0: int dst_ystride); michael@0: extern void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, michael@0: unsigned char *base_pre, michael@0: int pre_stride, michael@0: vp8_subpix_fn_t sppf); michael@0: michael@0: extern void vp8_build_inter16x16_predictors_mbuv(MACROBLOCKD *x); michael@0: extern void vp8_build_inter4x4_predictors_mbuv(MACROBLOCKD *x); michael@0: michael@0: #endif