> -Original Message-
> From: ffmpeg-devel On Behalf Of Zhao
> Zhili
> Sent: Montag, 17. Februar 2025 03:36
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] GSoC 2025: Please review your Project Ideas lists
>
>
>
> > On Feb 17, 2025, at
> On Feb 17, 2025, at 03:42, Soft Works
> wrote:
>
>
>> -Original Message-
>> From: ffmpeg-devel On Behalf Of
>> Michael Niedermayer
>> Sent: Freitag, 14. Februar 2025 20:29
>> To: FFmpeg development discussions and patches > de...@ffmpeg.org>
>> Subject: [FFmpeg-devel] Fw: GSoC 202
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> Michael Niedermayer
> Sent: Montag, 17. Februar 2025 01:25
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] Fw: GSoC 2025: Please review your Project Ideas
> lists
>
> Hi Soft Works
Hi all
All our ideas are for 350h
I think its better if there was a 175h project or two, I think this
would increase our chances to be accepted.
also the VP6 encoder still needs a backup mentor
(please talk with peter if you have time and want to help with that)
thx
--
Michael GnuPG finge
Hi Soft Works
On Sun, Feb 16, 2025 at 07:42:11PM +, Soft Works wrote:
>
>
> > -Original Message-
> > From: ffmpeg-devel On Behalf Of
> > Michael Niedermayer
> > Sent: Freitag, 14. Februar 2025 20:29
> > To: FFmpeg development discussions and patches > de...@ffmpeg.org>
> > Subject:
Le dim. 16 févr. 2025 à 15:02, Romain Beauxis a
écrit :
>
> Hi again,
>
>
> Le ven. 14 févr. 2025 à 12:08, Romain Beauxis
> a écrit :
> >
> > Le ven. 14 févr. 2025 à 11:55, Lynne a écrit :
> > > Swallow the extra/metadata. Do not let OpusHead or their equivalents
in
> > > other codecs inside pac
Hi again,
Le ven. 14 févr. 2025 à 12:08, Romain Beauxis
a écrit :
>
> Le ven. 14 févr. 2025 à 11:55, Lynne a écrit :
> > Swallow the extra/metadata. Do not let OpusHead or their equivalents in
> > other codecs inside packets.
> > Emit AV_PKT_DATA_NEW_EXTRADATA from the demuxer instead with the
Signed-off-by: James Almer
---
libavcodec/codec_internal.h | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavcodec/codec_internal.h b/libavcodec/codec_internal.h
index 5b2db74590..01033f4705 100644
--- a/libavcodec/codec_internal.h
+++ b/libavcodec/codec_internal.h
@@
> -Original Message-
> From: ffmpeg-devel On Behalf Of
> Michael Niedermayer
> Sent: Freitag, 14. Februar 2025 20:29
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: [FFmpeg-devel] Fw: GSoC 2025: Please review your Project Ideas lists
>
> Hi everyone
>
>
> -Original Message-
> From: ffmpeg-devel On Behalf Of Rémi
> Denis-Courmont
> Sent: Sonntag, 16. Februar 2025 18:59
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [RFC] Experiment: enable github pull requests
>
> Le torstaina 13. helmikuuta 2025, 1.34.18 UTC+2 Timo Rothenp
> -Original Message-
> From: ffmpeg-devel On Behalf Of Rémi
> Denis-Courmont
> Sent: Sonntag, 16. Februar 2025 18:56
> To: FFmpeg development discussions and patches de...@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [RFC] Experiment: enable github pull requests
>
> Le torstaina 13. helmi
Le torstaina 13. helmikuuta 2025, 1.34.18 UTC+2 Timo Rothenpieler a écrit :
> Videolan apparently even went away from the current approach on our
> instance, cause there was still too much spam. So they're
> manual-approval-only now.
AFAICT, FreeDesktop did something similar (long before the curre
Le torstaina 13. helmikuuta 2025, 1.07.25 UTC+2 Soft Works a écrit :
> > -Original Message-
> > From: ffmpeg-devel On Behalf Of Timo
> > Rothenpieler
> > Sent: Mittwoch, 12. Februar 2025 22:33
> > To: ffmpeg-devel@ffmpeg.org
> > Subject: Re: [FFmpeg-devel] [RFC] Experiment: enable github p
From: Niklas Haas
cf. the other deinterlacing-aware filters.
---
doc/filters.texi| 5 +
libavfilter/vf_libplacebo.c | 23 ---
2 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/doc/filters.texi b/doc/filters.texi
index c7c8a5668e..6f0c89489e 1006
From: Niklas Haas
---
libavfilter/vf_libplacebo.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavfilter/vf_libplacebo.c b/libavfilter/vf_libplacebo.c
index 933b086b69..7dc275f565 100644
--- a/libavfilter/vf_libplacebo.c
+++ b/libavfilter/vf_libplacebo.c
@@ -859,6 +859,8 @@ static int
From: Niklas Haas
These were introduced in libplacebo API version 220. We actually already
map the field by default, but deinterlacing was never enabled unless the user
explicitly forced it using extra_ops.
---
doc/filters.texi| 19 +++
libavfilter/vf_libplacebo.c | 1
From: Niklas Haas
Avoids an unnecessary copy of the frame in the frame queue when not
deinterlacing anyways.
---
libavfilter/vf_libplacebo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_libplacebo.c b/libavfilter/vf_libplacebo.c
index fbbc9d5cb7..933b086b69
From: Niklas Haas
This filter already failed to compile on older versions, because of an
unconditional use of an API introduced in API version 220. Nobody noticed
this, so I conclude that it's safe to bump the required version by now.
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 delet
Hi Frank,
Thank you for the patch.
On Sun, Feb 9, 2025 at 11:45 PM Frank Plowman wrote:
> This is essentially a re-implementation of
>
> https://patchwork.ffmpeg.org/project/ffmpeg/patch/20241005223955.54158-1-p...@frankplowman.com/
>
> That patch was not applied last time. Instead we opted to
Hi Peter
On Sun, Feb 09, 2025 at 06:17:39PM +1100, Peter Ross wrote:
> On Sun, Feb 09, 2025 at 03:24:21AM +0100, Michael Niedermayer wrote:
> > Fixes: out of array access
> > Fixes:
> > 385170375/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RV60_fuzzer-4710055187906560
> >
> > Found-by: con
On Sun, Feb 09, 2025 at 03:24:19AM +0100, Michael Niedermayer wrote:
> The limit is based on later code storing 32bits
>
> Fixes: signed integer overflow: 2147483647 + 1 cannot be represented in type
> 'int'
> Fixes:
> 393164866/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_LATM_fuzzer-4
On Mon, Feb 10, 2025 at 05:34:38PM +0100, Andreas Rheinhardt wrote:
> Michael Niedermayer:
> > Fixes: double free
> > Fixes:
> > 393523547/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_LATM_fuzzer-6740617236905984
> >
> > Found-by: continuous fuzzing process
> > https://github.com/google
On Fri, Feb 07, 2025 at 12:23:12PM +0100, Michael Niedermayer wrote:
> Fixes: signed integer overflow: -251517880 * 32 cannot be represented in type
> 'int'
> Fixes:
> 385224934/clusterfuzz-testcase-minimized-ffmpeg_dem_W64_fuzzer-4909298151915520
>
> Found-by: continuous fuzzing process
> http
On Fri, Feb 07, 2025 at 04:57:55PM +0100, Tobias Rapp wrote:
> On 07/02/2025 15:34, ffmpegagent wrote:
>
> > This commit adds two logging flags: 'time' and 'datetime'.
> >
> > Usage:
> >
> > ffmpeg -loglevel +time
> >
> > or
> >
> > ffmpeg -loglevel +datetime
> >
> > Update V1
> >
> > * Fi
24 matches
Mail list logo