Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
08809e30
Commit
08809e30
authored
Apr 26, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swr-test: improve output
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
5347b9da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
swresample_test.c
libswresample/swresample_test.c
+4
-6
No files found.
libswresample/swresample_test.c
View file @
08809e30
...
...
@@ -266,10 +266,9 @@ int main(int argc, char **argv){
sum_ab
+=
a
*
b
;
maxdiff
=
FFMAX
(
maxdiff
,
FFABS
(
a
-
b
));
}
x
=
sum_ab
/
sum_bb
;
sse
=
sum_aa
+
sum_bb
*
x
*
x
-
2
*
x
*
sum_ab
;
sse
=
sum_aa
+
sum_bb
-
2
*
sum_ab
;
fprintf
(
stderr
,
"[
%f %f %f] len:%5d
\n
"
,
sqrt
(
sse
/
out_count
),
x
,
maxdiff
,
out_count
);
fprintf
(
stderr
,
"[
e:%f c:%f max:%f] len:%5d
\n
"
,
sqrt
(
sse
/
out_count
),
sum_ab
/
(
sqrt
(
sum_aa
*
sum_bb
))
,
maxdiff
,
out_count
);
}
flush_i
++
;
...
...
@@ -296,10 +295,9 @@ int main(int argc, char **argv){
sum_ab
+=
a
*
b
;
maxdiff
=
FFMAX
(
maxdiff
,
FFABS
(
a
-
b
));
}
x
=
sum_ab
/
sum_bb
;
sse
=
sum_aa
+
sum_bb
*
x
*
x
-
2
*
x
*
sum_ab
;
sse
=
sum_aa
+
sum_bb
-
2
*
sum_ab
;
fprintf
(
stderr
,
"[
%f %f %f] len:%5d F:%3d
\n
"
,
sqrt
(
sse
/
flush_count
),
x
,
maxdiff
,
flush_count
,
flush_i
);
fprintf
(
stderr
,
"[
e:%f c:%f max:%f] len:%5d F:%3d
\n
"
,
sqrt
(
sse
/
flush_count
),
sum_ab
/
(
sqrt
(
sum_aa
*
sum_bb
))
,
maxdiff
,
flush_count
,
flush_i
);
}
}
...
...
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