blob: f6cfe1322c7cc1c712aaf68d9c3a1ae6398801da [file] [log] [blame]
Johannaecbba62017-12-15 09:03:23 -08001##
2## Copyright (c) 2017, Alliance for Open Media. All rights reserved
3##
4## This source code is subject to the terms of the BSD 2 Clause License and
5## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6## was not distributed with this source code in the LICENSE file, you can
7## obtain it at www.aomedia.org/license/software. If the Alliance for Open
8## Media Patent License 1.0 was not distributed with this source code in the
9## PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10##
Yaowu Xuf883b422016-08-30 14:01:10 -070011sub aom_scale_forward_decls() {
12print <<EOF
13struct yv12_buffer_config;
14EOF
15}
16forward_decls qw/aom_scale_forward_decls/;
17
18# Scaler functions
19if (aom_config("CONFIG_SPATIAL_RESAMPLING") eq "yes") {
James Zern1512fa92017-09-26 20:53:11 -070020 add_proto qw/void aom_horizontal_line_5_4_scale/, "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width";
21 add_proto qw/void aom_vertical_band_5_4_scale/, "unsigned char *source, int src_pitch, unsigned char *dest, int dest_pitch, unsigned int dest_width";
22 add_proto qw/void aom_horizontal_line_5_3_scale/, "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width";
23 add_proto qw/void aom_vertical_band_5_3_scale/, "unsigned char *source, int src_pitch, unsigned char *dest, int dest_pitch, unsigned int dest_width";
24 add_proto qw/void aom_horizontal_line_2_1_scale/, "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width";
25 add_proto qw/void aom_vertical_band_2_1_scale/, "unsigned char *source, int src_pitch, unsigned char *dest, int dest_pitch, unsigned int dest_width";
26 add_proto qw/void aom_vertical_band_2_1_scale_i/, "unsigned char *source, int src_pitch, unsigned char *dest, int dest_pitch, unsigned int dest_width";
Yaowu Xuf883b422016-08-30 14:01:10 -070027}
28
Imdad Sardharwallaaf8e2642018-01-19 11:46:34 +000029add_proto qw/void aom_yv12_extend_frame_borders/, "struct yv12_buffer_config *ybf, const int num_planes";
Yaowu Xuf883b422016-08-30 14:01:10 -070030
Imdad Sardharwallaaf8e2642018-01-19 11:46:34 +000031add_proto qw/void aom_yv12_copy_frame/, "const struct yv12_buffer_config *src_bc, struct yv12_buffer_config *dst_bc, const int num_planes";
Yaowu Xuf883b422016-08-30 14:01:10 -070032
33add_proto qw/void aom_yv12_copy_y/, "const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc";
34
Debargha Mukherjeea43a2d92017-01-03 15:14:57 -080035add_proto qw/void aom_yv12_copy_u/, "const struct yv12_buffer_config *src_bc, struct yv12_buffer_config *dst_bc";
36
37add_proto qw/void aom_yv12_copy_v/, "const struct yv12_buffer_config *src_bc, struct yv12_buffer_config *dst_bc";
38
Yaowu Xuf883b422016-08-30 14:01:10 -070039if (aom_config("CONFIG_AV1") eq "yes") {
Imdad Sardharwallaaf8e2642018-01-19 11:46:34 +000040 add_proto qw/void aom_extend_frame_borders/, "struct yv12_buffer_config *ybf, const int num_planes";
James Zern1512fa92017-09-26 20:53:11 -070041 specialize qw/aom_extend_frame_borders dspr2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070042
Imdad Sardharwallaaf8e2642018-01-19 11:46:34 +000043 add_proto qw/void aom_extend_frame_inner_borders/, "struct yv12_buffer_config *ybf, const int num_planes";
James Zern1512fa92017-09-26 20:53:11 -070044 specialize qw/aom_extend_frame_inner_borders dspr2/;
Yaowu Xuf883b422016-08-30 14:01:10 -070045
James Zern1512fa92017-09-26 20:53:11 -070046 add_proto qw/void aom_extend_frame_borders_y/, "struct yv12_buffer_config *ybf";
Yaowu Xuf883b422016-08-30 14:01:10 -070047}
481;