This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 298e5f810cc56ce5622522416676de89b3ff8b91 Author: James Almer <[email protected]> AuthorDate: Sat Jun 13 11:37:06 2026 -0300 Commit: James Almer <[email protected]> CommitDate: Tue Jun 16 09:18:24 2026 -0300 tests/audiomatch: don't attempt to print floating point values Instead check that the result is sane Signed-off-by: James Almer <[email protected]> --- tests/audiomatch.c | 8 +++++++- tests/ref/fate/audiomatch-afconvert-16000-mono-he-adts | 2 +- tests/ref/fate/audiomatch-afconvert-16000-mono-he-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-16000-mono-lc-adts | 2 +- tests/ref/fate/audiomatch-afconvert-16000-mono-lc-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-16000-stereo-he-adts | 2 +- tests/ref/fate/audiomatch-afconvert-16000-stereo-he-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-adts | 2 +- tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-adts | 2 +- tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-44100-mono-he-adts | 2 +- tests/ref/fate/audiomatch-afconvert-44100-mono-he-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-44100-mono-lc-adts | 2 +- tests/ref/fate/audiomatch-afconvert-44100-mono-lc-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-44100-stereo-he-adts | 2 +- tests/ref/fate/audiomatch-afconvert-44100-stereo-he-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-adts | 2 +- tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-m4a | 2 +- tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-adts | 2 +- tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-dolby-44100-mono-he-mp4 | 2 +- tests/ref/fate/audiomatch-dolby-44100-mono-lc-mp4 | 2 +- tests/ref/fate/audiomatch-dolby-44100-stereo-he-mp4 | 2 +- tests/ref/fate/audiomatch-dolby-44100-stereo-he2-mp4 | 2 +- tests/ref/fate/audiomatch-dolby-44100-stereo-lc-mp4 | 2 +- tests/ref/fate/audiomatch-faac-16000-mono-lc-adts | 2 +- tests/ref/fate/audiomatch-faac-16000-mono-lc-m4a | 2 +- tests/ref/fate/audiomatch-faac-16000-stereo-lc-adts | 2 +- tests/ref/fate/audiomatch-faac-16000-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-faac-44100-mono-lc-adts | 2 +- tests/ref/fate/audiomatch-faac-44100-mono-lc-m4a | 2 +- tests/ref/fate/audiomatch-faac-44100-stereo-lc-adts | 2 +- tests/ref/fate/audiomatch-faac-44100-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-nero-16000-mono-he-m4a | 2 +- tests/ref/fate/audiomatch-nero-16000-mono-lc-m4a | 2 +- tests/ref/fate/audiomatch-nero-16000-stereo-he-m4a | 2 +- tests/ref/fate/audiomatch-nero-16000-stereo-he2-m4a | 2 +- tests/ref/fate/audiomatch-nero-16000-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-nero-44100-mono-he-m4a | 2 +- tests/ref/fate/audiomatch-nero-44100-mono-lc-m4a | 2 +- tests/ref/fate/audiomatch-nero-44100-stereo-he-m4a | 2 +- tests/ref/fate/audiomatch-nero-44100-stereo-he2-m4a | 2 +- tests/ref/fate/audiomatch-nero-44100-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-quicktime7-44100-stereo-lc-mp4 | 2 +- tests/ref/fate/audiomatch-quicktimeX-44100-stereo-lc-m4a | 2 +- tests/ref/fate/audiomatch-square-aac | 2 +- tests/ref/fate/audiomatch-square-mp3 | 2 +- 48 files changed, 54 insertions(+), 48 deletions(-) diff --git a/tests/audiomatch.c b/tests/audiomatch.c index 56a60bdecf..4cb66a5b26 100644 --- a/tests/audiomatch.c +++ b/tests/audiomatch.c @@ -39,6 +39,7 @@ int main(int argc, char **argv) { int i, pos; int siglen, datlen; int bestpos = 0; + const double eps = 0.161; double bestc = 0; double sigamp = 0; int16_t *signal, *data; @@ -109,8 +110,13 @@ int main(int argc, char **argv) { bestpos = pos; } } - printf("presig: %d postsig:%d c:%7.4f lenerr:%d\n", bestpos, datlen - siglen - bestpos, bestc / sigamp, datlen - siglen); + printf("presig: %d postsig:%d lenerr:%d\n", bestpos, datlen - siglen - bestpos, datlen - siglen); + sigamp = bestc / sigamp; + if (fabs(1.0 - sigamp) > eps) { + printf("c: |1.0 - %.4f| > %.3f\n", sigamp, eps); + goto read_fail; + } free(data); free(signal); return 0; diff --git a/tests/ref/fate/audiomatch-afconvert-16000-mono-he-adts b/tests/ref/fate/audiomatch-afconvert-16000-mono-he-adts index bbbf8ffc72..d0c421a8a6 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-mono-he-adts +++ b/tests/ref/fate/audiomatch-afconvert-16000-mono-he-adts @@ -1 +1 @@ -presig: 2593 postsig:223 c: 0.9835 lenerr:2816 +presig: 2593 postsig:223 lenerr:2816 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-mono-he-m4a b/tests/ref/fate/audiomatch-afconvert-16000-mono-he-m4a index b8fd03942c..3db5757845 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-mono-he-m4a +++ b/tests/ref/fate/audiomatch-afconvert-16000-mono-he-m4a @@ -1 +1 @@ -presig: 1537 postsig:223 c: 0.9835 lenerr:1760 +presig: 1537 postsig:223 lenerr:1760 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-adts b/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-adts index bf6ecf633e..6192b74fe8 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-adts +++ b/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-adts @@ -1 +1 @@ -presig: 2112 postsig:704 c: 0.9842 lenerr:2816 +presig: 2112 postsig:704 lenerr:2816 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-m4a b/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-m4a index 75cd54ed03..a989f60fb1 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-m4a +++ b/tests/ref/fate/audiomatch-afconvert-16000-mono-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:704 c: 0.9842 lenerr:704 +presig: 0 postsig:704 lenerr:704 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-adts b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-adts index 2e29599cf1..e1616f33e9 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-adts +++ b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-adts @@ -1 +1 @@ -presig: 5186 postsig:446 c: 0.9895 lenerr:5632 +presig: 5186 postsig:446 lenerr:5632 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-m4a b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-m4a index b0381bfa0f..63dd0119b3 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-m4a +++ b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he-m4a @@ -1 +1 @@ -presig: 3074 postsig:446 c: 0.9895 lenerr:3520 +presig: 3074 postsig:446 lenerr:3520 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-adts b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-adts index 32b2627946..e1616f33e9 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-adts +++ b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-adts @@ -1 +1 @@ -presig: 5186 postsig:446 c: 0.9839 lenerr:5632 +presig: 5186 postsig:446 lenerr:5632 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-m4a b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-m4a index 0b16a523f7..63dd0119b3 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-m4a +++ b/tests/ref/fate/audiomatch-afconvert-16000-stereo-he2-m4a @@ -1 +1 @@ -presig: 3074 postsig:446 c: 0.9839 lenerr:3520 +presig: 3074 postsig:446 lenerr:3520 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-adts b/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-adts index 360049f016..99f2859b17 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-adts +++ b/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-adts @@ -1 +1 @@ -presig: 4224 postsig:1408 c: 0.9985 lenerr:5632 +presig: 4224 postsig:1408 lenerr:5632 diff --git a/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-m4a b/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-m4a index f86ccb4cc6..c9656e0ae9 100644 --- a/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-afconvert-16000-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:1408 c: 0.9985 lenerr:1408 +presig: 0 postsig:1408 lenerr:1408 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-mono-he-adts b/tests/ref/fate/audiomatch-afconvert-44100-mono-he-adts index f3394839a4..401a99dd80 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-mono-he-adts +++ b/tests/ref/fate/audiomatch-afconvert-44100-mono-he-adts @@ -1 +1 @@ -presig: 5186 postsig:822 c: 0.9911 lenerr:6008 +presig: 5186 postsig:822 lenerr:6008 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-mono-he-m4a b/tests/ref/fate/audiomatch-afconvert-44100-mono-he-m4a index 34921ed8b5..8900859b42 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-mono-he-m4a +++ b/tests/ref/fate/audiomatch-afconvert-44100-mono-he-m4a @@ -1 +1 @@ -presig: 3074 postsig:822 c: 0.9911 lenerr:3896 +presig: 3074 postsig:822 lenerr:3896 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-adts b/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-adts index 523cb1f5ce..497fb39cce 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-adts +++ b/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-adts @@ -1 +1 @@ -presig: 2112 postsig:824 c: 0.9995 lenerr:2936 +presig: 2112 postsig:824 lenerr:2936 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-m4a b/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-m4a index 9db2d81085..49c7df00a5 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-m4a +++ b/tests/ref/fate/audiomatch-afconvert-44100-mono-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:824 c: 0.9995 lenerr:824 +presig: 0 postsig:824 lenerr:824 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-adts b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-adts index b8fd805b87..5a552e2f84 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-adts +++ b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-adts @@ -1 +1 @@ -presig: 10372 postsig:1644 c: 0.9890 lenerr:12016 +presig: 10372 postsig:1644 lenerr:12016 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-m4a b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-m4a index 3bab086939..3f942ce9da 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-m4a +++ b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he-m4a @@ -1 +1 @@ -presig: 6148 postsig:1644 c: 0.9890 lenerr:7792 +presig: 6148 postsig:1644 lenerr:7792 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-adts b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-adts index 7e72d37768..5a552e2f84 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-adts +++ b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-adts @@ -1 +1 @@ -presig: 10372 postsig:1644 c: 0.9909 lenerr:12016 +presig: 10372 postsig:1644 lenerr:12016 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-m4a b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-m4a index 27341f54e2..3f942ce9da 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-m4a +++ b/tests/ref/fate/audiomatch-afconvert-44100-stereo-he2-m4a @@ -1 +1 @@ -presig: 6148 postsig:1644 c: 0.9909 lenerr:7792 +presig: 6148 postsig:1644 lenerr:7792 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-adts b/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-adts index bca902ba95..db6b4e08c4 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-adts +++ b/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-adts @@ -1 +1 @@ -presig: 4224 postsig:1648 c: 1.0006 lenerr:5872 +presig: 4224 postsig:1648 lenerr:5872 diff --git a/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-m4a b/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-m4a index 51f23c78cd..14c8194797 100644 --- a/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-afconvert-44100-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:1648 c: 1.0006 lenerr:1648 +presig: 0 postsig:1648 lenerr:1648 diff --git a/tests/ref/fate/audiomatch-dolby-44100-mono-he-mp4 b/tests/ref/fate/audiomatch-dolby-44100-mono-he-mp4 index 698c196b88..ac8cfdc578 100644 --- a/tests/ref/fate/audiomatch-dolby-44100-mono-he-mp4 +++ b/tests/ref/fate/audiomatch-dolby-44100-mono-he-mp4 @@ -1 +1 @@ -presig: 5569 postsig:-1609 c: 0.9702 lenerr:3960 +presig: 5569 postsig:-1609 lenerr:3960 diff --git a/tests/ref/fate/audiomatch-dolby-44100-mono-lc-mp4 b/tests/ref/fate/audiomatch-dolby-44100-mono-lc-mp4 index dfc030efff..a01f1caef1 100644 --- a/tests/ref/fate/audiomatch-dolby-44100-mono-lc-mp4 +++ b/tests/ref/fate/audiomatch-dolby-44100-mono-lc-mp4 @@ -1 +1 @@ -presig: 2973 postsig:-37 c: 0.9998 lenerr:2936 +presig: 2973 postsig:-37 lenerr:2936 diff --git a/tests/ref/fate/audiomatch-dolby-44100-stereo-he-mp4 b/tests/ref/fate/audiomatch-dolby-44100-stereo-he-mp4 index 2de86acafd..b6b3027b18 100644 --- a/tests/ref/fate/audiomatch-dolby-44100-stereo-he-mp4 +++ b/tests/ref/fate/audiomatch-dolby-44100-stereo-he-mp4 @@ -1 +1 @@ -presig: 11160 postsig:-3240 c: 0.9703 lenerr:7920 +presig: 11160 postsig:-3240 lenerr:7920 diff --git a/tests/ref/fate/audiomatch-dolby-44100-stereo-he2-mp4 b/tests/ref/fate/audiomatch-dolby-44100-stereo-he2-mp4 index 67edc2bcb8..244721dfa4 100644 --- a/tests/ref/fate/audiomatch-dolby-44100-stereo-he2-mp4 +++ b/tests/ref/fate/audiomatch-dolby-44100-stereo-he2-mp4 @@ -1 +1 @@ -presig: 15884 postsig:228 c: 0.8390 lenerr:16112 +presig: 15884 postsig:228 lenerr:16112 diff --git a/tests/ref/fate/audiomatch-dolby-44100-stereo-lc-mp4 b/tests/ref/fate/audiomatch-dolby-44100-stereo-lc-mp4 index f1be5cb7f3..d463fe8ed1 100644 --- a/tests/ref/fate/audiomatch-dolby-44100-stereo-lc-mp4 +++ b/tests/ref/fate/audiomatch-dolby-44100-stereo-lc-mp4 @@ -1 +1 @@ -presig: 5760 postsig:-1936 c: 0.9837 lenerr:3824 +presig: 5760 postsig:-1936 lenerr:3824 diff --git a/tests/ref/fate/audiomatch-faac-16000-mono-lc-adts b/tests/ref/fate/audiomatch-faac-16000-mono-lc-adts index b2615dfc83..8822bd1893 100644 --- a/tests/ref/fate/audiomatch-faac-16000-mono-lc-adts +++ b/tests/ref/fate/audiomatch-faac-16000-mono-lc-adts @@ -1 +1 @@ -presig: 0 postsig:768 c: 1.0011 lenerr:768 +presig: 0 postsig:768 lenerr:768 diff --git a/tests/ref/fate/audiomatch-faac-16000-mono-lc-m4a b/tests/ref/fate/audiomatch-faac-16000-mono-lc-m4a index b2615dfc83..8822bd1893 100644 --- a/tests/ref/fate/audiomatch-faac-16000-mono-lc-m4a +++ b/tests/ref/fate/audiomatch-faac-16000-mono-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:768 c: 1.0011 lenerr:768 +presig: 0 postsig:768 lenerr:768 diff --git a/tests/ref/fate/audiomatch-faac-16000-stereo-lc-adts b/tests/ref/fate/audiomatch-faac-16000-stereo-lc-adts index b0fa495fa5..464f5161ce 100644 --- a/tests/ref/fate/audiomatch-faac-16000-stereo-lc-adts +++ b/tests/ref/fate/audiomatch-faac-16000-stereo-lc-adts @@ -1 +1 @@ -presig: 0 postsig:1536 c: 1.0011 lenerr:1536 +presig: 0 postsig:1536 lenerr:1536 diff --git a/tests/ref/fate/audiomatch-faac-16000-stereo-lc-m4a b/tests/ref/fate/audiomatch-faac-16000-stereo-lc-m4a index b0fa495fa5..464f5161ce 100644 --- a/tests/ref/fate/audiomatch-faac-16000-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-faac-16000-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:1536 c: 1.0011 lenerr:1536 +presig: 0 postsig:1536 lenerr:1536 diff --git a/tests/ref/fate/audiomatch-faac-44100-mono-lc-adts b/tests/ref/fate/audiomatch-faac-44100-mono-lc-adts index 66faeb696c..b94780c040 100644 --- a/tests/ref/fate/audiomatch-faac-44100-mono-lc-adts +++ b/tests/ref/fate/audiomatch-faac-44100-mono-lc-adts @@ -1 +1 @@ -presig: 0 postsig:888 c: 0.9882 lenerr:888 +presig: 0 postsig:888 lenerr:888 diff --git a/tests/ref/fate/audiomatch-faac-44100-mono-lc-m4a b/tests/ref/fate/audiomatch-faac-44100-mono-lc-m4a index 66faeb696c..b94780c040 100644 --- a/tests/ref/fate/audiomatch-faac-44100-mono-lc-m4a +++ b/tests/ref/fate/audiomatch-faac-44100-mono-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:888 c: 0.9882 lenerr:888 +presig: 0 postsig:888 lenerr:888 diff --git a/tests/ref/fate/audiomatch-faac-44100-stereo-lc-adts b/tests/ref/fate/audiomatch-faac-44100-stereo-lc-adts index c40a48e1b9..fd676ae675 100644 --- a/tests/ref/fate/audiomatch-faac-44100-stereo-lc-adts +++ b/tests/ref/fate/audiomatch-faac-44100-stereo-lc-adts @@ -1 +1 @@ -presig: 0 postsig:1776 c: 0.9882 lenerr:1776 +presig: 0 postsig:1776 lenerr:1776 diff --git a/tests/ref/fate/audiomatch-faac-44100-stereo-lc-m4a b/tests/ref/fate/audiomatch-faac-44100-stereo-lc-m4a index c40a48e1b9..fd676ae675 100644 --- a/tests/ref/fate/audiomatch-faac-44100-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-faac-44100-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:1776 c: 0.9882 lenerr:1776 +presig: 0 postsig:1776 lenerr:1776 diff --git a/tests/ref/fate/audiomatch-nero-16000-mono-he-m4a b/tests/ref/fate/audiomatch-nero-16000-mono-he-m4a index fb62ae0c36..7d23fa4368 100644 --- a/tests/ref/fate/audiomatch-nero-16000-mono-he-m4a +++ b/tests/ref/fate/audiomatch-nero-16000-mono-he-m4a @@ -1 +1 @@ -presig: 2332 postsig:196 c: 0.9736 lenerr:2528 +presig: 2332 postsig:196 lenerr:2528 diff --git a/tests/ref/fate/audiomatch-nero-16000-mono-lc-m4a b/tests/ref/fate/audiomatch-nero-16000-mono-lc-m4a index 440c419793..c26540e82e 100644 --- a/tests/ref/fate/audiomatch-nero-16000-mono-lc-m4a +++ b/tests/ref/fate/audiomatch-nero-16000-mono-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:192 c: 0.9965 lenerr:192 +presig: 0 postsig:192 lenerr:192 diff --git a/tests/ref/fate/audiomatch-nero-16000-stereo-he-m4a b/tests/ref/fate/audiomatch-nero-16000-stereo-he-m4a index 4a30beca9d..5b2f18c6ee 100644 --- a/tests/ref/fate/audiomatch-nero-16000-stereo-he-m4a +++ b/tests/ref/fate/audiomatch-nero-16000-stereo-he-m4a @@ -1 +1 @@ -presig: 4664 postsig:392 c: 0.9777 lenerr:5056 +presig: 4664 postsig:392 lenerr:5056 diff --git a/tests/ref/fate/audiomatch-nero-16000-stereo-he2-m4a b/tests/ref/fate/audiomatch-nero-16000-stereo-he2-m4a index 22aed2aa03..20ddfe94d1 100644 --- a/tests/ref/fate/audiomatch-nero-16000-stereo-he2-m4a +++ b/tests/ref/fate/audiomatch-nero-16000-stereo-he2-m4a @@ -1 +1 @@ -presig: 5618 postsig:2590 c: 0.9934 lenerr:8208 +presig: 5618 postsig:2590 lenerr:8208 diff --git a/tests/ref/fate/audiomatch-nero-16000-stereo-lc-m4a b/tests/ref/fate/audiomatch-nero-16000-stereo-lc-m4a index f36c3c8ad9..f3461d5ce5 100644 --- a/tests/ref/fate/audiomatch-nero-16000-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-nero-16000-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:384 c: 0.9961 lenerr:384 +presig: 0 postsig:384 lenerr:384 diff --git a/tests/ref/fate/audiomatch-nero-44100-mono-he-m4a b/tests/ref/fate/audiomatch-nero-44100-mono-he-m4a index 66ebd92730..fe53516c0f 100644 --- a/tests/ref/fate/audiomatch-nero-44100-mono-he-m4a +++ b/tests/ref/fate/audiomatch-nero-44100-mono-he-m4a @@ -1 +1 @@ -presig: 2336 postsig:1336 c: 0.9973 lenerr:3672 +presig: 2336 postsig:1336 lenerr:3672 diff --git a/tests/ref/fate/audiomatch-nero-44100-mono-lc-m4a b/tests/ref/fate/audiomatch-nero-44100-mono-lc-m4a index 87b074a75f..b71876c5e6 100644 --- a/tests/ref/fate/audiomatch-nero-44100-mono-lc-m4a +++ b/tests/ref/fate/audiomatch-nero-44100-mono-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:312 c: 0.9986 lenerr:312 +presig: 0 postsig:312 lenerr:312 diff --git a/tests/ref/fate/audiomatch-nero-44100-stereo-he-m4a b/tests/ref/fate/audiomatch-nero-44100-stereo-he-m4a index a7d1d9f249..5e98909501 100644 --- a/tests/ref/fate/audiomatch-nero-44100-stereo-he-m4a +++ b/tests/ref/fate/audiomatch-nero-44100-stereo-he-m4a @@ -1 +1 @@ -presig: 4670 postsig:2674 c: 0.9986 lenerr:7344 +presig: 4670 postsig:2674 lenerr:7344 diff --git a/tests/ref/fate/audiomatch-nero-44100-stereo-he2-m4a b/tests/ref/fate/audiomatch-nero-44100-stereo-he2-m4a index 4da8519ee7..627ee784b6 100644 --- a/tests/ref/fate/audiomatch-nero-44100-stereo-he2-m4a +++ b/tests/ref/fate/audiomatch-nero-44100-stereo-he2-m4a @@ -1 +1 @@ -presig: 5618 postsig:782 c: 0.9980 lenerr:6400 +presig: 5618 postsig:782 lenerr:6400 diff --git a/tests/ref/fate/audiomatch-nero-44100-stereo-lc-m4a b/tests/ref/fate/audiomatch-nero-44100-stereo-lc-m4a index 11bc41fa73..4f9c9f46c3 100644 --- a/tests/ref/fate/audiomatch-nero-44100-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-nero-44100-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:624 c: 0.9954 lenerr:624 +presig: 0 postsig:624 lenerr:624 diff --git a/tests/ref/fate/audiomatch-quicktime7-44100-stereo-lc-mp4 b/tests/ref/fate/audiomatch-quicktime7-44100-stereo-lc-mp4 index b11a4861dc..761deaf1dd 100644 --- a/tests/ref/fate/audiomatch-quicktime7-44100-stereo-lc-mp4 +++ b/tests/ref/fate/audiomatch-quicktime7-44100-stereo-lc-mp4 @@ -1 +1 @@ -presig: 4220 postsig:-2444 c: 0.9768 lenerr:1776 +presig: 4220 postsig:-2444 lenerr:1776 diff --git a/tests/ref/fate/audiomatch-quicktimeX-44100-stereo-lc-m4a b/tests/ref/fate/audiomatch-quicktimeX-44100-stereo-lc-m4a index 9fdaf2255b..14c8194797 100644 --- a/tests/ref/fate/audiomatch-quicktimeX-44100-stereo-lc-m4a +++ b/tests/ref/fate/audiomatch-quicktimeX-44100-stereo-lc-m4a @@ -1 +1 @@ -presig: 0 postsig:1648 c: 0.9994 lenerr:1648 +presig: 0 postsig:1648 lenerr:1648 diff --git a/tests/ref/fate/audiomatch-square-aac b/tests/ref/fate/audiomatch-square-aac index b3480d5174..04a2799619 100644 --- a/tests/ref/fate/audiomatch-square-aac +++ b/tests/ref/fate/audiomatch-square-aac @@ -1 +1 @@ -presig: 0 postsig:892 c: 0.9983 lenerr:892 +presig: 0 postsig:892 lenerr:892 diff --git a/tests/ref/fate/audiomatch-square-mp3 b/tests/ref/fate/audiomatch-square-mp3 index 8de55c2f41..1d29bafeda 100644 --- a/tests/ref/fate/audiomatch-square-mp3 +++ b/tests/ref/fate/audiomatch-square-mp3 @@ -1 +1 @@ -presig: 0 postsig:0 c: 0.9447 lenerr:0 +presig: 0 postsig:0 lenerr:0 _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
