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
31214970
Commit
31214970
authored
Oct 11, 2012
by
Ronald S. Bultje
Browse files
Add encoder/decoder mismatch information to internal stats file.
Change-Id: Ibb6ba26e8718d3af27553ca59443a8c6aec7749d
parent
f39b0f19
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
31214970
...
...
@@ -2103,12 +2103,26 @@ int main(int argc, const char **argv_) {
}
if
(
test_decode
)
{
#if CONFIG_INTERNAL_STATS
FILE
*
f
=
fopen
(
"opsnr.stt"
,
"a"
);
#endif
fprintf
(
stderr
,
"
\n
"
);
if
(
enc_dec_match
)
if
(
enc_dec_match
)
{
fprintf
(
stderr
,
"No mismatch detected in recon buffers
\n
"
);
else
#if CONFIG_INTERNAL_STATS
fprintf
(
f
,
"No mismatch detected in recon buffers
\n
"
);
#endif
}
else
{
fprintf
(
stderr
,
"First mismatch occurred in frame %d
\n
"
,
first_bad_frame
);
#if CONFIG_INTERNAL_STATS
fprintf
(
f
,
"First mismatch occurred in frame %d
\n
"
,
first_bad_frame
);
#endif
}
#if CONFIG_INTERNAL_STATS
fclose
(
f
);
#endif
}
if
(
show_q_hist_buckets
)
...
...
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