Initial WebM release
[platform/upstream/libvpx.git] / vpx_scale / yv12extend.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 YV12_EXTEND_H
12 #define YV12_EXTEND_H
13
14 #include "vpx_scale/yv12config.h"
15
16 #ifdef __cplusplus
17 extern "C"
18 {
19 #endif
20
21     void vp8_yv12_extend_frame_borders(YV12_BUFFER_CONFIG *ybf);
22
23     /* Copy Y,U,V buffer data from src to dst, filling border of dst as well. */
24
25     void vp8_yv12_copy_frame(YV12_BUFFER_CONFIG *src_ybc, YV12_BUFFER_CONFIG *dst_ybc);
26     void vp8_yv12_copy_frame_yonly(YV12_BUFFER_CONFIG *src_ybc, YV12_BUFFER_CONFIG *dst_ybc);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif