Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_libvmaf: Add metadata propagation support

2024-09-23 Thread Yigithan Yigit
Hi, > Could we somehow get the AVFrame pointer in your custom callback data > or the VmafMetadata data? When all of the expected metadata is written > then you'll know you're ready to forward the frame through the > filtergraph. Doing it this way hopefully avoids a lot of the code and > traversing

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_libvmaf: Add metadata propagation support

2024-09-11 Thread Yigithan Yigit
Hi, Thanks for feedbacks! > On Aug 30, 2024, at 7:44 AM, Kyle Swanson wrote: > > Hi, > > > On Mon, Aug 26, 2024 at 10:51=E2=80=AFAM Yigithan Yigit > mailto:yigithanyigitde...@gmail.com>> wrote: >> >> --- >> libavfilter/vf_libvmaf.c | 328

Re: [FFmpeg-devel] [PATCH 2/2] MAINTAINERS: mark vf_volumedetect as unmaintained

2024-09-02 Thread Yigithan Yigit
Hi Michael, I am new to community, and I am not sure about qualifications of maintainer but If you prefer I can be the maintainer. Best Regards, Yiğithan Yiğit > On 2 Sep 2024, at 16:39, Michael Niedermayer wrote: > A ping from last month by Yigithan Yigit had no reaction > > S

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_libvmaf: Add metadata propagation support

2024-08-28 Thread Yigithan Yigit
Ping. Thanks > On 26 Aug 2024, at 20:51, Yigithan Yigit wrote: > > --- > libavfilter/vf_libvmaf.c | 328 ++- > 1 file changed, 326 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/vf_libvmaf.c b/libavfilter/vf_libvmaf

[FFmpeg-devel] [PATCH v2] avfilter/vf_libvmaf: Add metadata propagation support

2024-08-26 Thread Yigithan Yigit
--- libavfilter/vf_libvmaf.c | 328 ++- 1 file changed, 326 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_libvmaf.c b/libavfilter/vf_libvmaf.c index f655092b20..e6707aff53 100644 --- a/libavfilter/vf_libvmaf.c +++ b/libavfilter/vf_libvmaf.c @@ -27,8

[FFmpeg-devel] [PATCH v2 0/1] avfilter/vf_libvmaf: Add metadata propagation support

2024-08-26 Thread Yigithan Yigit
This patch adds metadata propagation support to vf_libvmaf filter according to changes in libvmaf library. For test you should set vmaf_version < 3.0.0 in filter. changes since v1: - Fixed sync issue (Was the main problem of first version). - Added inline explanation. Yigithan Yigit

[FFmpeg-devel] [PATCH v1] avfilter/vf_libvmaf: Add metadata propagation support

2024-08-23 Thread Yigithan Yigit
--- libavfilter/vf_libvmaf.c | 271 +++ 1 file changed, 271 insertions(+) diff --git a/libavfilter/vf_libvmaf.c b/libavfilter/vf_libvmaf.c index f655092b20..0b4a63cf92 100644 --- a/libavfilter/vf_libvmaf.c +++ b/libavfilter/vf_libvmaf.c @@ -27,8 +27,11 @@ #inc

[FFmpeg-devel] [PATCH v1 0/1] avfilter/vf_libvmaf: Add metadata propagation support

2024-08-23 Thread Yigithan Yigit
This patch adds metadata propagation support to vf_libvmaf filter according to changes in libvmaf library. For test you should set vmaf_version < 3.0.0 in filter. Yigithan Yigit (1): avfilter/vf_libvmaf: Add metadata propagation support libavfilter/vf_libvmaf.c |

Re: [FFmpeg-devel] [PATCH v5 2/2] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-07-21 Thread Yigithan Yigit
Ping. Thanks, Yigithan ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v5 2/2] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-07-14 Thread Yigithan Yigit
/af_volumedetect.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2012 Nicolas George + * Copyright (c) 2024 Yigithan Yigit - 32 Bit Float Audio Support * * This file is part of FFmpeg. * @@ -20,98 +21,196 @@ #include "libavutil/channel_layout.h" #include "libavutil/avassert.h"

[FFmpeg-devel] [PATCH v5 1/2] avfilter/af_volumedetect.c: Move logdb function

2024-07-14 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 8b001d1cf2..327801a7f9 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@

[FFmpeg-devel] [PATCH v5 0/2] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-07-14 Thread Yigithan Yigit
logdb function to work with given max_db value instead of checking sampe format every time. - Improved readability of the code - Improved speed %~13 for floats since v1. Yigithan Yigit (2): avfilter/af_volumedetect.c: Move logdb function avfilter/af_volumedetect.c: Add 32bit float audio support

Re: [FFmpeg-devel] [PATCH v3 2/5] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-07-02 Thread Yigithan Yigit
> On Jul 2, 2024, at 8:51 AM, Rémi Denis-Courmont wrote: > > > > Le 2 juillet 2024 04:33:51 GMT+03:00, Yigithan Yigit > mailto:yigithanyigitde...@gmail.com>> a écrit : >> --- >> libavfilter/af_volumedetect.c | 139 ++ >

[FFmpeg-devel] [PATCH v3 5/5] Replace division with ldexp

2024-07-01 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index a53212015d..856d5a295d 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@ -49,7 +49,7 @@ static i

[FFmpeg-devel] [PATCH v3 4/5] avfilter/af_volumedetect.c: reindent after last commit

2024-07-01 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 62 +-- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 778f0cac6c..a53212015d 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vol

[FFmpeg-devel] [PATCH v3 3/5] avfilter/af_volumedetect.c: Added functions for int/float and planar/packed

2024-07-01 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 66 +++ 1 file changed, 66 insertions(+) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index edd2d56f7a..778f0cac6c 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@ -7

[FFmpeg-devel] [PATCH v3 2/5] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-07-01 Thread Yigithan Yigit
/af_volumedetect.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2012 Nicolas George + * Copyright (c) 2024 Yigithan Yigit - 32 Bit Float Audio Support * * This file is part of FFmpeg. * @@ -20,48 +21,62 @@ #include "libavutil/channel_layout.h" #include "libavutil/avassert.h" +#incl

[FFmpeg-devel] [PATCH v3 1/5] avfilter/af_volumedetect.c: Move logdb function

2024-07-01 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 8b001d1cf2..327801a7f9 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@

[FFmpeg-devel] [PATCH v3 0/5] avfilter/af_volumedetect.c: Add 32bit float audio

2024-07-01 Thread Yigithan Yigit
changes since v1: - Defined callback and assigning to filter frame according to planar/packed and float/int. - Fixed rounding same value 2 times - Subnormal values are supported - Replaced square division with ldexp Yigithan Yigit (5): avfilter/af_volumedetect.c: Move logdb function avfilter

Re: [FFmpeg-devel] [PATCH v2 1/4] avfilter/af_volumedetect.c: Move logdb function

2024-06-29 Thread Yigithan Yigit
> On 29 Jun 2024, at 22:22, Rémi Denis-Courmont wrote: > > Le perjantaina 28. kesäkuuta 2024, 23.15.20 EEST Yigithan Yigit a écrit : >> --- >> libavfilter/af_volumedetect.c | 20 ++-- >> 1 file changed, 10 insertions(+), 10 deletions(-)

[FFmpeg-devel] [PATCH v2 4/4] avfilter/af_volumedetect.c: reindent after last commit

2024-06-28 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 62 +-- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index ff408a8b50..02e5740499 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vol

[FFmpeg-devel] [PATCH v2 3/4] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-06-28 Thread Yigithan Yigit
/af_volumedetect.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2012 Nicolas George + * Copyright (c) 2024 Yigithan Yigit - 32 Bit Float Audio Support * * This file is part of FFmpeg. * @@ -20,27 +21,54 @@ #include "libavutil/channel_layout.h" #include "libavutil/avassert.h" +#incl

[FFmpeg-devel] [PATCH v2 2/4] avfilter/af_volumedetect.c: Added functions for int/float and planar/packed

2024-06-28 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 58 +++ 1 file changed, 58 insertions(+) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 327801a7f9..61c00e0248 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@ -4

[FFmpeg-devel] [PATCH v2 1/4] avfilter/af_volumedetect.c: Move logdb function

2024-06-28 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 8b001d1cf2..327801a7f9 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@

[FFmpeg-devel] [PATCH v2 0/4] avfilter/af_volumedetect.c: Add 32bit float audio

2024-06-28 Thread Yigithan Yigit
changes since v1: - Defined callback and assigning to filter frame according to planar/packed and float/int. - Fixed rounding same value 2 times - Subnormal values are supported Yigithan Yigit (4): avfilter/af_volumedetect.c: Move logdb function avfilter/af_volumedetect.c: Added functions

Re: [FFmpeg-devel] [PATCH 2/3] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-06-18 Thread Yigithan Yigit
> On Jun 17, 2024, at 5:52 PM, Rémi Denis-Courmont wrote: > > > > Le 17 juin 2024 13:18:11 GMT+02:00, Yigithan Yigit > mailto:yigithanyigitde...@gmail.com>> a écrit : >> --- >> libavfilter/af_volumedetect.c | 159 -- >

[FFmpeg-devel] [PATCH 3/3] avfilter/af_volumedetect.c: reindent after last commit

2024-06-17 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 68 +-- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index dbbcd037a5..b78b073c09 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vol

[FFmpeg-devel] [PATCH 2/3] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-06-17 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 159 -- 1 file changed, 133 insertions(+), 26 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 327801a7f9..dbbcd037a5 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vo

[FFmpeg-devel] [PATCH 1/3] avfilter/af_volumedetect.c: Move logdb function

2024-06-17 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 8b001d1cf2..327801a7f9 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@

[FFmpeg-devel] [PATCH 0/3] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-06-17 Thread Yigithan Yigit
This patchset adds 32bit float audio support to the volumedetect filter and fixes issue #9613. This work is part of my GSoC 2024 Qualification Task. I would greatly appreciate your review of this patcset. Thanks for your time and consideration. Yigithan Yigit (3): avfilter/af_volumedetect.c

[FFmpeg-devel] [PATCH v3 3/3] avfilter/af_volumedetect.c: reindent after last commit

2024-05-20 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 68 +-- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index dbbcd037a5..b78b073c09 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vol

[FFmpeg-devel] [PATCH v3 2/3] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-05-20 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 159 -- 1 file changed, 133 insertions(+), 26 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 327801a7f9..dbbcd037a5 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vo

[FFmpeg-devel] [PATCH v3 1/3] avfilter/af_volumedetect.c: Move logdb function

2024-05-20 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 8b001d1cf2..327801a7f9 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@

[FFmpeg-devel] [PATCH v3 0/3] avfilter/af_volumedetect.c: Move logdb function

2024-05-20 Thread Yigithan Yigit
v2 was mangled by my client. Yigithan Yigit (3): avfilter/af_volumedetect.c: Move logdb function avfilter/af_volumedetect.c: Add 32bit float audio support avfilter/af_volumedetect.c: reindent after last commit libavfilter/af_volumedetect.c | 221 +- 1 file

[FFmpeg-devel] [PATCH v2 3/3] avfilter/af_volumedetect.c: reindent after last commit

2024-05-13 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 68 +-- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index dbbcd037a5..b78b073c09 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vol

[FFmpeg-devel] [PATCH v2 2/3] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-05-13 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 159 -- 1 file changed, 133 insertions(+), 26 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 327801a7f9..dbbcd037a5 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_vo

[FFmpeg-devel] [PATCH v2 1/3] avfilter/af_volumedetect.c: Move logdb function

2024-05-13 Thread Yigithan Yigit
--- libavfilter/af_volumedetect.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index 8b001d1cf2..327801a7f9 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@

Re: [FFmpeg-devel] [PATCH] avfilter/af_volumedetect.c: Add 32bit float audio support

2024-05-01 Thread Yigithan Yigit
Included mem.h and made some changes about readability. v8-avfilter-af_volumedetect.c-Add-32bit-float-audio-sup.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To