Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
be1ae3fe
Commit
be1ae3fe
authored
Nov 27, 2017
by
Jingning Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add PSNR-Cb and Cr to opsnr.stt file
Change-Id: I94200d74719c8fb646d628d14a7843ec80c1b7c4
parent
f013205a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
av1/encoder/encoder.c
av1/encoder/encoder.c
+9
-5
No files found.
av1/encoder/encoder.c
View file @
be1ae3fe
...
...
@@ -3214,18 +3214,22 @@ void av1_remove_compressor(AV1_COMP *cpi) {
const
double
total_ssim
=
100
*
pow
(
cpi
->
summed_quality
/
cpi
->
summed_weights
,
8
.
0
);
snprintf
(
headings
,
sizeof
(
headings
),
"Bitrate
\t
AVGPsnr
\t
GLBPsnr
\t
AVPsnr
P
\t
GLPsnrP
\t
"
"Bitrate
\t
AVGPsnr
\t
GLBPsnr
\t
AVPsnr
Y
\t
GLPsnrP
\t
"
"AOMSSIM
\t
VPSSIMP
\t
FASTSIM
\t
PSNRHVS
\t
"
"WstPsnr
\t
WstSsim
\t
WstFast
\t
WstHVS"
);
"WstPsnr
\t
WstSsim
\t
WstFast
\t
WstHVS
\t
"
"APsnrCb
\t
APsnrCr"
);
snprintf
(
results
,
sizeof
(
results
),
"%7.2f
\t
%7.3f
\t
%7.3f
\t
%7.3f
\t
%7.3f
\t
"
"%7.3f
\t
%7.3f
\t
%7.3f
\t
%7.3f
\t
"
"%7.3f
\t
%7.3f
\t
%7.3f
\t
%7.3f"
,
"%7.3f
\t
%7.3f
\t
%7.3f
\t
%7.3f
\t
"
"%7.3f
\t
%7.3f"
,
dr
,
cpi
->
psnr
.
stat
[
ALL
]
/
cpi
->
count
,
total_psnr
,
cpi
->
psnr
.
stat
[
ALL
]
/
cpi
->
count
,
total_psnr
,
total_ssim
,
cpi
->
psnr
.
stat
[
Y
]
/
cpi
->
count
,
total_psnr
,
total_ssim
,
total_ssim
,
cpi
->
fastssim
.
stat
[
ALL
]
/
cpi
->
count
,
cpi
->
psnrhvs
.
stat
[
ALL
]
/
cpi
->
count
,
cpi
->
psnr
.
worst
,
cpi
->
worst_ssim
,
cpi
->
fastssim
.
worst
,
cpi
->
psnrhvs
.
worst
);
cpi
->
worst_ssim
,
cpi
->
fastssim
.
worst
,
cpi
->
psnrhvs
.
worst
,
cpi
->
psnr
.
stat
[
U
]
/
cpi
->
count
,
cpi
->
psnr
.
stat
[
V
]
/
cpi
->
count
);
if
(
cpi
->
b_calculate_blockiness
)
{
SNPRINT
(
headings
,
"
\t
Block
\t
WstBlck"
);
...
...
Write
Preview
Markdown
is supported
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