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
a56fba50
Commit
a56fba50
authored
Mar 18, 2012
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fate: make compare() function compatible with POSIX bc
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
f36d5c14
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
fate-run.sh
tests/fate-run.sh
+1
-2
No files found.
tests/fate-run.sh
View file @
a56fba50
...
@@ -31,8 +31,7 @@ repfile="${outdir}/${test}.rep"
...
@@ -31,8 +31,7 @@ repfile="${outdir}/${test}.rep"
# $1=value1, $2=value2, $3=threshold
# $1=value1, $2=value2, $3=threshold
# prints 0 if absolute difference between value1 and value2 is <= threshold
# prints 0 if absolute difference between value1 and value2 is <= threshold
compare
(){
compare
(){
v
=
$(
echo
"scale=2; if (
$1
>=
$2
) {
$1
-
$2
} else {
$2
-
$1
}"
| bc
)
echo
"scale=2; v =
$1
-
$2
; if (v < 0) v = -v; if (v >
$3
) r = 1; r"
| bc
echo
"if (
$v
<=
$3
) { 0 } else { 1 }"
| bc
}
}
do_tiny_psnr
(){
do_tiny_psnr
(){
...
...
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