vp9: Use INTERP_FILTER for filter_type in vp9_rtcd_defs.pl

Change-Id: I259d152c62864b365490368051f3c3b7d7f2f1c5
This commit is contained in:
Marco 2017-05-10 12:04:02 -07:00
parent db2fad7516
commit d3aebeee4e

View File

@ -7,6 +7,7 @@ print <<EOF
#include "vpx/vpx_integer.h"
#include "vp9/common/vp9_common.h"
#include "vp9/common/vp9_enums.h"
#include "vp9/common/vp9_filter.h"
struct macroblockd;
@ -225,7 +226,7 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
#
# frame based scale
#
add_proto qw/void vp9_scale_and_extend_frame/, "const struct yv12_buffer_config *src, struct yv12_buffer_config *dst, uint8_t filter_type, int phase_scaler";
add_proto qw/void vp9_scale_and_extend_frame/, "const struct yv12_buffer_config *src, struct yv12_buffer_config *dst, INTERP_FILTER filter_type, int phase_scaler";
specialize qw/vp9_scale_and_extend_frame ssse3/;
}