Re: [libav-devel] [PATCH 3/7] FATE: use absolute difference from a target value in do_tiny_psnr()

2012-03-11 Thread Måns Rullgård
Justin Ruggles justin.rugg...@gmail.com writes: This will allow comparison to original pre-encoded content instead of comparing to expected decoded output. --- tests/Makefile|2 +- tests/fate-run.sh | 17 + 2 files changed, 14 insertions(+), 5 deletions(-) diff

Re: [libav-devel] [PATCH 4/7] FATE: allow a tolerance in the size comparison in do_tiny_psnr()

2012-03-11 Thread Måns Rullgård
Justin Ruggles justin.rugg...@gmail.com writes: This will allow for comparing decoded output to the original source when the decoded size is not exactly the same as the original size. --- tests/Makefile|2 +- tests/fate-run.sh |5 - 2 files changed, 5 insertions(+), 2

Re: [libav-devel] [PATCH 5/7] FATE: add capability for audio encode/decode tests with fuzzy psnr comparison

2012-03-11 Thread Måns Rullgård
Justin Ruggles justin.rugg...@gmail.com writes: This allows for testing floating-point audio encoders across different platforms where exact comparisons are unreliable due to float rounding differences. --- tests/fate-run.sh | 12 1 files changed, 12 insertions(+), 0

Re: [libav-devel] [PATCH 1/7] FATE: use $fuzz directly in do_tiny_psnr() instead of passing it around

2012-03-11 Thread Måns Rullgård
Justin Ruggles justin.rugg...@gmail.com writes: --- tests/fate-run.sh | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) OK -- Måns Rullgård m...@mansr.com ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 2/7] FATE: allow tests to set PSNR_SHIFT to pass to tiny_psnr

2012-03-11 Thread Måns Rullgård
Justin Ruggles justin.rugg...@gmail.com writes: This will allow adjusting for any encoder or decoder delay when doing comparisons. --- tests/Makefile|2 +- tests/fate-run.sh |3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) OK -- Måns Rullgård m...@mansr.com

[libav-devel] [PATCH] cdxl: swap CHUNKY and BYTE_PLANAR

2012-03-11 Thread Paul B Mahol
This is how it is defined in Amiga Developer CD from year 1992 and is consistent with files created with ADPro. Signed-off-by: Paul B Mahol one...@gmail.com --- libavcodec/cdxl.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/cdxl.c b/libavcodec/cdxl.c

Re: [libav-devel] [PATCH 4/4] rgb2rgb: rgb48tobgr32()

2012-03-11 Thread Ronald S. Bultje
Hi, On Wed, Mar 7, 2012 at 10:59 AM, Paul B Mahol one...@gmail.com wrote: Signed-off-by: Paul B Mahol one...@gmail.com ---  libswscale/rgb2rgb.c          |   19 +++  libswscale/rgb2rgb.h          |    1 +  libswscale/swscale_unscaled.c |    1 +  3 files changed, 21

Re: [libav-devel] [PATCH 4/4] rgb2rgb: rgb48tobgr32()

2012-03-11 Thread Paul B Mahol
On 3/11/12, Ronald S. Bultje rsbul...@gmail.com wrote: Hi, On Wed, Mar 7, 2012 at 10:59 AM, Paul B Mahol one...@gmail.com wrote: Signed-off-by: Paul B Mahol one...@gmail.com --- libswscale/rgb2rgb.c | 19 +++ libswscale/rgb2rgb.h |1 +

Re: [libav-devel] [PATCH 6/7] FATE: add AC-3 and E-AC-3 encode/decode tests with fuzzy comparison

2012-03-11 Thread Derek Buitenhuis
On 10/03/2012 8:02 PM, Justin Ruggles wrote: +FATE_AC3 += fate-ac3-encode +fate-ac3-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz.sw +fate-ac3-encode: CMD = enc_dec_pcm ac3 2 44100 s16le -c:a ac3 -b:a 128k +fate-ac3-encode: CMP = stddev +fate-ac3-encode: PSNR_SHIFT = -1024

Re: [libav-devel] [PATCH 5/7] FATE: add capability for audio encode/decode tests with fuzzy psnr comparison

2012-03-11 Thread Justin Ruggles
On 03/11/2012 08:46 AM, Måns Rullgård wrote: Justin Ruggles justin.rugg...@gmail.com writes: This allows for testing floating-point audio encoders across different platforms where exact comparisons are unreliable due to float rounding differences. --- tests/fate-run.sh | 12

Re: [libav-devel] [PATCH 6/7] FATE: add AC-3 and E-AC-3 encode/decode tests with fuzzy comparison

2012-03-11 Thread Justin Ruggles
On 03/11/2012 12:48 PM, Derek Buitenhuis wrote: On 10/03/2012 8:02 PM, Justin Ruggles wrote: +FATE_AC3 += fate-ac3-encode +fate-ac3-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz.sw +fate-ac3-encode: CMD = enc_dec_pcm ac3 2 44100 s16le -c:a ac3 -b:a 128k +fate-ac3-encode: CMP

Re: [libav-devel] [PATCH 6/7] FATE: add AC-3 and E-AC-3 encode/decode tests with fuzzy comparison

2012-03-11 Thread Derek Buitenhuis
On 11/03/2012 1:22 PM, Justin Ruggles wrote: A previous version of the patch did that, but Mans suggested that we pass the target value directly instead of storing it in a separate file. It does make things simpler in the shell script, and it's just as easy to change the reference value in the

Re: [libav-devel] [PATCH 5/7] FATE: add capability for audio encode/decode tests with fuzzy psnr comparison

2012-03-11 Thread Måns Rullgård
Justin Ruggles justin.rugg...@gmail.com writes: On 03/11/2012 08:46 AM, Måns Rullgård wrote: Justin Ruggles justin.rugg...@gmail.com writes: This allows for testing floating-point audio encoders across different platforms where exact comparisons are unreliable due to float rounding

[libav-devel] [PATCH 3/7] FATE: use absolute difference from a target value in do_tiny_psnr()

2012-03-11 Thread Justin Ruggles
This will allow comparison to original pre-encoded content instead of comparing to expected decoded output. --- tests/Makefile|2 +- tests/fate-run.sh | 16 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index

[libav-devel] [PATCH 4/7] FATE: allow a tolerance in the size comparison in do_tiny_psnr()

2012-03-11 Thread Justin Ruggles
This will allow for comparing decoded output to the original source when the decoded size is not exactly the same as the original size. --- tests/Makefile|2 +- tests/fate-run.sh |4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile

[libav-devel] [PATCH 5/7] FATE: add capability for audio encode/decode tests with fuzzy psnr comparison

2012-03-11 Thread Justin Ruggles
This allows for testing floating-point audio encoders across different platforms where exact comparisons are unreliable due to float rounding differences. --- tests/fate-run.sh | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/tests/fate-run.sh b/tests/fate-run.sh

[libav-devel] [PATCH 6/7] FATE: add AC-3 and E-AC-3 encode/decode tests with fuzzy comparison

2012-03-11 Thread Justin Ruggles
--- tests/fate/ac3.mak | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/tests/fate/ac3.mak b/tests/fate/ac3.mak index 83b13b6..6a59b82 100644 --- a/tests/fate/ac3.mak +++ b/tests/fate/ac3.mak @@ -28,5 +28,21 @@ fate-eac3-4: CMD = pcm -i

[libav-devel] [PATCH 7/7] FATE: add WMAv1 and WMAv2 encode/decode tests with fuzzy comparison

2012-03-11 Thread Justin Ruggles
--- tests/fate/wma.mak | 19 +++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/tests/fate/wma.mak b/tests/fate/wma.mak index 3d849ea..30e35a9 100644 --- a/tests/fate/wma.mak +++ b/tests/fate/wma.mak @@ -36,3 +36,22 @@ fate-wmavoice-19k: FUZZ = 3 FATE_TESTS