summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_ssim.h
diff options
context:
space:
mode:
authorDeb Mukherjee <debargha@google.com>2014-09-30 21:56:33 -0700
committerDeb Mukherjee <debargha@google.com>2014-10-01 14:18:11 -0700
commita160d72522fd8572943966e96b65dd232fe048ea (patch)
tree4a57c191c40619d16bea6d14cbde1f9e068d1d27 /vp9/encoder/vp9_ssim.h
parent10c7876a8e5a638c89eb06913e7c44a756e6d35d (diff)
downloadlibvpx-a160d72522fd8572943966e96b65dd232fe048ea.tar
libvpx-a160d72522fd8572943966e96b65dd232fe048ea.tar.gz
libvpx-a160d72522fd8572943966e96b65dd232fe048ea.tar.bz2
libvpx-a160d72522fd8572943966e96b65dd232fe048ea.zip
High-bitdepth bugfixes
Miscellaneous bug-fixes for high bitdepth functionality. With this patch, high bit-depth profiles become mostly functional, except for an intermittent assert failure issue that is being tracked. Change-Id: I6a7fcbdcf1e5b09842e88535f8442d2e1230748c
Diffstat (limited to 'vp9/encoder/vp9_ssim.h')
-rw-r--r--vp9/encoder/vp9_ssim.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/vp9/encoder/vp9_ssim.h b/vp9/encoder/vp9_ssim.h
index 28baa4b59..e75623b25 100644
--- a/vp9/encoder/vp9_ssim.h
+++ b/vp9/encoder/vp9_ssim.h
@@ -27,16 +27,14 @@ double vp9_calc_ssimg(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest,
double vp9_highbd_calc_ssim(YV12_BUFFER_CONFIG *source,
YV12_BUFFER_CONFIG *dest,
double *weight,
- unsigned int bd,
- unsigned int shift);
+ unsigned int bd);
double vp9_highbd_calc_ssimg(YV12_BUFFER_CONFIG *source,
YV12_BUFFER_CONFIG *dest,
double *ssim_y,
double *ssim_u,
double *ssim_v,
- unsigned int bps,
- unsigned int shift);
+ unsigned int bd);
#endif // CONFIG_VP9_HIGHBITDEPTH
#ifdef __cplusplus