[FFmpeg-devel] Re: [RFC] Microsoft store

2025-11-11 Thread Gyan Doshi via ffmpeg-devel
On 2025-11-12 04:45 am, Michael Niedermayer via ffmpeg-devel wrote: Hello everyone We have been contacted by Microsoft. Whats your oppinion about putting one or both the current community builds, that we link to, on the Microsoft store? My builds are already available through their

[FFmpeg-devel] [PATCH] web/security: what not to post to ffmpeg-security

2025-11-11 Thread Michael Niedermayer via ffmpeg-devel
an verification. FFmpeg git master -- 2.51.0 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] web/security: what not to post to ffmpeg-security

2025-11-11 Thread James Almer via ffmpeg-devel
On 11/11/2025 10:40 PM, Michael Niedermayer via ffmpeg-devel wrote: Signed-off-by: Michael Niedermayer --- src/security | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/security b/src/security index 0d5f8dd..65b25bc 100644 --- a/src/security +++ b/src/security @@ -1,4

[FFmpeg-devel] Re: [REFUND-REQUEST] VDD'25 travel expense

2025-11-11 Thread Michael Niedermayer via ffmpeg-devel
Hi On Mon, Nov 10, 2025 at 10:11:46PM +, Niklas Haas via ffmpeg-devel wrote: > On Monday, November 10th, 2025 at 10:55 PM, Stefano Sabatini via ffmpeg-devel > wrote: > > > > On Sat, Nov 8, 2025 at 2:31 AM Michael Niedermayer via ffmpeg-devel > > ffmpeg-devel@ffmpeg.

[FFmpeg-devel] Re: [PATCH] web/security: what not to post to ffmpeg-security

2025-11-11 Thread Michael Niedermayer via ffmpeg-devel
On Tue, Nov 11, 2025 at 10:41:49PM -0300, James Almer via ffmpeg-devel wrote: > On 11/11/2025 10:40 PM, Michael Niedermayer via ffmpeg-devel wrote: > > Signed-off-by: Michael Niedermayer > > --- > > src/security | 2 +- > > 1 file changed, 1 insertion(+), 1 deleti

[FFmpeg-devel] Re: question about submitting security patches

2025-11-12 Thread Christophe Gisquet via ffmpeg-devel
Hello, Le mar. 11 nov. 2025 à 04:01, Michael Niedermayer via ffmpeg-devel a écrit : > If you have concrete legal analysis or case law that supports this claim, > please share it. I can name at least one Fortune 500 companies, that maybe won't disclose publicly these facts, that did

[FFmpeg-devel] [PATCH v2] avformat/mpjpegdec: add support for X-Timestamp and X-Framerate headers

2025-11-12 Thread Vladimir Sobolev via ffmpeg-devel
> 0) { /* size has been provided to us in MIME header */ ret = av_get_packet(s->pb, pkt, size); @@ -353,6 +403,13 @@ static int mpjpeg_read_packet(AVFormatContext *s, AVPacket *pkt) } } +/* Set timestamp from X-Timestamp header if available */ +if (r

[FFmpeg-devel] [PATCH] doc/fate: improve section on running FATE (PR #20907)

2025-11-12 Thread Gyan Doshi via ffmpeg-devel
@table @env @item V -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libavfilter: fix Spherical Mapping side data lost after uniform scale (PR #20910)

2025-11-13 Thread Zhao Zhili via ffmpeg-devel
>width || out->height != in->height) { changed |= AV_SIDE_DATA_PROP_SIZE_DEPENDENT; +if (in->width * out->height != out->width * in->height) +changed |= AV_SIDE_DATA_PROP_ASPECT_RATIO_DEPENDENT; +} if (out->color_trc != in->color_trc || out->color_primaries != in->color_primaries) changed |= AV_SIDE_DATA_PROP_COLOR_DEPENDENT; av_frame_side_data_remove_by_props(&out->side_data, &out->nb_side_data, changed); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: question about submitting security patches

2025-11-13 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Thu, Nov 13, 2025 at 03:52:17AM +, Kieran Kunhya via ffmpeg-devel wrote: > On Thu, 13 Nov 2025, 03:07 Michael Niedermayer via ffmpeg-devel, < > [email protected]> wrote: > > > Hi Kieran > > > > On Wed, Nov 12, 2025 at 12:09:00AM -080

[FFmpeg-devel] [PATCH] avdevice/lavfi: stop setting deprecated buffersink options (PR #20913)

2025-11-13 Thread James Almer via ffmpeg-devel
ts", AV_OPT_SEARCH_CHILDREN, 0, + FF_ARRAY_ELEMS(sample_fmts), AV_OPT_TYPE_SAMPLE_FMT, + sample_fmts); if (ret < 0) goto end; -- 2.49.1 ___________ ffmpeg-devel

[FFmpeg-devel] Re: [Question] Learning about VVC and wasm

2025-11-13 Thread Frank Plowman via ffmpeg-devel
On 13/11/2025 17:56, Sidd via ffmpeg-devel wrote: > Hi Frank, > > Thanks for the reply, it seems like there is a lot for me to cover. > > Regarding the assembly, since FFmpeg is known for handcrafting it, are > there any references of help in their docs regarding this? I h

[FFmpeg-devel] Re: [Question] Learning about VVC and wasm

2025-11-13 Thread Frank Plowman via ffmpeg-devel
On 13/11/2025 16:46, Sidd via ffmpeg-devel wrote: > Hi, I was curious on learning more about VVC and wasm within the > ffmpeg project and would like some guidance on where to find the docs > and references to go through > > I am simply trying to get my hands dirty with a past

[FFmpeg-devel] [PATCH] avutil/hwcontext_amf: move AVMutex to internal context (PR #20915)

2025-11-14 Thread Dmitrii Ovchinnikov via ffmpeg-devel
AVAMFDeviceContext *ctx); + enum AMF_SURFACE_FORMAT av_av_to_amf_format(enum AVPixelFormat fmt); enum AVPixelFormat av_amf_to_av_format(enum AMF_SURFACE_FORMAT fmt); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avfilter/vf_drawtext: fix call GET_UTF8 with invalid argument (PR #20917)

2025-11-14 Thread Zhao Zhili via ffmpeg-devel
00;\ +val = (uint16_t)(GET_16BIT) - 0xDC00;\ if (val > 0x3FFU || hi > 0x3FFU)\ {ERROR}\ val += (hi<<10) + 0x1;\ -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] doc/encoders: Document MediaFoundation encoders (PR #20916)

2025-11-14 Thread dashsantosh-mcw via ffmpeg-devel
9.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [Question] Learning about VVC and wasm

2025-11-14 Thread Zhao Zhili via ffmpeg-devel
> On Nov 14, 2025, at 19:30, Rémi Denis-Courmont via ffmpeg-devel > wrote: > > > > Le 14 novembre 2025 06:09:25 GMT+02:00, Zhao Zhili via ffmpeg-devel > a écrit : >>> For FFmpeg, WASM optimisations are embryonic at best. There is no >>> documentatio

[FFmpeg-devel] Re: [Question]Inquiry Regarding RISC-V RVV Optimization for HEVC Decoding in FFmpeg

2025-11-13 Thread Zhao Zhili via ffmpeg-devel
> On Nov 14, 2025, at 09:52, yunfei_zhou--- via ffmpeg-devel > wrote: > > Hi all, > I hope this message finds you well. > My name is Yunfei Zhou, and I am a Software Development Engineer at Alibaba > DAMO Academy, where I focus on video coding and decoding optimizatio

[FFmpeg-devel] Re: [Question] Learning about VVC and wasm

2025-11-13 Thread Zhao Zhili via ffmpeg-devel
> On Nov 14, 2025, at 02:19, Rémi Denis-Courmont via ffmpeg-devel > wrote: > > Le torstaina 13. marraskuuta 2025, 19.56.30 Itä-Euroopan normaaliaika Sidd > via > ffmpeg-devel a écrit : >> Regarding the assembly, since FFmpeg is known for handcrafting it, are >>

[FFmpeg-devel] Re: [GASPP PATCH] Translate .inst into DCD, the same as for .int or .word

2025-11-14 Thread Martin Storsjö via ffmpeg-devel
tions(+) Pushed, with the commit message updated a bit more. // Martin ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avdevice/lavfi: stop setting deprecated buffersink options (PR #20913)

2025-11-13 Thread Nicolas George via ffmpeg-devel
James Almer via ffmpeg-devel (HE12025-11-13): > PR #20913 opened by James Almer (jamrial) > URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20913 > Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20913.patch I intended to review that. I see no review on the web monster either.

[FFmpeg-devel] Re: question about submitting security patches

2025-11-13 Thread Tobias Rapp via ffmpeg-devel
On 13/11/2025 15:50, Timo Rothenpieler via ffmpeg-devel wrote: On 13/11/2025 04:06, Michael Niedermayer via ffmpeg-devel wrote: Hi Kieran On Wed, Nov 12, 2025 at 12:09:00AM -0800, Kieran Kunhya via ffmpeg-devel wrote: On Mon, 10 Nov 2025, 19:00 Michael Niedermayer via ffmpeg-devel, < ffm

[FFmpeg-devel] Re: question about submitting security patches

2025-11-13 Thread Timo Rothenpieler via ffmpeg-devel
On 13/11/2025 04:06, Michael Niedermayer via ffmpeg-devel wrote: Hi Kieran On Wed, Nov 12, 2025 at 12:09:00AM -0800, Kieran Kunhya via ffmpeg-devel wrote: On Mon, 10 Nov 2025, 19:00 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: Hi Remi On Mon, Nov 10, 2025 at

[FFmpeg-devel] Re: Supporting FFmpeg via GPU-powered FFmpeg endpoint on Replicate

2025-11-13 Thread Timo Rothenpieler via ffmpeg-devel
On 13/11/2025 04:00, Andreas Jansson via ffmpeg-devel wrote: Hi all, I’m Andreas Jansson, co-founder and CTO at Replicate. We’re planning to launch a public GPU-powered FFmpeg endpoint at https://replicate.com/ffmpeg/ffmpeg, where users will be able to run FFmpeg on demand and pay per second of

[FFmpeg-devel] Re: [PATCH] tcp: add TCP keepalive tuning options

2025-11-21 Thread Nicolas George via ffmpeg-devel
Practice2001 via ffmpeg-devel (HE12025-11-21): > Addition of tcp_keepalive, tcp_keepidle, tcp_keepintvl, and tcp_keepcnt > support to the TCP protocol. Exposeing these options to the HTTP protocol > so they can be used for HTTP(S) connections. Updated documentation. > Tested with:

[FFmpeg-devel] FFmpeg 6.1.4 5.1.8

2025-11-21 Thread Michael Niedermayer via ffmpeg-devel
Description: PGP signature ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] mailing list From mangling and bounces and DMARC

2025-11-21 Thread Nicolas George via ffmpeg-devel
Hi. Pavel Roslyy via ffmpeg-devel (HE12025-11-11): > I was misunderstanding what mailman does, so my statement was nonsense > and can be disregarded. This thing is a maze of contradictory information and fallacies, many eyes on it is best to have a chance to find a solution. > I

[FFmpeg-devel] [PATCH] avformat/mov: fix incorrect sample rate by parse srat box (PR #20990)

2025-11-21 Thread Zhao Zhili via ffmpeg-devel
/ av_dict_set(&st->metadata, "vendor_id", av_fourcc2str(id), 0); @@ -9479,6 +9519,7 @@ static const MOVParseTableEntry mov_default_parse_table[] = { #if CONFIG_IAMFDEC { MKTAG('i','a','c','b'), mov_read_iacb }, #endif +{ MKTAG('s','r','a','t'), mov_read_srat }, { 0, NULL } }; -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avutil/opt: support DOS paths in key value parser (PR #21008)

2025-11-24 Thread Kacper Michajłow via ffmpeg-devel
tions string 'string = C:/dir/hello.txt : size = pal' +Setting 'string' to value 'C' +No option name near '/dir/hello.txt : size = pal' +Error 'string = C:/dir/hello.txt : size = pal' +Setting options string 'string = C:\dir\hello.txt : size = pal' +

[FFmpeg-devel] [PATCH] avfilter/vf_drawvg: round color values and avoid intermediate casting to double (PR #21010)

2025-11-24 Thread Kacper Michajłow via ffmpeg-devel
ro_set_source #8099b3cc cairo_set_fill_rule 0 cairo_fill -cairo_set_source #a8d7efe5 +cairo_set_source #a8d8f0e6 cairo_set_fill_rule 0 cairo_fill cairo_rel_line_to 1.0 3.0 -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] Fix WAV bitrate calculation when bits_per_coded_sample != 8

2025-11-24 Thread Michael Niedermayer via ffmpeg-devel
On Mon, Nov 17, 2025 at 02:01:19PM +0100, Erdinc Kaya via ffmpeg-devel wrote: > - Correctly scale bitrate by bits_per_coded_sample instead of assuming 8 > bits per byte. > - Prevents wrong bitrate reports for 16-bit PCM WAV files. > > Signed-off-by: Erdinc Kaya > --- > liba

[FFmpeg-devel] [PATCH] libavdevice/decklink: Implement QueryInterface to support newer driver (PR #21002)

2025-11-23 Thread Thomas Gritzan via ffmpeg-devel
} + +AddRef(); +return S_OK; +} + virtual ULONG STDMETHODCALLTYPE AddRef(void) { return ++_refs; } virtual ULONG STDMETHODCALLTYPE Release(void) { -- 2.49.1 ___________ ffmpeg-devel mailing list -- ffmp

[FFmpeg-devel] [PATCH] libavdevice/decklink: Implement QueryInterface to support newer driver

2025-11-23 Thread Thomas Gritzan via ffmpeg-devel
ODCALLTYPE Release(void) { -- 2.30.2 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/whip: fix memleak of dtls_fingerprint (PR #21003)

2025-11-23 Thread Jack Lau via ffmpeg-devel
ext *s) s->streams[i]->priv_data = NULL; } +av_freep(&whip->dtls_fingerprint); av_freep(&whip->sdp_offer); av_freep(&whip->sdp_answer); av_freep(&whip->whip_resource_url); -- 2.49.1 __________

[FFmpeg-devel] Re: [PATCH] libavformat/rtpenc_h264_hevc: Use original TID value from NAL unit header in HEVC FU packets

2025-11-23 Thread Zhao Zhili via ffmpeg-devel
> On Nov 21, 2025, at 12:37, 树 via ffmpeg-devel wrote: > > Dear FFmpeg developers, > > > Currently, when fragmenting HEVC NAL units for RTP transmission, the code > forces the Temporal ID (TID) field to 1 in the FU payload header, regardless > of the original TID valu

[FFmpeg-devel] [PATCH] avcodec/sanm: minor fixes (PR #20997)

2025-11-22 Thread Manuel Lauss via ffmpeg-devel
u(gb); +top = bytestream2_get_le16u(gb); w = bytestream2_get_le16u(gb); h = bytestream2_get_le16u(gb); bytestream2_skip(gb, 2); @@ -2110,6 +2110,9 @@ static int process_frame_obj(SANMVideoContext *ctx, GetByteContext *gb, memset(ctx->fbuf, 0, ctx->frm0_size);

[FFmpeg-devel] Re: [PATCH] tcp: add TCP keepalive tuning options

2025-11-21 Thread Discord Account via ffmpeg-devel
Thanks for the feedback. I'll focus on something else then. On Fri, Nov 21, 2025 at 11:36 PM Nicolas George via ffmpeg-devel < [email protected]> wrote: > Practice2001 via ffmpeg-devel (HE12025-11-21): > > Addition of tcp_keepalive, tcp_keepidle, tcp_keepintvl, and tcp

[FFmpeg-devel] Re: FFmpeg 6.1.4 5.1.8

2025-11-22 Thread Michael Niedermayer via ffmpeg-devel
On Fri, Nov 21, 2025 at 08:54:07PM +0100, Michael Niedermayer via ffmpeg-devel wrote: > Hi all > > I intend to make 6.1.4 and 5.1.8 in the next days > > if someone wants to backport something, do it now 6.1.4 done [...] -- Michael Gn

[FFmpeg-devel] Re: [PATCH] tcp: add TCP keepalive tuning options

2025-11-24 Thread Nicolas George via ffmpeg-devel
Practice2001 via ffmpeg-devel (HE12025-11-21): > Addition of tcp_keepalive, tcp_keepidle, tcp_keepintvl, and tcp_keepcnt > support to the TCP protocol. Exposeing these options to the HTTP protocol > so they can be used for HTTP(S) connections. Updated documentation. > Tested with:

[FFmpeg-devel] Re: [PATCH] tcp: add TCP keepalive tuning options

2025-11-24 Thread Nicolas George via ffmpeg-devel
Practice2001 via ffmpeg-devel (HE12025-11-21): > Addition of tcp_keepalive, tcp_keepidle, tcp_keepintvl, and tcp_keepcnt > support to the TCP protocol. Exposeing these options to the HTTP protocol > so they can be used for HTTP(S) connections. Updated documentation. > Tested with:

[FFmpeg-devel] Re: [PATCH] tcp: add TCP keepalive tuning options

2025-11-24 Thread Nicolas George via ffmpeg-devel
Nicolas George (HE12025-11-24): > Is there something new in this proposal that makes my comment of a few > days ago > <https://lists.ffmpeg.org/lore/ffmpeg-devel/[email protected]/> > obsolete? Sorry, disreagard this email, I sent it in reply to the wr

[FFmpeg-devel] Re: [REFUND-REQUEST] GSoC 2025 Mentor Summit Reimbursement Request

2025-11-24 Thread Stefano Sabatini via ffmpeg-devel
Il mar 4 nov 2025, 22:24 Michael Niedermayer ha scritto: > Hi Steven > > On Thu, Oct 30, 2025 at 03:19:54PM +0800, Steven Liu via ffmpeg-devel > wrote: > > Hi Folks, > > > > > > I would like to request reimbursement for the following expenses > > in

[FFmpeg-devel] Re: [PATCH] Fix WAV bitrate calculation when bits_per_coded_sample != 8

2025-11-24 Thread James Almer via ffmpeg-devel
On 11/17/2025 10:01 AM, Erdinc Kaya via ffmpeg-devel wrote: - Correctly scale bitrate by bits_per_coded_sample instead of assuming 8 bits per byte. When is a byte not 8 bits? - Prevents wrong bitrate reports for 16-bit PCM WAV files. Do you have a sample that gets the wrong bitrate? I

[FFmpeg-devel] [PATCH] release/8.0: libavformat: backporting bugfix for udp (PR #20938)

2025-11-16 Thread Jack Lau via ffmpeg-devel
ddr); pthread_mutex_unlock(&s->mutex); /* Blocking operations are always cancellation points; -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] configure: add detailed headers check for openssl (PR #20937)

2025-11-16 Thread Jack Lau via ffmpeg-devel
amp; require_pkg_config pocketsphinx pocketsphinx pocketsphinx/pocketsphinx.h ps_init enabled rkmpp && { require_pkg_config rkmpp rockchip_mpp rockchip/rk_mpi.h mpp_create && require_pkg_config rockchip_mpp "rockchip_mpp >= 1.3

[FFmpeg-devel] [PATCH] avfilter/x86/f_ebur128: only use filter_channels_avx for >= 2 channels (PR #20939)

2025-11-17 Thread Niklas Haas via ffmpeg-devel
2ch_avx; } -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] fate: add skip_clean option (PR #20950)

2025-11-17 Thread Kacper Michajłow via ffmpeg-devel
(){ -rm -rf ${build} ${inst} +test "$skip_clean" = "yes" || rm -rf ${build} ${inst} } report(){ -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avformat/aviobuf: ensure EAGAIN is not interpreted as EOF

2025-11-17 Thread Timo Rothenpieler via ffmpeg-devel
P_signature.asc Description: OpenPGP digital signature _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] fate: add more configure flags to fate config (PR #20947)

2025-11-17 Thread Kacper Michajłow via ffmpeg-devel
xxflags:+--extra-cxxflags="$extra_cxxflags"} \ +${extra_objcflags:+--extra-objcflags="$extra_objcflags"}\ ${extra_ldflags:+--extra-ldflags="$extra_ldflags"} \ ${extra_libs:+--extra-libs="$extra_libs"} \

[FFmpeg-devel] [PATCH] fftools/ffmpeg_mux_init: do not write encoder metadata for ogg files with bitexact

2025-11-15 Thread Tolga Celebi via ffmpeg-devel
av_dict_set(&ost->st->metadata, "encoder", encoder_string, AV_DICT_DONT_STRDUP_VAL | AV_DICT_DONT_OVERWRITE); -- 2.50.1 (Apple Git-155) ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/whip: fix weird code that clear extradata in rtp muxer (PR #20931)

2025-11-15 Thread Jack Lau via ffmpeg-devel
ict_set(&opts, "payload_type", buf, 0); snprintf(buf, sizeof(buf), "%d", is_video? whip->video_ssrc : whip->audio_ssrc); @@ -1998,6 +2057,8 @@ static av_cold void whip_deinit(AVFormatContext *s) s->streams[i]->priv_data = NULL; } +avcodec_parameters_free(&whip->video_par); +avcodec_parameters_free(&whip->audio_par); av_freep(&whip->sdp_offer); av_freep(&whip->sdp_answer); av_freep(&whip->whip_resource_url); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-15 Thread Michael Niedermayer via ffmpeg-devel
Hi everyone It seems neither Thilo nor Pierre have time to look into this. Does someone else have time ? (id like to work on the 8.0.1 release and backports and many other things) thx On Tue, Nov 04, 2025 at 11:45:40AM +0530, FLOSS Fund via ffmpeg-devel wrote: > Dear *FFmpeg* > &g

[FFmpeg-devel] [PATCH] configure: filter out -guard:signret from armasm flags (PR #20948)

2025-11-17 Thread Kacper Michajłow via ffmpeg-devel
.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Fixed broken aselect filter (PR #20949)

2025-11-17 Thread anders-mjoll via ffmpeg-devel
nit= aselect_init, .uninit = uninit, +.activate = activate, .priv_size = sizeof(SelectContext), FILTER_INPUTS(avfilter_af_aselect_inputs), }; -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscr

[FFmpeg-devel] [PATCH] qsv: fix pitch truncation on negative/oversized stride

2025-11-17 Thread Xiang, Haihao via ffmpeg-devel
sv_transfer_data_to(AVHWFramesContext *ctx, AVFrame *dst, } in.Info = out->Info; -map_frame_to_surface(src_frame, &in); + ret = map_frame_to_surface(src_frame, &in); +if (ret < 0) + return ret; do { err = MFXVideoVPP_RunFrameVPPAsync(s->session_upload, &in, out, NULL, &sync); -- 2.43.0 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-16 Thread Michael Niedermayer via ffmpeg-devel
On Sun, Nov 16, 2025 at 04:00:38PM +, Kieran Kunhya via ffmpeg-devel wrote: > On Sun, 16 Nov 2025, 15:12 Michael Niedermayer, > wrote: > > > > > But theres a lot more. We need some sort of wiki page, call for people > > sending project proposals, I mean we wan

[FFmpeg-devel] Re: [PATCH] fftools/ffmpeg_mux_init: do not write encoder metadata for ogg files with bitexact

2025-11-15 Thread Gyan Doshi via ffmpeg-devel
On 2025-11-16 04:02 am, Tolga Celebi via ffmpeg-devel wrote: From: tolgakaan12 <[email protected]> The set_encoder_id function in fftools/ffmpeg_mux_init was writing a shortened encoder tag even when -bitexact flag was set, instead of omitting it entirely

[FFmpeg-devel] Re: [PATCH] avformat/whip: Fix rtp_ctx->streams access (PR #20805)

2025-11-15 Thread Jack Lau via ffmpeg-devel
> On Nov 10, 2025, at 08:24, Michael Niedermayer via ffmpeg-devel > wrote: > > Hi Kieran > > On Sat, Nov 01, 2025 at 02:37:45AM +, Kieran Kunhya via ffmpeg-devel > wrote: >> On Fri, 31 Oct 2025, 17:06 michaelni via ffmpeg-devel, < >> ffmpeg-devel@

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-16 Thread Michael Niedermayer via ffmpeg-devel
Hi everyone On Sun, Nov 16, 2025 at 04:12:00PM +0100, Michael Niedermayer via ffmpeg-devel wrote: > Hi Kieran > > On Sun, Nov 16, 2025 at 01:56:49PM +, Kieran Kunhya via ffmpeg-devel > wrote: > > On Sun, 16 Nov 2025, 05:04 Michael Niedermayer via ffmpeg-devel, < > &

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-16 Thread Kieran Kunhya via ffmpeg-devel
o STF. > I need to read through this, maybe there are differences > To my knowledge there are no requirements for us to do this. It's a donation. Also we should allocate some of this to fund merging forks. > Sigh... Kieran > _______ ffm

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-16 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Sun, Nov 16, 2025 at 01:56:49PM +, Kieran Kunhya via ffmpeg-devel wrote: > On Sun, 16 Nov 2025, 05:04 Michael Niedermayer via ffmpeg-devel, < > [email protected]> wrote: > > > Hi everyone > > > > It seems neither Thilo nor Pierre have

[FFmpeg-devel] Re: [PATCH] libavfilter: Fix incorrect ebur128 peak calculation.

2025-11-17 Thread Niklas Haas via ffmpeg-devel
On Monday, November 17th, 2025 at 3:48 PM, Tobias Rapp via ffmpeg-devel wrote: > > > On 11/11/2025 03:33, Michael Niedermayer via ffmpeg-devel wrote: > > > Hi > > > > adding niklas to the CC so its not missed > > but i agree the patch LGTM > > &g

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-17 Thread Michael Niedermayer via ffmpeg-devel
Hi On Sun, Nov 16, 2025 at 09:16:03PM -0800, ff--- via ffmpeg-devel wrote: > On 2025-11-16 07:59, Michael Niedermayer via ffmpeg-devel wrote: > > On Sun, Nov 16, 2025 at 04:12:00PM +0100, Michael Niedermayer via > > ffmpeg-devel wrote: > > > On Sun, Nov 16, 2025 at 01:56:4

[FFmpeg-devel] Re: [PATCH] libavfilter: Fix incorrect ebur128 peak calculation.

2025-11-17 Thread Tobias Rapp via ffmpeg-devel
On 11/11/2025 03:33, Michael Niedermayer via ffmpeg-devel wrote: Hi adding niklas to the CC so its not missed but i agree the patch LGTM On Tue, Nov 04, 2025 at 08:52:36PM +0100, Nicolas George via ffmpeg-devel wrote: Carl Hetherington via ffmpeg-devel (HE12025-11-03): Since

[FFmpeg-devel] github sponsors

2025-11-17 Thread Michael Niedermayer via ffmpeg-devel
Description: PGP signature ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Revert " avfilter/avfilter: always forward request frame in filter_activate_default" (PR #20944)

2025-11-17 Thread Jack Lau via ffmpeg-devel
_______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] [7.1] Backport HTTP and RTSP fixes (PR #20943)

2025-11-17 Thread Marvin Scholz via ffmpeg-devel
if (!strncmp(buf1, "RTSP/", 5)) { get_word(buf1, sizeof(buf1), &p); reply->status_code = atoi(buf1); +p += strspn(p, SPACE_CHARS); av_strlcpy(reply->reason, p, sizeof(reply->reason)); } e

[FFmpeg-devel] FFmpeg 8.0.1 release

2025-11-15 Thread Michael Niedermayer via ffmpeg-devel
: 9FF2128B147EF6730BADF133611EC787040B0FAB In a rich man's house there is no place to spit but his face. -- Diogenes of Sinope signature.asc Description: PGP signature ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to ffmpeg-dev

[FFmpeg-devel] Re: FFmpeg 8.0.1 release

2025-11-15 Thread Zhao Zhili via ffmpeg-devel
> On Nov 15, 2025, at 23:15, Michael Niedermayer via ffmpeg-devel > wrote: > > Hi all > > due to accumulated bug fixes, i think we should make a new release from > release/8.0 soon > > if tehres something you want backported, please backport it. (ill of co

[FFmpeg-devel] Re: [PATCH] web/donations: Add my ETH/USDC/Bitcoin addresses to my donation entry.

2025-11-15 Thread Michael Niedermayer via ffmpeg-devel
On Sat, Nov 15, 2025 at 06:09:59AM +0100, Michael Niedermayer via ffmpeg-devel wrote: > On Fri, Nov 14, 2025 at 04:08:40PM -0800, Jacob Lifshay via ffmpeg-devel > wrote: > > On Fri, Nov 14, 2025 at 1:45 PM Michael Niedermayer via ffmpeg-devel > > wrote: > > > +

[FFmpeg-devel] [PATCH] doc: Fix building with makeinfo 4.8 (PR #20927)

2025-11-15 Thread Martin Storsjö via ffmpeg-devel
@@ Run the FATE test suite (requires the fate-suite dataset). @end table @section Makefile variables -@anchor {makefile variables} +@anchor{makefile variables} @table @env @item V -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To

[FFmpeg-devel] [PATCH] web/donations: Add Paul B Mahol

2025-11-15 Thread Kieran Kunhya via ffmpeg-devel
Hello, I was asked to add a Paul B Mahol donation entry. Kieran 0001-donations-Add-Paul-B-Mahol.patch Description: Binary data ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [REFUND-REQUEST] GSoC 2025 Mentor Summit Reimbursement Request

2025-11-16 Thread Steven Liu via ffmpeg-devel
Michael Niedermayer 于2025年11月5日周三 05:24写道: > > Hi Steven > > On Thu, Oct 30, 2025 at 03:19:54PM +0800, Steven Liu via ffmpeg-devel wrote: > > Hi Folks, > > > > > > I would like to request reimbursement for the following expenses > > incurred attendi

[FFmpeg-devel] [PATCH] doc/fate: document setting of session-wide env variables (PR #20930)

2025-11-15 Thread Gyan Doshi via ffmpeg-devel
ent session: + +@example +export FATE_SAMPLES=/path/to/fate-suite +make fate-rsync +make fate +@end example + +or in isolation for a single command by prepending it: @example FATE_SAMPLES=/path/to/fate-suite make fate-rsync -- 2.49.1 ___ ffmpeg-de

[FFmpeg-devel] Re: Update on your FLOSS/fund application

2025-11-16 Thread Kieran Kunhya via ffmpeg-devel
On Sun, 16 Nov 2025, 05:04 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi everyone > > It seems neither Thilo nor Pierre have time to look into this. > Does someone else have time ? (id like to work on the 8.0.1 release > and backports and many

[FFmpeg-devel] [PATCH] avformat/aviobuf: ensure EAGAIN is not interpreted as EOF

2025-11-17 Thread Daniel Riehm via ffmpeg-devel
rwise, lower score. */ if (ret != AVERROR_EOF) goto fail; -- 2.34.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] qsv: fix pitch truncation on negative/oversized stride

2025-11-17 Thread Zhao Zhili via ffmpeg-devel
> On Nov 18, 2025, at 09:26, Xiang, Haihao via ffmpeg-devel > wrote: > > From: Disclosure > > Reviewed-by: Zhong Li > Reviewed-by: Haihao Xiang > Cc: Michael Niedermayer > Signed-off-by: Disclosure > --- > libavcodec/qsv.c | 2 ++ > libavfilt

[FFmpeg-devel] [PATCH] swscale: refactor and optimize xyz12Torgb48 (PR #21026)

2025-11-26 Thread arpadp-arm via ffmpeg-devel
PR #21026 opened by arpadp-arm URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21026 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21026.patch This series prepares and optimizes the `xyz12Torgb48` path in swscale. Patch 1: refactors the XYZ/RGB state into a `ColorXform` struct and adds

[FFmpeg-devel] Re: [PATCH] vulkan: add a shader-based decoder for DPX (PR #21000)

2025-11-26 Thread Jerome Martinez via ffmpeg-devel
leneck, having difficulties to feed libavcodec quickly enough (here, 24 fps = 4.5 GB/s). Some DPX are not well decoded. RGB and Y 12/16 bit (for 12-bit it seems to come from the FFV1 Vulkan encoder we tested at the same time). Le 23/11/2025 à 01:20, Lynne via ffmpeg-devel a écrit : PR #21000 ope

[FFmpeg-devel] Re: [PATCH 0/3] swscale: refactor and optimize xyz12Torgb48

2025-11-26 Thread Martin Storsjö via ffmpeg-devel
Hi Arpad! On Wed, 26 Nov 2025, Arpad Panyik via ffmpeg-devel wrote: This series prepares and optimizes the xyz12Torgb48 path in swscale. Patch 1 refactors the XYZ/RGB state into a ColorXform struct and adds a per-context xyz12Torgb48 hook with no functional changes. Patch 2 adds checkasm

[FFmpeg-devel] [PATCH 0/3] swscale: refactor and optimize xyz12Torgb48

2025-11-26 Thread Arpad Panyik via ffmpeg-devel
644 libswscale/aarch64/xyz2rgb_neon.S create mode 100644 tests/checkasm/sw_xyz2rgb.c Signed-off-by: Arpad Panyik -- 2.43.0 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH 1/3] swscale: Refactor XYZ+RGB state and add xyz12Torgb48 hook

2025-11-26 Thread Arpad Panyik via ffmpeg-devel
_matrix, sizeof(c->xyz2rgb_matrix)); -memcpy(c->rgb2xyz_matrix, rgb2xyz_matrix, sizeof(c->rgb2xyz_matrix)); +memcpy(c->xyz2rgb.matrix, xyz2rgb_matrix, sizeof(c->xyz2rgb.matrix)); +memcpy(c->rgb2xyz.matrix, rgb2xyz_matrix, sizeof(c->rgb2xyz.matrix)); #if CONFIG_SMALL

[FFmpeg-devel] [PATCH 2/3] checkasm: Add xyz12Torgb48le test

2025-11-26 Thread Arpad Panyik via ffmpeg-devel
E_SIZE * NUM_LINES)) +fail(); + +if (!(width & 3) && height == NUM_LINES) { +bench_new((const SwsContext*)c, dst_new, dstStride, + src, srcStride, width, height); +} +} +sws_freeContext(sws); +} +} +} + +#undef NUM_LINES +#undef MAX_LINE_SIZE + +void checkasm_check_sw_xyz2rgb(void) +{ +check_xyz12Torgb48le(); +report("xyz12Torgb48le"); +} -- 2.43.0 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH 3/3] swscale: Add AArch64 Neon path for xyz12Torgb48 LE

2025-11-26 Thread Arpad Panyik via ffmpeg-devel
Add optimized Neon code path for the little endian case of the xyz12Torgb48 function. The innermost loop processes the data in 4x2 pixel blocks using software gathers with the matrix multiplication and clipping done by Neon. Relative runtime of micro benchmarks after this patch on some Cortex and

[FFmpeg-devel] [PATCH] libavcodec: support frame dropping in libvpxenc

2025-11-26 Thread Dariusz Marcinkiewicz via ffmpeg-devel
break; + } + + av_log(avctx, AV_LOG_DEBUG, "Dropped frame with pts %"PRId64"\n", + fd.pts); + av_fifo_drain2(fifo, 1); + frame_data_uninit(&fd); } pkt->duration = fd.duration; -- 2.52.0.487.g5c8c507ade-goog __________

[FFmpeg-devel] [PATCH v2] libavcodec/v4l2_buffers: fixing buffer alignment issue

2025-11-25 Thread Wenjie Yin via ffmpeg-devel
_uv : scanline_y); +ret = v4l2_plane_to_plane_align(out, 0, frame->data[i], size, offset, frame->linesize[i], h, bytesperline); +if (ret) +return ret; +offset += size; +} } return 0;

[FFmpeg-devel] [PATCH v2] libavcodec/v4l2_buffers: fixing buffer alignment issue

2025-11-25 Thread Wenjie Yin via ffmpeg-devel
erline); +if (ret) +return ret; + +offset += size; +} + } + return 0; } -- 2.34.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] configure: fix static library suffix for MSVC builds

2025-11-25 Thread Discord Account via ffmpeg-devel
M Daniel Verkamp wrote: > On Sat, Nov 22, 2025 at 3:51 PM Practice2001 via ffmpeg-devel > wrote: > > MSVC static builds currently always use ".a" for static library suffixes > > (e.g. libavcodec.a, libavformat.a). This causes failures when linking > > with Visual

[FFmpeg-devel] [PATCH] forgejo/workflows: make test shared/static mode more human readable (PR #21016)

2025-11-25 Thread Timo Rothenpieler via ffmpeg-devel
ot;shared" ] || echo --enable-shared --disable-static) \ || CFGRES=$? && CFGRES=$? cat ffbuild/config.log exit $CFGRES -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avfilter: Add vsrc_amf - AMF based screen capture (PR #21015)

2025-11-25 Thread Nicolas George via ffmpeg-devel
ArazIusubov via ffmpeg-devel (HE12025-11-25): > PR #21015 opened by ArazIusubov > URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21015 > Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21015.patch > > This patch adds screen capture support via AMF vsrc_a

[FFmpeg-devel] Re: FFmpeg 8.1 and 9.0

2025-11-26 Thread James Almer via ffmpeg-devel
On 11/26/2025 7:44 PM, Michael Niedermayer via ffmpeg-devel wrote: Hi all I plan to branch and make 8.1 in February and 9.0 in May Is 8.1 meant to be LTS? I forgot how the plan was in regards to that. I recall 5.1 and 7.1 are considered LTS (Probably because of Debian). Ubuntu will probably

[FFmpeg-devel] Re: Appreciation + Sharing a Project Built on FFmpeg

2025-11-26 Thread Michael Niedermayer via ffmpeg-devel
Hi Shashwat, thanks a lot for your mail and sorry for the very late reply. messages like yours are really appreciated, even if they sometimes end up buried in busy inboxes for a while. Best regards, Michael On Tue, Nov 18, 2025 at 06:08:53AM +, Shashwat Verma via ffmpeg-devel wrote: >

[FFmpeg-devel] Re: FFmpeg 8.1 and 9.0

2025-11-26 Thread Michael Niedermayer via ffmpeg-devel
Hi James On Wed, Nov 26, 2025 at 08:01:11PM -0300, James Almer via ffmpeg-devel wrote: > On 11/26/2025 7:44 PM, Michael Niedermayer via ffmpeg-devel wrote: > > Hi all > > > > I plan to branch and make 8.1 in February > > and 9.0 in May > > Is 8.1 meant to be

[FFmpeg-devel] Re: FFmpeg 8.1 and 9.0

2025-11-26 Thread James Almer via ffmpeg-devel
On 11/26/2025 10:57 PM, Michael Niedermayer via ffmpeg-devel wrote: Hi James On Wed, Nov 26, 2025 at 08:01:11PM -0300, James Almer via ffmpeg-devel wrote: On 11/26/2025 7:44 PM, Michael Niedermayer via ffmpeg-devel wrote: Hi all I plan to branch and make 8.1 in February and 9.0 in May Is

[FFmpeg-devel] [PATCH] Fix fate-filter-drawvg-video in MINGW64. (PR #21030)

2025-11-26 Thread Ayose C. via ffmpeg-devel
lavf/drawvg.lines +DRAWVG_SCRIPT_LINES = tests/data/fate/drawvg.lines +$(DRAWVG_SCRIPT_LINES): $(SRC_PATH)/tests/ref/lavf/drawvg.lines + $(M)cp $< $@ + FATE_FILTER_VSYNTH_VIDEO_FILTER-$(CONFIG_DRAWVG_FILTER) += fate-filter-drawvg-video fate-filter-drawvg-video: $(DRAWVG_SCRIPT_LINES) fate-fi

[FFmpeg-devel] Re: FFmpeg 8.1 and 9.0

2025-11-26 Thread Michael Niedermayer via ffmpeg-devel
Hi Lynne On Thu, Nov 27, 2025 at 03:17:34AM +0100, Lynne via ffmpeg-devel wrote: > On 26/11/2025 23:44, Michael Niedermayer via ffmpeg-devel wrote: > > Hi all > > > > I plan to branch and make 8.1 in February > > and 9.0 in May > > I'd like 8.1 in late De

[FFmpeg-devel] FFmpeg 8.1 and 9.0

2025-11-26 Thread Michael Niedermayer via ffmpeg-devel
would be bankrupt already. signature.asc Description: PGP signature ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Request to Join FFmpeg Mailing List

2025-11-26 Thread Iulia Ailincai via ffmpeg-devel
proving our technology and keeping it responsible and ethical. _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libavdevice/decklink: add support for DeckLink SDK 14.3 (PR #21029)

2025-11-26 Thread Thomas Gritzan via ffmpeg-devel
ctx->bmd_tb_num, ctx->bmd_tb_den); /* Pass ownership to DeckLink, or release on failure */ @@ -874,7 +904,7 @@ av_cold int ff_decklink_write_header(AVFormatContext *avctx) return ret; /* Get output device. */ -if (ctx->dl->QueryInterface(IID_IDeckLinkOutput

[FFmpeg-devel] [PATCH] avformat/whip: several fixes (PR #20955)

2025-11-18 Thread Jack Lau via ffmpeg-devel
amp;& +(version == DTLS_VERSION_10 || version == DTLS_VERSION_12); +} + return ret; } -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

<    28   29   30   31   32   33   34   35   36   >