summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2017-05-12 17:02:49 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-05-12 17:02:50 +0000
commit9a665826049e421b9d80db7599a0120dc670654d (patch)
tree3a38841c90739462795fa4ccdd0efd8f826559c8
parentac8f58f6ab73fea7948f40eaf608f832964d8a58 (diff)
parentd3aebeee4ec9c2fba2c4359d7a3f6e2632adb94b (diff)
downloadlibvpx-9a665826049e421b9d80db7599a0120dc670654d.tar
libvpx-9a665826049e421b9d80db7599a0120dc670654d.tar.gz
libvpx-9a665826049e421b9d80db7599a0120dc670654d.tar.bz2
libvpx-9a665826049e421b9d80db7599a0120dc670654d.zip
Merge "vp9: Use INTERP_FILTER for filter_type in vp9_rtcd_defs.pl"
-rw-r--r--vp9/common/vp9_rtcd_defs.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index 20013cb9e..baf63e97f 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -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/;
}