Re: [FFmpeg-devel] [PATCH v4] avfilter: add pu21 filter

2024-08-26 Thread Rajiv Harlalka
Bumping up for visibility for review. On Sat, Aug 24, 2024 at 12:46 AM Rajiv Harlalka wrote: > Adds the PU21 encoding filter for high dynamic range images and video > quality assessment > Mantiuk, R., & Azimi, M. PU21: A novel perceptually uniform encoding > for adapting

[FFmpeg-devel] [PATCH v4] avfilter: add pu21 filter

2024-08-23 Thread Rajiv Harlalka
Adds the PU21 encoding filter for high dynamic range images and video quality assessment Mantiuk, R., & Azimi, M. PU21: A novel perceptually uniform encoding for adapting existing quality metrics for HDR https://github.com/gfxdisp/pu21 Signed-off-by: Rajiv Harlalka --- Chang

[FFmpeg-devel] [PATCH v3 3/3] add license header

2024-08-23 Thread Rajiv Harlalka
Signed-off-by: Rajiv Harlalka --- libavfilter/vf_pu21.c | 17 + 1 file changed, 17 insertions(+) diff --git a/libavfilter/vf_pu21.c b/libavfilter/vf_pu21.c index e47ef065e8..9935071dc2 100644 --- a/libavfilter/vf_pu21.c +++ b/libavfilter/vf_pu21.c @@ -1,3 +1,20 @@ +/* + * This

[FFmpeg-devel] [PATCH v3 2/3] suppress build warnings

2024-08-23 Thread Rajiv Harlalka
Signed-off-by: Rajiv Harlalka --- libavfilter/vf_pu21.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavfilter/vf_pu21.c b/libavfilter/vf_pu21.c index c3b56f9c1b..e47ef065e8 100644 --- a/libavfilter/vf_pu21.c +++ b/libavfilter/vf_pu21.c @@ -8,7 +8,7 @@ #include

[FFmpeg-devel] [PATCH v3 1/3] avfilter: add pu21 filter

2024-08-23 Thread Rajiv Harlalka
Adds the PU21 encoding filter for high dynamic range images and video quality assessment Mantiuk, R., & Azimi, M. PU21: A novel perceptually uniform encoding for adapting existing quality metrics for HDR https://github.com/gfxdisp/pu21 Signed-off-by: Rajiv Harlalka --- Chang

[FFmpeg-devel] [PATCH v2] avfilter: add pu21 filter

2024-08-23 Thread Rajiv Harlalka
Adds the PU21 encoding filter for high dynamic range images and video quality assessment Mantiuk, R., & Azimi, M. PU21: A novel perceptually uniform encoding for adapting existing quality metrics for HDR https://github.com/gfxdisp/pu21 --- Changelog| 1 + libavfilter/Makefile

[FFmpeg-devel] [PATCH] avfilter: add pu21 filter

2024-08-23 Thread Rajiv Harlalka
Adds the PU21 encoding filter for high dynamic range images and video quality assessment Mantiuk, R., & Azimi, M. PU21: A novel perceptually uniform encoding for adapting existing quality metrics for HDR https://github.com/gfxdisp/pu21 Signed-off-by: Rajiv Harlalka --- Chang

Re: [FFmpeg-devel] [PATCH] V2 tests/fate/filter-audio.mak: add test for ATEMPO audio filter

2024-03-28 Thread Rajiv Harlalka
On Thu, 28 Mar 2024 at 1:52 PM, Anton Khirnov wrote: > > atempo uses floats for processing, are you sure this > will produce > > exactly the same results everywhere? Tried replicating in some available environments I had and it worked fine, though could not relate with the test not working beca

Re: [FFmpeg-devel] [PATCH] V2 tests/fate/filter-audio.mak: add test for ATEMPO audio filter

2024-03-26 Thread Rajiv Harlalka
On Thu, 21 Mar 2024 at 3:43 PM, Rajiv Harlalka wrote: > Please find an updated patch for tests on the atempo audio filter > Bumping this patch up for visibility. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/li

[FFmpeg-devel] [PATCH] V2 tests/fate/filter-audio.mak: add test for ATEMPO audio filter

2024-03-21 Thread Rajiv Harlalka
Please find an updated patch for tests on the atempo audio filter From 30475d6f076d5236ee534002fffb01958ef0dfc1 Mon Sep 17 00:00:00 2001 From: Rajiv Harlalka Date: Thu, 21 Mar 2024 13:35:29 +0530 Subject: [PATCH v2] tests/fate/filter-audio.mak: add test for ATEMPO audio filter Signed-off-by

[FFmpeg-devel] [PATCH] tests/fate/filter-audio.mak: add test for ATEMPO audio filter

2024-03-20 Thread Rajiv Harlalka
Signed-off-by: Rajiv Harlalka --- tests/fate/filter-audio.mak | 3 ++ tests/ref/fate/filter-atempo | 70 2 files changed, 73 insertions(+) create mode 100644 tests/ref/fate/filter-atempo diff --git a/tests/fate/filter-audio.mak b/tests/fate/filter

Re: [FFmpeg-devel] [PATCH] lavfi/atempo: avoid asendcmd assertion failure

2024-03-13 Thread Rajiv Harlalka
On 3/13/24 8:39 AM, Pavel Koshevoy wrote: On Tue, Mar 12, 2024 at 9:01 PM Pavel Koshevoy wrote: From: Rajiv Harlalka Check for zeros equal to the total samples early, because in that case we would already be leaving the first few frames out. Fixes trac ticket #10692 --- libavfilter

Re: [FFmpeg-devel] [PATCH] af_tempo.c: fix checking of samples and zero frame counts

2024-03-12 Thread Rajiv Harlalka
On 3/8/24 4:34 AM, Rajiv Harlalka wrote: Check for zeros equal to the total samples early, because in case the check is true we would already be leaving the first few frames out. Signed-off-by: Rajiv Harlalka #10692 ---  libavfilter/af_atempo.c | 13 ++---  1 file changed, 6 insertions

[FFmpeg-devel] [PATCH] af_tempo.c: fix checking of samples and zero frame counts

2024-03-07 Thread Rajiv Harlalka
Check for zeros equal to the total samples early, because in case the check is true we would already be leaving the first few frames out. Signed-off-by: Rajiv Harlalka #10692 --- libavfilter/af_atempo.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a

[FFmpeg-devel] [PATCH] af_tempo.c: fix checking of samples and zero frame counts

2024-03-07 Thread Rajiv Harlalka
Check for zeros equal to the total samples early, because in case the check is true we would already be leaving the first few frames out. Signed-off-by: Rajiv Harlalka #10692 --- libavfilter/af_atempo.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/libavfilter