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 VPXSCALE_H michael@0: #define VPXSCALE_H michael@0: michael@0: #include "vpx_scale/yv12config.h" michael@0: michael@0: extern void vpx_scale_frame(YV12_BUFFER_CONFIG *src, michael@0: YV12_BUFFER_CONFIG *dst, michael@0: unsigned char *temp_area, michael@0: unsigned char temp_height, michael@0: unsigned int hscale, michael@0: unsigned int hratio, michael@0: unsigned int vscale, michael@0: unsigned int vratio, michael@0: unsigned int interlaced); michael@0: michael@0: #endif