Re: [FFmpeg-devel] [PATCH] avfilter/dnn: add zero-shot image classification using CLIP models

2025-02-15 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of > m.kaindl0...@gmail.com > Sent: Thursday, January 30, 2025 4:33 AM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] avfilter/dnn: add zero-shot image > classification using CLIP models > > Add a new filter 'dnn_clip

Re: [FFmpeg-devel] [PATCH] lavc/vvc: Set fc->ref to NULL at top of decode_nal_units

2025-02-15 Thread Nuo Mi
On Sun, Feb 9, 2025 at 5:43 AM Frank Plowman wrote: > In the fail: block of decode_nal_units, a check as to whether fc->ref is > nonzero is used. Before this patch, fc->ref was set to NULL in > frame_context_setup. The issue is that, by the time frame_context_setup > is called, falliable functi

Re: [FFmpeg-devel] Fw: GSoC 2025: Please review your Project Ideas lists

2025-02-15 Thread Michael Niedermayer
Hi Steven On Sat, Feb 15, 2025 at 11:41:46PM +0800, Steven Liu wrote: > Michael Niedermayer 于2025年2月15日周六 23:14写道: > > > > Hi Steven > > > > On Sat, Feb 15, 2025 at 07:30:40AM +0800, Steven Liu wrote: > > [...] > > > That’s not whole WebRTC, just push streams to server, we can implement a > > > t

[FFmpeg-devel] [PATCH] checkasm/hevc_deblock: adjust RANDCLIP to clip after rng()

2025-02-15 Thread Stone Chen
Increase chances of generating a strong deblock test case by changing RANDCLIP to generate the random value first before clipping. RANDCLIP(x, diff) attempts to generate a random value such the distance to x is less than diff. This is also clipped to the pixel range. This is done by subtracting

Re: [FFmpeg-devel] [PATCH] avformat/mov: (v4) fix get_eia608_packet

2025-02-15 Thread Pavel Koshevoy
On Fri, Feb 14, 2025 at 5:30 AM Pavel Koshevoy wrote: > > > On Thu, Feb 13, 2025, 22:04 Andreas Rheinhardt < > andreas.rheinha...@outlook.com> wrote: > >> Pavel Koshevoy: >> > The problem is reproducible with "Test for Quicktime 608 CC file.mov" >> > from https://samples.ffmpeg.org/MPEG2/subcc/ >

Re: [FFmpeg-devel] Fw: GSoC 2025: Please review your Project Ideas lists

2025-02-15 Thread Steven Liu
Michael Niedermayer 于2025年2月15日周六 23:14写道: > > Hi Steven > > On Sat, Feb 15, 2025 at 07:30:40AM +0800, Steven Liu wrote: > [...] > > That’s not whole WebRTC, just push streams to server, we can implement a > > tiny function, I know WebRTC is too huge and there have lots of algorithms > > geek want

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg: use an int for nb_threads

2025-02-15 Thread James Almer
On 2/15/2025 12:42 AM, James Almer wrote: On 2/14/2025 10:28 PM, Andreas Rheinhardt wrote: What about "auto"? I thought that was a thing. Or do I misremember? Ah, you're right that's an alias for 0. I guess i could use av_opt_eval_int(), but maybe it's not worth the hassle. Actually, it's f

Re: [FFmpeg-devel] Fw: GSoC 2025: Please review your Project Ideas lists

2025-02-15 Thread Michael Niedermayer
Hi Steven On Sat, Feb 15, 2025 at 07:30:40AM +0800, Steven Liu wrote: [...] > That’s not whole WebRTC, just push streams to server, we can implement a > tiny function, I know WebRTC is too huge and there have lots of algorithms > geek want injection their selves algorithms, I think we should just

Re: [FFmpeg-devel] Fw: GSoC 2025: Please review your Project Ideas lists

2025-02-15 Thread Michael Niedermayer
Hi Steven On Sat, Feb 15, 2025 at 07:30:40AM +0800, Steven Liu wrote: > Kieran Kunhya 于2025年2月15日 周六06:15写道: > > > > > > > On Fri, 14 Feb 2025, 21:29 Steven Liu, wrote: > > > >> > >> > >> Kieran Kunhya via ffmpeg-devel 于2025年2月15日 > >> 周六04:21写道: > >> > >>> On Fri, Feb 14, 2025 at 7:28 PM Michae

[FFmpeg-devel] [PATCH] avcodec/mpeg12dec: Do not decode B-frames if dummy reference frames are allocated

2025-02-15 Thread otya
B-frames that cannot be decoded will be properly skipped if field pictures are used. Fixes: c85508f5a91cc0caf18ba33c941536bf8b99b81b Signed-off-by: otya --- libavcodec/mpeg12dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c