Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
29d0cc24
Commit
29d0cc24
authored
Aug 10, 2015
by
Aℓex Converse
Committed by
Gerrit Code Review
Aug 10, 2015
Browse files
Merge "fastssim: Add some missing consts"
parents
20d902a3
4ea7f2be
Changes
2
Hide whitespace changes
Inline
Side-by-side
vpx_dsp/fastssim.c
View file @
29d0cc24
...
...
@@ -444,7 +444,8 @@ static double convert_ssim_db(double _ssim, double _weight) {
return
10
*
(
log10
(
_weight
)
-
log10
(
_weight
-
_ssim
));
}
double
vpx_calc_fastssim
(
YV12_BUFFER_CONFIG
*
source
,
YV12_BUFFER_CONFIG
*
dest
,
double
vpx_calc_fastssim
(
const
YV12_BUFFER_CONFIG
*
source
,
const
YV12_BUFFER_CONFIG
*
dest
,
double
*
ssim_y
,
double
*
ssim_u
,
double
*
ssim_v
)
{
double
ssimv
;
vpx_clear_system_state
();
...
...
vpx_dsp/ssim.h
View file @
29d0cc24
...
...
@@ -80,7 +80,8 @@ double vpx_calc_ssimg(const YV12_BUFFER_CONFIG *source,
const
YV12_BUFFER_CONFIG
*
dest
,
double
*
ssim_y
,
double
*
ssim_u
,
double
*
ssim_v
);
double
vpx_calc_fastssim
(
YV12_BUFFER_CONFIG
*
source
,
YV12_BUFFER_CONFIG
*
dest
,
double
vpx_calc_fastssim
(
const
YV12_BUFFER_CONFIG
*
source
,
const
YV12_BUFFER_CONFIG
*
dest
,
double
*
ssim_y
,
double
*
ssim_u
,
double
*
ssim_v
);
double
vpx_psnrhvs
(
const
YV12_BUFFER_CONFIG
*
source
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment