git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdba0f6
)
tests/audiomatch: Add missing return code at the end of main()
author
Michael Niedermayer
<michael@niedermayer.cc>
Tue, 19 Dec 2017 20:05:40 +0000
(21:05 +0100)
committer
Michael Niedermayer
<michael@niedermayer.cc>
Sat, 30 Dec 2017 20:11:32 +0000
(21:11 +0100)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit
65da5c56e661a839e017db4c51c73d6f3d8a8fcb
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tests/audiomatch.c
patch
|
blob
|
history
diff --git
a/tests/audiomatch.c
b/tests/audiomatch.c
index
ca56df0
..
9671789
100644
(file)
--- a/
tests/audiomatch.c
+++ b/
tests/audiomatch.c
@@
-107,4
+107,6
@@
int main(int argc, char **argv){
}
}
printf("presig: %d postsig:%d c:%7.4f lenerr:%d\n", bestpos, datlen - siglen - bestpos, bestc / sigamp, datlen - siglen);
+
+ return 0;
}