Re: [FFmpeg-devel] [EXTERNAL] Re: [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access [libavcodec/jpeg2000dwt.c:dwt_decode97_float]

2025-05-16 Thread Chitra Dey Sarkar via ffmpeg-devel
-Original Message- From: ffmpeg-devel On Behalf Of Michael Niedermayer Sent: Friday, May 16, 2025 2:44 AM To: FFmpeg development discussions and patches Subject: [EXTERNAL] Re: [FFmpeg-devel] [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access

Re: [FFmpeg-devel] [EXTERNAL] Re: [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access [libavcodec/jpeg2000dwt.c:dwt_decode97_float]

2025-05-14 Thread Chitra Dey Sarkar via ffmpeg-devel
-Original Message- From: Michael Niedermayer Sent: Wednesday, May 14, 2025 9:40 AM To: FFmpeg development discussions and patches Cc: Chitra Dey Sarkar Subject: [EXTERNAL] Re: [FFmpeg-devel] [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access

[FFmpeg-devel] Test email from Chitra - [email protected]

2025-05-13 Thread Chitra Dey Sarkar via ffmpeg-devel
This is a test email ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access [libavcodec/jpeg2000dwt.c:dwt_decode97_float]

2025-05-13 Thread Chitra Dey Sarkar via ffmpeg-devel
for (int lp = 0; lp < lv; lp++) +for (int j = 0; j < lh; j++) +data[w * lp + j] = array2DBlock[j * lv + lp]; } } + +if (!useFallback) +av_free(array2DBlock); } static void sr_1d97_int(int32_t *p, int i0, int i1) -- 2.49.0.

[FFmpeg-devel] [PATCH] Boost FPS and performance: Optimize vertical loop for cache-friendly access [libavcodec/jpeg2000dwt.c:dwt_decode97_float]

2025-05-14 Thread Chitra Dey Sarkar via ffmpeg-devel
[email protected] X-Unsent: 1 To: [email protected] From earlier Hi Michael, Thanks so much for getting back! I'll quickly implement the first 3 comments For the last comment is there a way for me to reach you on regular email to elaborate the proposed change more with a better explanation. The 

[FFmpeg-devel] libswscale.c : ff_xyz12Torgb48 expensive unaligned 16 byte accesses

2025-05-25 Thread Chitra Dey Sarkar via ffmpeg-devel
t; 4); Regards Chitra _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avformat/webvttdec: improve WebVTT parsing

2025-05-27 Thread Marcos Del Sol via ffmpeg-devel
ing much easier. The logic is the exact same. -Mensaje original- De: Marcos Para: ffmpeg-devel CC: Marcos Fecha: martes, 27 de mayo de 2025 12:29 CEST Asunto: [PATCH] avformat/webvttdec: improve WebVTT parsing The parser will now strictly check if WebVTT files start with the correct &qu

[FFmpeg-devel] [PATCH v2 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-06-04 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
type == AV_PICTURE_TYPE_I) flags |= AOM_EFLAG_FORCE_KF; + +res = add_hdr_plus(avctx, rawimg, frame); +if (res < 0) +return res; } res = aom_codec_encode(&ctx->encoder, rawimg, timestamp, duration, flags); diff --git a/libavcodec/version.h b/

[FFmpeg-devel] [PATCH v2 2/2] avcodec/libaom: Add tests for HDR10+ metadata support

2025-06-04 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
_DATA] +[/FRAME] \ No newline at end of file -- 2.49.0.1204.g71687c7c1d-goog _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 2/2] avcodec/libaom: Add tests for HDR10+ metadata support

2025-05-30 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
/1023 +[/SIDE_DATA] +[/FRAME] \ No newline at end of file -- 2.49.0.1204.g71687c7c1d-goog ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-05-30 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
add_hdr_plus(avctx, rawimg, frame); +if (res < 0) +return res; } res = aom_codec_encode(&ctx->encoder, rawimg, timestamp, duration, flags); diff --git a/libavcodec/version.h b/libavcodec/version.h index eedf4c5a92..cde7d40bc0 100644 --- a/libavcodec/version.h

[FFmpeg-devel] [PATCH] ffprobe: add -codec: option

2025-06-10 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
tic const OptionDef real_options[] = { { "print_filename",OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_print_filename}, "override the printed input filename", "print_file"}, { "find_stream_info", OPT_TYPE_BOOL, OPT_INPUT | OPT_EXPERT, { &find

Re: [FFmpeg-devel] [PATCH] avformat/mpegts: Passthrough SCTE 35 Current behavior breaks SCTE 35 by wrapping it in a PES packet, this adds the logic for the SCTE 35 messages to be passed through cleanl

2025-06-12 Thread Pierre Le Fevre via ffmpeg-devel
--- Begin Message --- Hi Devin, I saw your patch but noticed it was still not merged. Since it’s more comprehensive, I’m all for merging your patch instead of mine if it’s not too stale. Best, Pierre From: ffmpeg-devel on behalf of Devin Heitmueller Date: Wednesday, 11 June 2025 at 16:32 To

[FFmpeg-devel] [PATCH] avcodec/itut35: always check the provider code and country code together

2025-06-12 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
bytestream_put_be16(&payload, 0x01); // provider_oriented_code bytestream_put_byte(&payload, 0x04); // application_identifier -- 2.50.0.rc2.692.g299adb8693-goog --- End Message --- ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avformat/mpegts: Passthrough SCTE 35 Current behavior breaks SCTE 35 by wrapping it in a PES packet, this adds the logic for the SCTE 35 messages to be passed through cleanly.

2025-06-11 Thread Pierre Le Fevre via ffmpeg-devel
ype != AVMEDIA_TYPE_ATTACHMENT && par->codec_id != AV_CODEC_ID_VP8 && par->codec_id != AV_CODEC_ID_VP9 && - par->codec_id != AV_CODEC_ID_SMPTE_2038) { + par->codec_id != AV_CODEC_ID_SMPTE_2038 &

[FFmpeg-devel] [PATCH v3 2/2] avcodec/libaom: Add test for HDR10+ metadata support

2025-08-11 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
er_curve_anchors=819/1023 +bezier_curve_anchors=922/1023 +[/SIDE_DATA] +[/FRAME] \ No newline at end of file -- 2.50.1.703.g449372360f-goog _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscri

[FFmpeg-devel] [PATCH v3 1/2] avcodec/libaom: Add HDR10+ metadata support

2025-08-11 Thread Maryla Ustarroz-Calonge via ffmpeg-devel
, rawimg, frame); +if (res < 0) +return res; } res = aom_codec_encode(&ctx->encoder, rawimg, timestamp, duration, flags); diff --git a/libavcodec/version.h b/libavcodec/version.h index da2264a097..2e28c23410 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -3

Re: [FFmpeg-devel] [PATCH] Mark C globals with small code model (PR #20150)

2025-08-17 Thread Rémi Denis-Courmont via ffmpeg-devel
ler then. Is this attribute even defined by the X86 ABI? How will that work on compilers other than LLVM? -- 德尼-库尔蒙‧雷米 Tapiolan uusi kaupunki, Uudenmaan entinen Suomen tasavalta ___________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/

Re: [FFmpeg-devel] Forgejo entry threshold

2025-08-17 Thread Rémi Denis-Courmont via ffmpeg-devel
e with email at all and never will be, since email simply can't convey and track the necessary info accurately and reliably, so Forgejo at least is no worse than email. -- Rémi Denis-Courmont Tapiolan uusi kaupunki, Uudenmaan entinen Suomen tasavalta _

[FFmpeg-devel] [QUESTION] Regarding my first patch submission: "filters: add separator line to show_filters output"

2025-09-17 Thread 张洪源 via ffmpeg-devel
ne to show_filters output" I submitted this patch via email on [Date of Submission], but I have been unable to locate it in the mailing list archives at https://ffmpeg.org/pipermail/ffmpeg-devel/. As this is my first time contributing to FFmpeg, I am concerned that there might be an iss

[FFmpeg-devel] [PATCH] WIP: fftools/opt_common: add separator line to show_filters output (PR #20547)

2025-09-18 Thread add-uos-ffmpeg via ffmpeg-devel
+ " | = Source or sink filter\n" + " --\n"); while ((filter = av_filter_iterate(&opaque))) { descr_cur = descr; for (i = 0; i < 2; i++) { -- 2.49.1 _______ ffmpeg-devel mailing

[FFmpeg-devel] Re: [POLL] [VOTE] code.ffmpeg.org vs. ML

2025-09-16 Thread Diederick C. Niehorster via ffmpeg-devel
F On Tue, Sep 16, 2025 at 10:50 AM Michael Niedermayer via ffmpeg-devel wrote: > > Hi all > > 2 months ago we voted on testing Forgejo vs Gitlab, we picked and tested > Forgejo. And as said in that vote, (and surprisingly, i have not forgotten it) > heres the "after testi

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-18 Thread Harish Raja Selvan via ffmpeg-devel
n my setup, this configuration requires the gas-preprocessor.pl patch, as the build otherwise ends with a “GNU assembler not found” error. Thanks, Harish Raja Selvan. 0001-compat-windows-makedef-fix-.def-generation-for-ARM64.patch Description: 0001-compat-windows-makedef-fix-.def-generation-for-ARM6

[FFmpeg-devel] Re: [RFC] dormant tickets

2025-10-18 Thread Pierre-Anthony Lemieux via ffmpeg-devel
On Tue, Sep 23, 2025 at 3:58 PM Michael Niedermayer via ffmpeg-devel wrote: > > Hi > > Should tickets which are inactive be closed with a new resolution:dormant? IMHO tickets should not be closed until resolved with a clear rationale -- a resolution can be "will not fix&quo

[FFmpeg-devel] Re: [POLL][VOTE] Sponsors & Funding

2025-10-18 Thread Ronald S. Bultje via ffmpeg-devel
Hi Michael, On Thu, Oct 9, 2025 at 11:01 AM Michael Niedermayer via ffmpeg-devel < [email protected]> wrote: > The number of people voting was a bit disappointing but I can't speak for others, but I saw the vote request and didn't find it very serious. What I mean

[FFmpeg-devel] Re: [PATCH] avfilter: add avfilter_forward_command API for recursive command processing. (PR #20621)

2025-10-18 Thread 岑湛权 via ffmpeg-devel
d()` provides a solution. - Includes detailed, reproducible test cases with code snippets. Best regards, Cen Zhanquan ​ Replied Message ---- | From | Nicolas George via ffmpeg-devel | | Date | 09/28/2025 19:18 | | To | FFmpeg development discussions and patches | | Cc | cenzhanquan1

[FFmpeg-devel] Re: Soliciting sponsorship (was: WIP: avfilter: add Bungee audio stretch filter (PR #20697))

2025-10-18 Thread Rémi Denis-Courmont via ffmpeg-devel
Hi, Le 14 octobre 2025 13:32:00 GMT+03:00, Nicolas George via ffmpeg-devel a écrit : >michaelni (HE12025-10-13): >> Also you would have to convince the community, that we want this. iam >> not sure how the community would think about it, but for example you >> could offer t

[FFmpeg-devel] Re: [RFC] FFlabs Sponsor

2025-10-18 Thread Rémi Denis-Courmont via ffmpeg-devel
Le perjantaina 10. lokakuuta 2025, 15.28.58 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > The FFmpeg community decided, that we should actively look for sponsors. Insofar as "absentees are always wrong" (French proverb), yes, but it should be noted that

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-18 Thread Rémi Denis-Courmont via ffmpeg-devel
Le perjantaina 3. lokakuuta 2025, 23.49.46 Itä-Euroopan kesäaika Stephen Hutchinson via ffmpeg-devel a écrit : > While I haven't gotten through adding the more newly-added external > libraries to the tedious mingw build guide, IIRC most/all of them > already can be built natively f

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-18 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 3 octobre 2025 15:44:56 GMT+03:00, "Martin Storsjö via ffmpeg-devel" a écrit : >First off, calling a C function, which turns out to be in x86_64 mode, will >clobber those registers. Will it? I thought code JITed from x86_64 to AArch64 could *not* access the reserved reg

[FFmpeg-devel] [PATCH] RVV: fix and improve lavc/pixblockdsp (PR #20647)

2025-10-18 Thread Rémi Denis-Courmont via ffmpeg-devel
_riscv_v_min_vlen if (bits <= __riscv_v_min_vlen) -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: New mailing-list archive

2025-10-13 Thread Diederick C. Niehorster via ffmpeg-devel
On Mon, Oct 13, 2025 at 10:33 AM Nicolas George via ffmpeg-devel wrote: > > Hi. I just went to the new archive for this mailing-list. > > Is it just me or does it suck? > > I am looking at > <https://lists.ffmpeg.org/archives/list/[email protected]/thread/OU7LIDH6

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-17 Thread Harish Raja Selvan via ffmpeg-devel
_cmd = grep ! /^-I/, @gcc_cmd; -- 2.50.1.windows.1 From: Martin Storsjö Sent: 22 September 2025 17:18 To: harish.rajaselvan--- via ffmpeg-devel Cc: Harish Raja Selvan Subject: Re: [FFmpeg-devel] [DISCUSSION] Adding ARM64EC support to FFmpeg On Mon, 22 Sep 2025, ha

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-17 Thread Rémi Denis-Courmont via ffmpeg-devel
ad, f.d. Finska republik Nylands _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-09-27 Thread Rémi Denis-Courmont via ffmpeg-devel
Hello, Le maanantaina 22. syyskuuta 2025, 13.04.40 Itä-Euroopan kesäaika harish.rajaselvan--- via ffmpeg-devel a écrit : > I'm reaching out regarding ARM64EC support for FFmpeg on Windows. I don't really see the point. There is no use case for FFmpeg proper (the executable) to t

[FFmpeg-devel] [PATCH] Add myself to CODEOWNERS (PR #20620)

2025-09-27 Thread Rémi Denis-Courmont via ffmpeg-devel
libswscale/.* @haasn # tools @@ -210,4 +214,5 @@ doc/.* @GyanD # tests # = +tests/checkasm/riscv/.* @Courmisch tests/ref/fate/sub-mcc.* @programmerjake -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-28 Thread Rémi Denis-Courmont via ffmpeg-devel
Le maanantaina 15. syyskuuta 2025, 0.23.17 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > Hi everyone > > trac supports, custom search queries, customly formated results > > People can vote on tickets, I don't see much value in voting on tickets. I

[FFmpeg-devel] Re: [RFC] Issue tracker

2025-09-28 Thread Rémi Denis-Courmont via ffmpeg-devel
Le sunnuntai 28. syyskuuta 2025, 11.51.13 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > Hi Remi > > On Sun, Sep 28, 2025 at 10:54:14AM +0300, Rémi Denis-Courmont via ffmpeg- devel wrote: > > Le maanantaina 15. syyskuuta 2025, 0.23.17 Itä-Euroopan k

[FFmpeg-devel] [PATCH] Add support for copying metadata boxed/mebx defined in ISO 14496-12

2025-10-21 Thread Holliger, Lukas J via ffmpeg-devel
x27;b','x')) { +mov_write_gmhd_tag(pb, track); } if (track->mode == MODE_MOV) /* ISO 14496-12 8.4.3.1 specifies hdlr only within mdia or meta boxes */ mov_write_hdlr_tag(s, pb, NULL); @@ -8803,6 +8839,7 @@ static const AVCodecTag codec_mp4_tags[] = { { AV_CODEC_ID_DVD_SUBTITLE,

Re: [FFmpeg-devel] [POLL][RFC] Merge vs Cherry pick for integration of changes

2025-08-23 Thread Rémi Denis-Courmont via ffmpeg-devel
Le perjantaina 22. elokuuta 2025, 15.59.14 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > > Since you tagged the GA on this, I am going to go ahead and request that > > a formal GA vote, which I assume will be conducted before any action, must > > have

Re: [FFmpeg-devel] STF 2025 grant request (2025-09-01 target)

2025-08-24 Thread Rémi Denis-Courmont via ffmpeg-devel
Le sunnuntai 24. elokuuta 2025, 13.47.49 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > Then thilo was attacked by derek claiming he stole money. Derek claimed that Thilo had some sort of alcohol-related issue. This was totally unacceptable behaviour, since he failed

[FFmpeg-devel] Reminder: STF 2025 grant proposals due on 2025-09-01

2025-08-24 Thread Pierre-Anthony Lemieux via ffmpeg-devel
. Best, -- Pierre ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] FFmpeg 8.0 Release

2025-08-17 Thread Rémi Denis-Courmont via ffmpeg-devel
ext* week but not right now. > risc-v looks mostly green on fate, am i missing something ? The RVA20 lines are green, but the V line is yellow. -- ヅニ-クーモン・レミ Tapio's place new town, former Finnish Republic of Uusimaa ___________ ffmpeg-devel mailing

Re: [FFmpeg-devel] [PATCH] doc/community: Update Community Committee section to reflect reality (PR #20224)

2025-08-17 Thread Rémi Denis-Courmont via ffmpeg-devel
standpoint, 2 members who are inactive, one is extremely busy and one has had to deal with a bunch of different personal issues, and I can't make decisions alone. -- 德尼-库尔蒙‧雷米 Tapio's place new town, former Finnish Republic of Uusimaa ____

[FFmpeg-devel] [PATCH] .forgejo/CODEOWNERS: add myself to relevant files (PR #20272)

2025-08-17 Thread Zane van Iperen via ffmpeg-devel
avformat/kvag.* @zane +libavformat/pp_bnk.* @zane +libavformat/scd.* @zane libavformat/iamf.* @jamrial libavformat/.*jpegxl.* @Traneptora libavformat/.*jxl.* @Traneptora -- 2.49.1 _______ ffmpeg-devel mailing list [email protected] https://ffmpe

[FFmpeg-devel] HTML emails (was Re: [FFFjo] [FFmpeg/FFmpeg] .NET Bindings Crash (MS_VC_EXCEPTION / 0x406d1388) (Issue #20420))

2025-09-05 Thread Rémi Denis-Courmont via ffmpeg-devel
Doesn't this ML have a plain text policy? I suppose that this is a problem with FFFjo rather than OP, but still. -- Rémi Denis-Courmont Villeneuve de Tapiola, ex-République finlandaise d´Uusimaa ___ ffmpeg-devel mailing list -- ffmpeg-

[FFmpeg-devel] Re: [PATCH v8] libavcodec/riscv: add RVV optimized idct_32x32_8 for HEVC

2025-09-06 Thread Rémi Denis-Courmont via ffmpeg-devel
Le maanantaina 25. elokuuta 2025, 11.35.28 Itä-Euroopan kesäaika daichengrong via ffmpeg-devel a écrit : > ping~ Can you please submit via code.ffmpeg.org ? -- ヅニ-クーモン・レミ Tapio's place new town, former Finnish Republic of Uusimaa ___ ffmp

[FFmpeg-devel] [PATCH v2] avcodec/aac_ac3_parser: fix the warning caused by bit_rate not being initialized.

2025-09-05 Thread 岑湛权 via ffmpeg-devel
rds compatible HE-AAC the sample rate, channel count, and total number of samples found in an AAC ADTS header are not -- 2.34.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-09-05 Thread Rémi Denis-Courmont via ffmpeg-devel
Le tiistaina 2. syyskuuta 2025, 16.10.04 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > Simple awnser: because iam not 100% sure Then don't allow it until you, or rather SPI, are sure. You don't want to get into legal/fiscal troubles, especially not for sma

[FFmpeg-devel] Re: [PATCH v8] libavcodec/riscv: add RVV optimized idct_32x32_8 for HEVC

2025-09-05 Thread Rémi Denis-Courmont via ffmpeg-devel
Le perjantaina 5. syyskuuta 2025, 18.11.49 Itä-Euroopan kesäaika Rémi Denis- Courmont via ffmpeg-devel a écrit : > Le maanantaina 25. elokuuta 2025, 11.35.28 Itä-Euroopan kesäaika > daichengrong via ffmpeg-devel a écrit : > > > ping~ > > > Can you please submit via

[FFmpeg-devel] [PATCH 1/1] avcodec/aac_ac3_parser: fix the warning caused by bit_rate not being initialized.

2025-09-04 Thread 岑湛权 via ffmpeg-devel
mples found in an AAC ADTS header are not -- 2.34.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/decode: fix enum conversion warnings in side_data_map.

2025-09-04 Thread 岑湛权 via ffmpeg-devel
function expects AVPacketSideDataType. CC: [email protected] Signed-off-by: zhanquan cen --- libavcodec/decode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/decode.c b/libavcodec/decode.c index f395948d60..f6ed1b4600 100644 --- a/libavcodec/decode.c

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-09 Thread Rémi Denis-Courmont via ffmpeg-devel
Le tiistaina 9. syyskuuta 2025, 15.10.37 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > > 2) A legal entity with clear oversight rules that sponsors can trust and > > influence collects funding from sponsors and decides whom to pay for > > what. > We h

[FFmpeg-devel] Re: [RFC] Sponsors & Funding

2025-09-09 Thread Rémi Denis-Courmont via ffmpeg-devel
Hi, Le 9 septembre 2025 11:19:26 GMT+03:00, Michael Niedermayer via ffmpeg-devel a écrit : >Hi Everyone > >The subject of funding and sponsors came up a few times recently. > >I think FFmpeg needs a clear guideline on this matter. To avoid >confusion, to avoid disagreem

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-31 Thread Rémi Denis-Courmont via ffmpeg-devel
Le perjantaina 29. elokuuta 2025, 23.40.40 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > Ive sent a V2 of this patch without this wallet, but to awnser your > questions > > This is FFmpegs gnosis safe wallet, i have originally set it up > The wallet is co

[FFmpeg-devel] Re: [PATCH] vf_colorspace: Add an option to clamp trc LUT output

2025-09-03 Thread Ronald S. Bultje via ffmpeg-devel
gt; patch there? Do I just submit it as a pull request? > > On Tue, Aug 26, 2025 at 2:33 PM Ronald S. Bultje > wrote: > >> Hi Drew, >> >> Thanks for the bug report! >> >> On Mon, Aug 25, 2025 at 10:50 AM Drew Dunne via ffmpeg-devel < >> ffmpeg-devel@

[FFmpeg-devel] Re: [POLL][VOTE] Sponsors & Funding

2025-10-02 Thread Rémi Denis-Courmont via ffmpeg-devel
Le torstaina 2. lokakuuta 2025, 15.55.16 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > "Yes" > - The FFmpeg project should actively seek sponsors and funding. Repeating myself but that sentence does not mean anything. How are we supposed to vote on so

[FFmpeg-devel] Re: [GASPP PATCH 1/2] Pass "-machine" options through to armasm

2025-10-18 Thread Harish Raja Selvan via ffmpeg-devel
. From: Martin Storsjö Sent: 09 October 2025 17:41 To: [email protected] Cc: Harish Raja Selvan Subject: Re: [GASPP PATCH 1/2] Pass "-machine" options through to armasm On Fri, 3 Oct 2025, Martin Storsjö wrote: > Filter them out from the preprocessor invocati

[FFmpeg-devel] Re: [PATCH] vf_colorspace: Add an option to clamp trc LUT output

2025-08-26 Thread Ronald S. Bultje via ffmpeg-devel
Hi Drew, Thanks for the bug report! On Mon, Aug 25, 2025 at 10:50 AM Drew Dunne via ffmpeg-devel < [email protected]> wrote: > A solid color image of 8-bit YUV: Y=157, U=164, V=98. > > Specify the input as: > > Input range: MPEG > In color matrix: BT470BG > In c

Re: [FFmpeg-devel] STF 2025 grant request (2025-09-01 target)

2025-08-20 Thread Pierre-Anthony Lemieux via ffmpeg-devel
On Wed, Aug 20, 2025 at 9:24 AM Niklas Haas via ffmpeg-devel wrote: > > On Tue, 12 Aug 2025 08:32:39 -0700 Pierre-Anthony Lemieux > wrote: > > Quick reminder that the deadline for submitting your proposal is > > quickly approaching. > > > > Also note that

[FFmpeg-devel] [PATCH] .forgejo/CODEOWNERS: add myself for vp8, vp9, wmavoice and csp. (PR #20293)

2025-08-20 Thread Ronald S. Bultje via ffmpeg-devel
ni -- 2.49.1 _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".

Re: [FFmpeg-devel] STF 2025 grant request (2025-09-01 target)

2025-08-20 Thread Pierre-Anthony Lemieux via ffmpeg-devel
On Wed, Aug 20, 2025 at 6:24 PM Kieran Kunhya via ffmpeg-devel wrote: > > On Wed, 20 Aug 2025, 11:37 Michael Niedermayer via ffmpeg-devel, < > [email protected]> wrote: > > > Hi Pierre > > > > On Wed, Aug 20, 2025 at 09:28:26AM -0700, Pierre-Anthon

Re: [FFmpeg-devel] [PATCH] vf_colorspace: Add an option to clamp trc LUT output

2025-08-20 Thread Ronald S. Bultje via ffmpeg-devel
Hi Drew, On Mon, Aug 18, 2025 at 11:55 AM Drew Dunne via ffmpeg-devel < [email protected]> wrote: > Add a new flag to the vf_colorspace filter which provides the user an > option to clamp the linear and delinear transfer characteristics LUT > values to the [0, 1] represen

Re: [FFmpeg-devel] [POLL][RFC] Merge vs Cherry pick for integration of changes

2025-08-22 Thread Diederick C. Niehorster via ffmpeg-devel
On Fri, Aug 22, 2025 at 2:30 PM Niklas Haas via ffmpeg-devel wrote: > > On Thu, 21 Aug 2025 13:32:02 +0200 Michael Niedermayer via ffmpeg-devel > wrote: > > Hi > > > > Should we use a Merge or Cherry picks for integrating Pauls work ? > > > > Following a

[FFmpeg-devel] Re: [PATCH] web: Add funding.json

2025-08-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 29 août 2025 00:10:26 GMT+03:00, Michael Niedermayer via ffmpeg-devel a écrit : >See: https://fundingjson.org/ >See: https://floss.fund/ > >Based on: https://www.python.org/funding.json and the example from >fundingjson.org > >It is put in the web repository so

[FFmpeg-devel] Re: [PATCH v3 1/5] configure: Add test_ioctl and test for SIOCGIFINDEX

2025-08-29 Thread Rémi Denis-Courmont via ffmpeg-devel
makeinfo >@@ -6658,6 +6673,7 @@ if ! disabled network; then > else > disable network > fi >+ test_ioctl SIOCGIFINDEX && enable ioctl_gifindex > fi > > check_builtin MemoryBarrier windows.h "MemoryBarrier()" ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] VDD 2025

2025-10-11 Thread Jean-Baptiste Kempf via ffmpeg-devel
https://jbkempf.com/ ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] aacdec: Fix pitch corruption in files mistagged as downsampled SBR (PR #20672)

2025-10-08 Thread Alicia Boya García via ffmpeg-devel
aled " +"SBR but contains no EXT_SBR_DATA\n"); +ac->warned_sbr_signaled_but_missing = 1; +} +return; +} int downsampled = ac->oc[1].m4ac.ext_sample_rate < sbr->sample_rate; int ch; int nch = (id_aac == TYPE_CPE) ? 2 : 1; -

[FFmpeg-devel] Re: [RFC] Funded Task Ideas

2025-11-04 Thread Rémi Denis-Courmont via ffmpeg-devel
Hi, Le 4 novembre 2025 21:39:49 GMT+02:00, Nicolas George via ffmpeg-devel a écrit : >Niklas Haas via ffmpeg-devel (HE12025-11-03): >> 4. Developers should announce when they begin working on a bounty, and then >>nobody else should be able to claim it until a reasonable amoun

[FFmpeg-devel] Re: FFmpeg "supporters" doxing

2025-10-30 Thread Rémi Denis-Courmont via ffmpeg-devel
Hi, Le 30 octobre 2025 00:32:58 GMT+02:00, Michael Niedermayer via ffmpeg-devel a écrit : >You talk like you understand legal matters and are refering to wiktionary. >Thilo is in Germany, lets refer to german law: Pretty sure German law doesn't define the English term "dox

[FFmpeg-devel] Re: patch to disable SMUSH codec from autoselect

2025-11-04 Thread Rémi Denis-Courmont via ffmpeg-devel
what they don't, IMO, not the FFmpeg project/community. _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-27 Thread Rémi Denis-Courmont via ffmpeg-devel
. That was evidently a rushed overreaction on my part, sorry for that. On that note, this probably will not be much of a surprise, but I do not intend to nominate myself for the CC in 2026. ___ ffmpeg-devel mailing list -- [email protected] To

[FFmpeg-devel] Re: [POLL][VOTE] Twitter/X spat on Youtube

2025-10-26 Thread Rémi Denis-Courmont via ffmpeg-devel
Le sunnuntai 26. lokakuuta 2025, 15.56.30 Itä-Euroopan normaaliaika Michael Niedermayer via ffmpeg-devel a écrit : > Quick vote, should the delegation from where this came from, be revoked to > FFmpeg social media? (vote ends in 7 days) > Please reply on ffmpeg-devel with your choice

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-26 Thread Rémi Denis-Courmont via ffmpeg-devel
Le sunnuntai 26. lokakuuta 2025, 17.26.24 Itä-Euroopan normaaliaika Michael Niedermayer via ffmpeg-devel a écrit : > Hi Everyone > > As requested, reposting this, as a new thread > > For context please see: > https://www.youtube.com/watch?v=3VkcAvqV24c > https://lists.ffm

[FFmpeg-devel] Re: [RFC] C++

2025-10-22 Thread Rémi Denis-Courmont via ffmpeg-devel
Le keskiviikkona 22. lokakuuta 2025, 16.07.36 Itä-Euroopan kesäaika Timo Rothenpieler via ffmpeg-devel a écrit : > C++ can be used as-is, since it can read all our headers just fine. FFmpeg public headers are C++-compatible and, frankly as a C developer, I find that annoying. Not sure about

[FFmpeg-devel] Re: [RFC] C++

2025-10-22 Thread Rémi Denis-Courmont via ffmpeg-devel
Le keskiviikkona 22. lokakuuta 2025, 15.09.32 Itä-Euroopan kesäaika Gregor Riepl via ffmpeg-devel a écrit : > > My main motivation is to be able to use STL, which would simplify > > string handling and memory management, and give us access to its data > > structures. Manual mem

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-22 Thread Rémi Denis-Courmont via ffmpeg-devel
Hello, Le keskiviikkona 22. lokakuuta 2025, 7.33.31 Itä-Euroopan kesäaika Harish Raja Selvan via ffmpeg-devel a écrit : > This patch adds support for ARM64EC builds on Windows by updating .def file > generation logic for shared libraries and ensuring the correct machine flag >

[FFmpeg-devel] Re: [RFC] C++

2025-10-22 Thread Rémi Denis-Courmont via ffmpeg-devel
Le keskiviikkona 22. lokakuuta 2025, 21.12.47 Itä-Euroopan kesäaika Timo Rothenpieler via ffmpeg-devel a écrit : > They allow a distributor to do it centrally, and don't burden it onto > every single developer. And? Neither does Cargo? It does not force developers to pin any

[FFmpeg-devel] Re: Twitter/X spat on Youtube

2025-10-26 Thread Rémi Denis-Courmont via ffmpeg-devel
Hi, Speaking as a member of the CC, Le sunnuntai 26. lokakuuta 2025, 8.51.35 Itä-Euroopan normaaliaika Gyan Doshi via ffmpeg-devel a écrit : > Our outreach channels should not be confrontational or combative, > irrespective of the merits. Even if the other party gets rude, a civil > to

[FFmpeg-devel] Re: FFmpeg "supporters" doxing

2025-10-28 Thread Jean-Baptiste Kempf via ffmpeg-devel
s://jbkempf.com/ _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-27 Thread Jean-Baptiste Kempf via ffmpeg-devel
ne for fighting and "engagement". So, just calm down, and tell people to move to the next topic. And listen to Steven, he is correct as usual on those matters. JB PS: the GA has a way to do a vote, please follow it. On Sun, 26 Oct 2025, at 16:26, Michael Niedermayer via ffmpeg-devel wr

[FFmpeg-devel] FFmpeg "supporters" doxing

2025-10-28 Thread Rémi Denis-Courmont via ffmpeg-devel
my personal opinion, but I doubt that anyone else in the CC will disagree. _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-27 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 27 octobre 2025 00:34:52 GMT+02:00, James Almer via ffmpeg-devel a écrit : >On 10/26/2025 2:51 PM, Rémi Denis-Courmont via ffmpeg-devel wrote: >> Tomas' CoC violation has been recorded. >> >> You had been warned. > >I'm sorry, what? This makes no s

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-26 Thread Rémi Denis-Courmont via ffmpeg-devel
Le sunnuntai 26. lokakuuta 2025, 19.13.45 Itä-Euroopan normaaliaika Michael Niedermayer via ffmpeg-devel a écrit : > > You are totally out of line. You are endorsing the bullying from the > > YouTuber. That makes you a bully as it does anyone who votes R. > > The youtuber p

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-26 Thread Rémi Denis-Courmont via ffmpeg-devel
Tomas' CoC violation has been recorded. You had been warned. -- 德尼-库尔蒙‧雷米 Villeneuve de Tapiola, ex-République finlandaise d´Uusimaa ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Hello, Le 28 octobre 2025 21:27:23 GMT+02:00, wsbalgotrader--- via ffmpeg-devel a écrit : >Possibly because you have an extensive history with demeaning, rude, and >antagonistic replies (as even proven in this thread). Maybe learn polite >communication tactics, and people won

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-11-02 Thread Rémi Denis-Courmont via ffmpeg-devel
ery large and easily bruised ego. Also they repeatedly called Kieran a "motherfucker" in a public video, something no serious code of conduct would ever tolerate. But obviously we cannot enforce our CoC on YouTube, so that point is moot. Br, _________

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-23 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 23 octobre 2025 09:31:26 GMT+03:00, "Martin Storsjö via ffmpeg-devel" a écrit : >On Thu, 23 Oct 2025, Rémi Denis-Courmont via ffmpeg-devel wrote: > >> >> >> Le 23 octobre 2025 00:01:55 GMT+03:00, "Martin Storsjö" a >> écrit : >>>

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-23 Thread Rémi Denis-Courmont via ffmpeg-devel
-1 for not addressing any of my earlier comments. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [RFC] Funded Task Ideas

2025-11-06 Thread Rémi Denis-Courmont via ffmpeg-devel
Le torstaina 6. marraskuuta 2025, 10.40.06 Itä-Euroopan normaaliaika Nicolas George via ffmpeg-devel a écrit : > Rémi Denis-Courmont (HE12025-11-04): > > > From a technical standpoint, that seems very agreeable indeed. But at > > the same time, it sounds unreasonable to expec

[FFmpeg-devel] Re: [POLL][VOTE] Revoke social media delegation

2025-10-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 29 octobre 2025 17:33:12 GMT+02:00, worldofmaps--- via ffmpeg-devel a écrit : >Since the current FFMPEG twitter account has a lot of engagement and has been >found funny by a lot, the project should probably have two ffmpeg account. One >corporate and one with a title like FFPMEG

[FFmpeg-devel] Re: FFmpeg "supporters" doxing

2025-10-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 29 octobre 2025 19:09:15 GMT+02:00, Michael Niedermayer via ffmpeg-devel a écrit : >Does this also apply to the case where kieran doxxed thilo ? When did that happen? Doxxing is the publication of personal info against that person's will - not quoting some already public info. I

[FFmpeg-devel] Re: FFmpeg "supporters" doxing

2025-10-29 Thread Rémi Denis-Courmont via ffmpeg-devel
Le keskiviikkona 29. lokakuuta 2025, 22.38.17 Itä-Euroopan normaaliaika Michael Niedermayer via ffmpeg-devel a écrit : > > When did that happen? > > Wed, 31 Jan 2024 I can't find it any match in the archives. Besides, that was during the previous CC and that CC (of which you

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

2025-11-10 Thread Rémi Denis-Courmont via ffmpeg-devel
Le lauantaina 8. marraskuuta 2025, 10.34.24 Itä-Euroopan normaaliaika Thomas Dullien via ffmpeg-devel a écrit : > What's the best way to submit these patches? There is the bug tracker, > there is this mailing list - what's the best way to contribute them? I don't think that

[FFmpeg-devel] [PATCH] riscv/cpu: add V subset feature detection (PR #20873)

2025-11-09 Thread Rémi Denis-Courmont via ffmpeg-devel
} +#endif #endif #ifdef RISCV_HWPROBE_EXT_ZBB if (pairs[1].value & RISCV_HWPROBE_EXT_ZBB) -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [POLL][VOTE] Preferred Issue Tracker

2025-10-23 Thread Rémi Denis-Courmont via ffmpeg-devel
Le torstaina 23. lokakuuta 2025, 13.49.54 Itä-Euroopan kesäaika Michael Niedermayer via ffmpeg-devel a écrit : > I ve missed a crucial detail, which only became obvious to me now. > Seeing that people vote based on what they personally prefer, > and 90% of the people seem not to care

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-22 Thread Harish Raja Selvan via ffmpeg-devel
Hi Martin, Thanks for the cleanups and explanations! I’ve tested your fixed-up version and it works as expected. Looks good to me. Regards, Harish Raja Selvan. ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-22 Thread Rémi Denis-Courmont via ffmpeg-devel
Le 23 octobre 2025 00:01:55 GMT+03:00, "Martin Storsjö" a écrit : >On Wed, 22 Oct 2025, Rémi Denis-Courmont via ffmpeg-devel wrote: > >> If you want to compile AArch64 FFmpeg for use in emulated x86 processes, >> then you need a FFmpeg that exposes the same A

[FFmpeg-devel] Re: [DISCUSSION] Adding ARM64EC support to FFmpeg

2025-10-21 Thread Harish Raja Selvan via ffmpeg-devel
reference, here is the configuration used to build FFmpeg with MSVC for ARM64EC: AR_CMD="lib.exe -machine:arm64ec" ARCH="arm64" "${SRC_DIR}/configure" \ --toolchain=msvc \ --target-os=win64 \ --cc=cl.exe \ --cxx=cl.exe \ --extra-cxxflags="-arm64EC" \ --extra-cflags="-arm64EC" \ --extra-ldflags="/machine:arm64ec" \ --as="armasm64.exe -machine ARM64EC" \ --ld=link.exe \ --ar="${AR_CMD}" \ --arch="${ARCH}" \ --enable-shared Thanks, Harish Raja Selvan. 0001-PATCH-v2-Fix-.def-file-generation-for-ARM64EC-builds.patch Description: 0001-PATCH-v2-Fix-.def-file-generation-for-ARM64EC-builds.patch ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [GASPP PATCH 1/2] Pass "-machine" options through to armasm

2025-11-06 Thread Harish Raja Selvan via ffmpeg-devel
Hi Martin, Just wanted to check if you have an estimate for when the ARM64EC related patches for gas-preprocessor and the makedef script changes might be upstreamed. Thanks, Harish ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe

<    29   30   31   32   33   34   35   >