2 * Copyright (c) 2014 The WebM project authors. All Rights Reserved.
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.
11 #ifndef VP10_ENCODER_RESIZE_H_
12 #define VP10_ENCODER_RESIZE_H_
15 #include "vpx/vpx_integer.h"
21 void vp10_resize_plane(const uint8_t *const input,
29 void vp10_resize_frame420(const uint8_t *const y,
31 const uint8_t *const u,
32 const uint8_t *const v,
43 void vp10_resize_frame422(const uint8_t *const y,
45 const uint8_t *const u,
46 const uint8_t *const v,
57 void vp10_resize_frame444(const uint8_t *const y,
59 const uint8_t *const u,
60 const uint8_t *const v,
72 #if CONFIG_VP9_HIGHBITDEPTH
73 void vp10_highbd_resize_plane(const uint8_t *const input,
82 void vp10_highbd_resize_frame420(const uint8_t *const y,
84 const uint8_t *const u,
85 const uint8_t *const v,
97 void vp10_highbd_resize_frame422(const uint8_t *const y,
99 const uint8_t *const u,
100 const uint8_t *const v,
112 void vp10_highbd_resize_frame444(const uint8_t *const y,
114 const uint8_t *const u,
115 const uint8_t *const v,
127 #endif // CONFIG_VP9_HIGHBITDEPTH
133 #endif // VP10_ENCODER_RESIZE_H_