summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_rtcd_defs.pl
diff options
context:
space:
mode:
authorLinfeng Zhang <linfengz@google.com>2017-05-03 13:32:08 -0700
committerLinfeng Zhang <linfengz@google.com>2017-05-03 13:59:16 -0700
commitd5de63d2be0e8547358343c6e123eeb43f3433d9 (patch)
tree055ca91d61c1de401d67f0748a2ce434755521ec /vp9/common/vp9_rtcd_defs.pl
parent081b39f2b765f83406ac41a9ad8c8d6830e1707a (diff)
downloadlibvpx-d5de63d2be0e8547358343c6e123eeb43f3433d9.tar
libvpx-d5de63d2be0e8547358343c6e123eeb43f3433d9.tar.gz
libvpx-d5de63d2be0e8547358343c6e123eeb43f3433d9.tar.bz2
libvpx-d5de63d2be0e8547358343c6e123eeb43f3433d9.zip
Update highbd idct functions arguments to use uint16_t dst
BUG=webm:1388 Change-Id: I3581d80d0389b99166e70987d38aba2db6c469d5
Diffstat (limited to 'vp9/common/vp9_rtcd_defs.pl')
-rw-r--r--vp9/common/vp9_rtcd_defs.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp9/common/vp9_rtcd_defs.pl b/vp9/common/vp9_rtcd_defs.pl
index da449e254..ced0c22cb 100644
--- a/vp9/common/vp9_rtcd_defs.pl
+++ b/vp9/common/vp9_rtcd_defs.pl
@@ -101,11 +101,11 @@ if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") {
#
# Note as optimized versions of these functions are added we need to add a check to ensure
# that when CONFIG_EMULATE_HARDWARE is on, it defaults to the C versions only.
- add_proto qw/void vp9_highbd_iht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int stride, int tx_type, int bd";
+ add_proto qw/void vp9_highbd_iht4x4_16_add/, "const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd";
- add_proto qw/void vp9_highbd_iht8x8_64_add/, "const tran_low_t *input, uint8_t *dest, int stride, int tx_type, int bd";
+ add_proto qw/void vp9_highbd_iht8x8_64_add/, "const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd";
- add_proto qw/void vp9_highbd_iht16x16_256_add/, "const tran_low_t *input, uint8_t *output, int pitch, int tx_type, int bd";
+ add_proto qw/void vp9_highbd_iht16x16_256_add/, "const tran_low_t *input, uint16_t *output, int pitch, int tx_type, int bd";
}
#