summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_rtcd_defs.pl
diff options
context:
space:
mode:
authorChi Yo Tsai <chiyotsai@google.com>2019-01-18 00:34:37 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-18 00:34:37 +0000
commit51de46479e54666dbc12821652d808c4f4ca953c (patch)
tree525259ea4a6ff55915d72e64524581a021e376cc /vp9/common/vp9_rtcd_defs.pl
parent9ecc0e779a29281e5698451bfd1b3ebe8f053bfd (diff)
parentda5e2463fac0ca5aff84f7eae181584aa491f1b7 (diff)
downloadlibvpx-51de46479e54666dbc12821652d808c4f4ca953c.tar
libvpx-51de46479e54666dbc12821652d808c4f4ca953c.tar.gz
libvpx-51de46479e54666dbc12821652d808c4f4ca953c.tar.bz2
libvpx-51de46479e54666dbc12821652d808c4f4ca953c.zip
Merge "Add unit test for temporal filter on VP9"
Diffstat (limited to 'vp9/common/vp9_rtcd_defs.pl')
-rw-r--r--vp9/common/vp9_rtcd_defs.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index 8bb68cfdf..3102b08a7 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -186,6 +186,8 @@ specialize qw/vp9_diamond_search_sad avx/;
if (vpx_config("CONFIG_REALTIME_ONLY") ne "yes") {
add_proto qw/void vp9_temporal_filter_apply/, "const uint8_t *frame1, unsigned int stride, const uint8_t *frame2, unsigned int block_width, unsigned int block_height, int strength, int filter_weight, uint32_t *accumulator, uint16_t *count";
specialize qw/vp9_temporal_filter_apply sse4_1/;
+
+add_proto qw/void vp9_apply_temporal_filter/, "const uint8_t *y_src, int y_src_stride, const uint8_t *y_pre, int y_pre_stride, const uint8_t *u_src, const uint8_t *v_src, int uv_src_stride, const uint8_t *u_pre, const uint8_t *v_pre, int uv_pre_stride, unsigned int block_width, unsigned int block_height, int ss_x, int ss_y, int strength, const int *const blk_fw, int use_32x32, uint32_t *y_accumulator, uint16_t *y_count, uint32_t *u_accumulator, uint16_t *u_count, uint32_t *v_accumulator, uint16_t *v_count";
}
if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {