[FFmpeg-devel] [PATCH] avfilter/vf_colordetect: Reorder to avoid null pointer check (PR #20299)

2025-08-20 Thread Zhao Zhili via ffmpeg-devel
lpha16_full_c : ff_detect_alpha_full_c; -} else { -dsp->detect_alpha = depth > 8 ? ff_detect_alpha16_limited_c : ff_detect_alpha_limited_c; -} -} } static const AVFilterPad colordetect_inputs[] = { -- 2.49.1 _______________ ffmp

[FFmpeg-devel] [PATCH] avcodec/sanm: handle xpal cmd 0 (PR #20300)

2025-08-21 Thread Manuel Lauss via ffmpeg-devel
d == 2) { if (size < PALETTE_DELTA * 2 + 4) { av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect palette change block size %"PRIu32".\n", size); -- 2.49.1 _______ ffmpeg-devel mailing list [email protected]

Re: [FFmpeg-devel] [PATCH] lavfi: protection against premultiplied alpha (was: The patch series about premultiplied alpha)

2025-08-20 Thread Niklas Haas via ffmpeg-devel
to read: Do you expect filter authors to remember to enable support for premultiplied alpha, even if they don't even touch the alpha plane? _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To u

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

2025-08-20 Thread Michael Niedermayer via ffmpeg-devel
Hi Pierre On Wed, Aug 20, 2025 at 09:28:26AM -0700, Pierre-Anthony Lemieux via ffmpeg-devel wrote: > 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: > > > Qui

Re: [FFmpeg-devel] [Proposal] drawvg filter

2025-08-20 Thread Michael Niedermayer via ffmpeg-devel
Hi Ayose On Mon, Aug 18, 2025 at 07:22:56AM +0100, Ayose via ffmpeg-devel wrote: > This is a proposal to add a new filter to FFmpeg: drawvg, to draw > vector graphics on top of a video, using libcairo. > > This is my first contribution to FFmpeg, so I don't know if this is >

[FFmpeg-devel] [PATCH] avutil/hwcontext_vulkan: always enable extra usage flags (PR #20295)

2025-08-20 Thread Niklas Haas via ffmpeg-devel
_BIT_KHR; + /* Image creation flags. * Only fill them in automatically if the image is not going to be used as * a DPB-only image, and we have SAMPLED/STORAGE bits set. */ -- 2.49.1 _______ ffmpeg-devel mailing list [email protected] ht

Re: [FFmpeg-devel] FFmpeg 8.0 Release

2025-08-20 Thread Michael Niedermayer via ffmpeg-devel
Hi On Wed, Aug 20, 2025 at 10:18:20AM +0900, Lynne via ffmpeg-devel wrote: > On 20/08/2025 06:13, Michael Niedermayer via ffmpeg-devel wrote: > > Hi all > > > > On Fri, Aug 01, 2025 at 06:16:18PM -0500, Romain Beauxis wrote: > > > Le mer. 23 juil. 2025 à 06:43, Mich

Re: [FFmpeg-devel] [PATCH] Announce FFmpeg 8.0

2025-08-20 Thread Jacob Lifshay via ffmpeg-devel
On August 20, 2025 10:47:03 PM PDT, Lynne via ffmpeg-devel wrote: > +Hardware accelerated decoding: Vulkan VP9, VAAPI VVC, OpenHarmony > H264/5 > +Hardware accelerated encoding: Vulkan AV1, OpenHarmony H264/5 > +Filters: colordetect, pad_cuda, scale_d3d11, Whisper, and o

[FFmpeg-devel] [PATCH] .forgejo/CODEOWNERS: add myself for various files (PR #20302)

2025-08-21 Thread Peter Ross via ffmpeg-devel
mat/mv.* @pross libavformat/pp_bnk.* @zane +libavformat/rm.* @pross +libavformat/sauce.* @pross libavformat/scd.* @zane +libavformat/tty.* @pross +libavformat/wsd.* @pross +libavformat/wtv.* @pross # avutil # == -- 2.49.1 ___ ffmpeg-devel mail

Re: [FFmpeg-devel] [PATCH] Announce FFmpeg 8.0

2025-08-22 Thread Marton Balint via ffmpeg-devel
On Fri, 22 Aug 2025, Niklas Haas via ffmpeg-devel wrote: On Thu, 21 Aug 2025 14:47:03 +0900 Lynne via ffmpeg-devel wrote: --- src/index | 42 ++ 1 file changed, 42 insertions(+) diff --git a/src/index b/src/index index 52829e1..a07f4b8 100644

Re: [FFmpeg-devel] CI

2025-08-22 Thread Michael Niedermayer via ffmpeg-devel
Hi On Fri, Aug 22, 2025 at 05:22:54PM +0200, Timo Rothenpieler via ffmpeg-devel wrote: > On 22/08/2025 16:54, Michael Niedermayer via ffmpeg-devel wrote: > > Hi Timo > > > > On Fri, Aug 22, 2025 at 02:13:14PM +0200, Timo Rothenpieler via > > ffmpeg-devel wrote: >

Re: [FFmpeg-devel] CI

2025-08-22 Thread Martin Storsjö via ffmpeg-devel
On Fri, 22 Aug 2025, Timo Rothenpieler via ffmpeg-devel wrote: For arm I'm not sure if we really need qemu? All it might take is a 32bit arm chroot on aarch64? Not sure if it works like x86 though, where a 64bit CPU can also run 32bit code. It works pretty much like x86, yes - you don&#

Re: [FFmpeg-devel] [PATCH] Announce FFmpeg 8.0

2025-08-22 Thread Kieran Kunhya via ffmpeg-devel
On Fri, 22 Aug 2025, 03:05 Lynne via ffmpeg-devel, wrote: > On 22/08/2025 21:13, Niklas Haas via ffmpeg-devel wrote: > > On Thu, 21 Aug 2025 14:47:03 +0900 Lynne via ffmpeg-devel < > [email protected]> wrote: > >>

[FFmpeg-devel] [PATCH] avformat/whip: add generate_unique_ssrc to avoid ssrc collision (PR #20318)

2025-08-22 Thread Jack Lau via ffmpeg-devel
rc = av_lfg_get(&whip->rnd); +whip->audio_ssrc = generate_unique_ssrc(whip); +whip->video_ssrc = generate_unique_ssrc(whip); whip->audio_payload_type = WHIP_RTP_PAYLOAD_TYPE_OPUS; whip->video_payload_type = WHIP_RTP_PAYLOAD_TYPE_H264; -- 2.49.1 _____

Re: [FFmpeg-devel] CI

2025-08-22 Thread Niklas Haas via ffmpeg-devel
On Fri, 22 Aug 2025 17:22:54 +0200 Timo Rothenpieler via ffmpeg-devel wrote: > We could only run those tests on master, not on PRs. > Nobody is impacted by them then, and we still notice breakage reasonably > fast. That seems reasona

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

2025-08-23 Thread Michael Niedermayer via ffmpeg-devel
On Sat, Aug 23, 2025 at 10:09:14AM +0300, Rémi Denis-Courmont via ffmpeg-devel wrote: [...] > As a member of the CC and the GA, I agree with Niklaas that any license change > needs a GA vote. And obviously that preempts any discussion of how to merge > the code. There is no license cha

[FFmpeg-devel] [PATCH] avcodec/exif: make the get and remove helpers take a flag argument (PR #20324)

2025-08-23 Thread James Almer via ffmpeg-devel
to the -- 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] [Proposal] drawvg filter

2025-08-23 Thread Michael Niedermayer via ffmpeg-devel
Hi Ayose On Sat, Aug 23, 2025 at 09:22:47AM +0100, Ayose via ffmpeg-devel wrote: > On 2025-08-20 22:58:26 +0200, Michael Niedermayer wrote: > > > > On Mon, Aug 18, 2025 at 07:22:56AM +0100, Ayose via ffmpeg-devel wrote: > > > This is a proposal to add a new filter to

[FFmpeg-devel] [PATCH] avformat: add container level Exif metadata support (PR #20321)

2025-08-23 Thread James Almer via ffmpeg-devel
+ret = av_exif_write(NULL, &ifd, &buf, AV_EXIF_TIFF_HEADER); +if (ret < 0) +goto end; + +if (!av_frame_side_data_add(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_EXIF, &buf, 0)) { +ret = AVERROR(ENOMEM); + goto end; +} + +

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

2025-08-23 Thread Kieran Kunhya via ffmpeg-devel
On Sat, 23 Aug 2025, 00:58 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > On Sat, Aug 23, 2025 at 10:09:14AM +0300, Rémi Denis-Courmont via > ffmpeg-devel wrote: > [...] > > As a member of the CC and the GA, I agree with Niklaas that any license &g

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

2025-08-23 Thread Michael Niedermayer via ffmpeg-devel
Hi On Thu, Aug 21, 2025 at 01:32:02PM +0200, Michael Niedermayer via ffmpeg-devel wrote: > Hi > > Should we use a Merge or Cherry picks for integrating Pauls work ? > > Following are 2 plans, as we execute either we may run into issues > and of course adapt them as needed. (o

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

2025-08-23 Thread Kieran Kunhya via ffmpeg-devel
On Sat, 23 Aug 2025, 21:33 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi > > Here is the legal advice that i was given. > The GA has the full text and that is much more detailed. > Iam posting the relevant parts so the whole community can see

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

2025-08-24 Thread Kieran Kunhya via ffmpeg-devel
On Sun, 24 Aug 2025, 13:09 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi Kieran > > On Sun, Aug 24, 2025 at 12:11:20PM +0100, Kieran Kunhya via ffmpeg-devel > wrote: > > On Sun, 24 Aug 2025, 11:56 Michael Niedermayer via ffmpeg-devel, <

[FFmpeg-devel] [PATCH] Two exif Fixes (PR #20326)

2025-08-24 Thread Leo Izen via ffmpeg-devel
ROR(EINVAL); @@ -1089,7 +1094,7 @@ static int exif_remove_entry(void *logctx, AVExifMetadata *ifd, uint16_t id, int int32_t index = -1; int ret = 0; -if (!ifd || ifd->entries && !ifd->count || ifd->count && !ifd->entries) + if (!ifd || ifd->count &a

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

2025-08-24 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Sun, Aug 24, 2025 at 07:53:45AM +0100, Kieran Kunhya via ffmpeg-devel wrote: > On Sat, 23 Aug 2025, 21:33 Michael Niedermayer via ffmpeg-devel, < > [email protected]> wrote: > > > Hi > > > > Here is the legal advice that i was given. > &g

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

2025-08-24 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Sat, Aug 23, 2025 at 11:39:37PM -0700, Kieran Kunhya via ffmpeg-devel wrote: > > > > The author for most of the changes of the new modules is Paul. > > I certainly have alot of respect from Paul, he is a brilliant > > developer and i feel a bit offended by w

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

2025-08-24 Thread Michael Niedermayer via ffmpeg-devel
Hi On Thu, Aug 21, 2025 at 01:32:02PM +0200, Michael Niedermayer via ffmpeg-devel wrote: > Hi > > Should we use a Merge or Cherry picks for integrating Pauls work ? > > Following are 2 plans, as we execute either we may run into issues > and of course adapt them as neede

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

2025-08-24 Thread Kieran Kunhya via ffmpeg-devel
On Sun, 24 Aug 2025, 11:48 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi Kieran > > On Sat, Aug 23, 2025 at 11:39:37PM -0700, Kieran Kunhya via ffmpeg-devel > wrote: > > > > > > The author for most of the changes of the new mod

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

2025-08-24 Thread Kieran Kunhya via ffmpeg-devel
On Sun, 24 Aug 2025, 11:56 Michael Niedermayer via ffmpeg-devel, < [email protected]> wrote: > Hi Kieran > > On Sun, Aug 24, 2025 at 07:53:45AM +0100, Kieran Kunhya via ffmpeg-devel > wrote: > > On Sat, 23 Aug 2025, 21:33 Michael Niedermayer via ffmpeg-devel, <

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

2025-08-23 Thread Kieran Kunhya via ffmpeg-devel
pport. This is documented on the ML. Kieran > _______ 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] Legal Advice Was: [POLL][RFC] Merge vs Cherry pick for integration of changes

2025-08-24 Thread Michael Niedermayer via ffmpeg-devel
Hi Kieran On Sun, Aug 24, 2025 at 12:11:20PM +0100, Kieran Kunhya via ffmpeg-devel wrote: > On Sun, 24 Aug 2025, 11:56 Michael Niedermayer via ffmpeg-devel, < > [email protected]> wrote: > > > Hi Kieran > > > > On Sun, Aug 24, 2025 at 07:53:45AM +010

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

2025-08-24 Thread Derek Buitenhuis via ffmpeg-devel
On 8/24/2025 2:46 PM, Rémi Denis-Courmont via ffmpeg-devel wrote: > 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 so

Re: [FFmpeg-devel] [PATCH v2] ogg/vorbis: implement header packet skip in chained ogg bitstreams.

2025-08-24 Thread Romain Beauxis via ffmpeg-devel
Le mer. 20 août 2025 à 15:25, Yalda via ffmpeg-devel a écrit : > Thanks Romain. I am experimenting with this and trying the patches. Awesome. Thanks so much for your time! I have rebased the vorbis header PR against the latest `master` (would love to call it main). I have also pushed the n

Re: [FFmpeg-devel] [PATCH v2 3/3] avfilter/scale_cuda: Add support for 4:2:2 chroma subsampling

2025-08-24 Thread Philip Langdale via ffmpeg-devel
On Tue, 8 Jul 2025 11:19:45 + Diego de Souza via ffmpeg-devel wrote: > Hi Andreas, > > Do you mean something like this? > > struct format_entry { > enum AVPixelFormat format; > char name[16]; > }; > > static const struct

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

2025-08-23 Thread Michael Niedermayer via ffmpeg-devel
Hi Pierre On Wed, Aug 20, 2025 at 06:38:06PM -0700, Pierre-Anthony Lemieux via ffmpeg-devel wrote: [...] > I recommend that the proposed SOWs be more specific, i.e. list those forks. > > [ed.: I would definitely avoid forks from folks that have not shown > interest in working with f

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

2025-08-23 Thread Michael Niedermayer via ffmpeg-devel
any code you are using from before a license change." thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I know you won't believe me, but the highest form of Human Excellence is to question oneself and others. -- Socrates signature.asc Description: PGP

[FFmpeg-devel] [PATCH] aacencdsp: Improve consistency with assembly, for x87 math (PR #20322)

2025-08-23 Thread Martin Storsjö via ffmpeg-devel
int tmp = (int)FFMIN(qc + rounding, (float)maxval); +int tmp = (int)FFMIN((float)(qc + rounding), (float)maxval); if (is_signed && in[i] < 0.0f) { tmp = -tmp; } -- 2.49.1 ___ ffmpeg-devel mailing list ffmpeg-

[FFmpeg-devel] [PATCH] configure: support linking to base profile libxev{d,e} (PR #20329)

2025-08-24 Thread James Almer via ffmpeg-devel
and libxeveb together" enabled libxeve && require_pkg_config libxeve "xeve >= 0.5.1" "xeve.h" xeve_encode +enabled libxeveb && require_pkg_config libxeveb "xeveb >= 0.5.1" "xeve.h" xeve_encode enabled libxvid

[FFmpeg-devel] [PATCH] avutil/bprint: fix av_bprint_strftime with %p format string reporting truncated output (PR #20330)

2025-08-24 Thread Marton Balint via ffmpeg-devel
h */ -room = !room ? strlen(fmt) + 1 : +room = !room ? fmt_len + 1 : room <= INT_MAX / 2 ? room * 2 : INT_MAX; if (av_bprint_alloc(buf, room)) { /* impossible to grow, try to manage something useful anyway */ -- 2.49.1 _________

Re: [FFmpeg-devel] [PATCH v2 3/3] avfilter/scale_cuda: Add support for 4:2:2 chroma subsampling

2025-08-24 Thread Philip Langdale via ffmpeg-devel
On Mon, 7 Jul 2025 11:45:36 +0200 Diego Felix de Souza via ffmpeg-devel wrote: > From: Diego de Souza > > The supported YUV pixel formats were separated between planar > and semiplanar. This approach reduces the number of CUDA kernels > for all pixel formats. > > This pat

[FFmpeg-devel] [PATCH] configure: bump LCEVCdec minimum required version to 4.0.0 (PR #20331)

2025-08-24 Thread James Almer via ffmpeg-devel
} } -res = LCEVC_SendDecoderBase(lcevc->decoder, in->pts, 0, picture, -1, in); +res = LCEVC_SendDecoderBase(lcevc->decoder, in->pts, picture, -1, in); if (res != LCEVC_Success) { av_log(ctx, AV_LOG_ERROR, "LCEVC_SendDecoderBase failed\n");

[FFmpeg-devel] [PATCH] avformat/whip: set the first sequence number for video and audio (PR #20332)

2025-08-24 Thread Jack Lau via ffmpeg-devel
0); +av_dict_set_int(&opts, "seq", is_video ? whip->video_first_seq : whip->audio_first_seq, 0); ret = avformat_write_header(rtp_ctx, &opts); if (ret < 0) { -- 2.49.1 _______ ffmpeg-devel mailing list ffm

[FFmpeg-devel] [PATCH] avcodec/vima: support IMA4 (ADPCM QT) variant (PR #20253)

2025-08-16 Thread Manuel Lauss via ffmpeg-devel
dict_index = av_clip(predict_index, 0, 5785); +diff = predict_table[predict_index]; +if (lookup) +diff += ff_adpcm_step_table[step_index] >> (lookup_size - 1); +if (highbit) +diff = -diff; + +

[FFmpeg-devel] [PATCH] avformat/whip: check the peer whether is ice lite (PR #20256)

2025-08-16 Thread Jack Lau via ffmpeg-devel
whip->is_peer_ice_lite = 1; if (av_strstart(line, "a=ice-ufrag:", &ptr) && !whip->ice_ufrag_remote) { whip->ice_ufrag_remote = av_strdup(ptr); if (!whip->ice_ufrag_remote) { -- 2.49.1 ________

[FFmpeg-devel] AAC AVERROR_BUG

2025-08-16 Thread Michael Niedermayer via ffmpeg-devel
Hi Lynne, ffmpeg-devel the following (testcase public, not cattegorized as a security issue) https://issues.oss-fuzz.com/issues/416134551 hits if (!ics->num_swb || !ics->swb_offset) { ret_fail = AVERROR_BUG; goto fail; } Asserti

[FFmpeg-devel] [PATCH] avcodec/h264: ignore POC when flag is set (PR #20262)

2025-08-16 Thread Kevin Wang via ffmpeg-devel
LAG2_SHOW_ALL))) h->next_outputed_poc = INT_MIN; out_of_order = out->poc < h->next_outputed_poc; -- 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] [PATCH] Revert "avformat/mpegts: update stream info when PMT ES stream_type changes"

2025-08-16 Thread Michael Niedermayer via ffmpeg-devel
ntime flag implemented I can > > > resubmit it all together. > > > > ok will revert > > Is this still a plan? I was a bit undecided on this, i may have overestimated the problems this would cause. And nothing major broke, and noone else spoke up ... So I kind of conditionally drope

Re: [FFmpeg-devel] [RFC] Advanced Error Codes

2025-08-16 Thread Michael Niedermayer via ffmpeg-devel
just interrested in this because some company wants it. But that was what brought the idea up of improved error codes thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB "I am not trying to be anyone's saviour, I'm trying to think about the fut

[FFmpeg-devel] lavc/vp9dec: use cbs_vp9 to parse the frame header

2025-08-16 Thread Michael Niedermayer via ffmpeg-devel
alike, and yet notwithstanding go out to meet it. -- Thucydides signature.asc Description: PGP signature _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ff

[FFmpeg-devel] [PATCH] avcodec/wmaprodec: add xma raw frame decoder (PR #20266)

2025-08-17 Thread Isaac Marovitz via ffmpeg-devel
= xmaframes_decode_init, +.close = xmaframes_decode_end, +FF_CODEC_DECODE_CB(xmaframes_decode_packet), +.flush = wmapro_flush, +.p.capabilities = AV_CODEC_CAP_DR1, +CODEC_SAMPLEFMTS(AV_SAMPLE_FMT_FLTP), +.caps_internal = FF_CODEC_CAP_INIT_CLEANUP, +}; -- 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".

[FFmpeg-devel] [PATCH] avformat/img2dec: remove deprecated glob_sequence pattern type (PR #20267)

2025-08-17 Thread Marton Balint via ffmpeg-devel
;}, -{ "glob_sequence","select glob/sequence pattern type", 0, AV_OPT_TYPE_CONST, {.i64=PT_GLOB_SEQUENCE}, INT_MIN, INT_MAX, DEC, .unit = "pattern_type" }, { "glob", "select glob pattern type",0, AV_OPT_TYPE_CONST, {

Re: [FFmpeg-devel] [PATCH] vf_colordetect: add ability to detect fully opaque alpha planes (PR #20257)

2025-08-18 Thread Nicolas George via ffmpeg-devel
Niklas Haas via ffmpeg-devel (HE12025-08-16): > PR #20257 opened by Niklas Haas (haasn) > URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20257 > Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20257.patch No objection from me to this, nor did I see anything shocking in it, but

Re: [FFmpeg-devel] Mailman3 Upgrade

2025-08-18 Thread Martin Storsjö via ffmpeg-devel
On Tue, 19 Aug 2025, Timo Rothenpieler via ffmpeg-devel wrote: mailman2 has no good way to deal with that in a more reasonable way. Mailman3 is already set up, and can be migrated to at a moments notice. The only problem with it is that I really don't like the new archives. It has wa

Re: [FFmpeg-devel] Mailman3 Upgrade

2025-08-19 Thread Timo Rothenpieler via ffmpeg-devel
On 19/08/2025 08:55, Martin Storsjö via ffmpeg-devel wrote: On Tue, 19 Aug 2025, Timo Rothenpieler via ffmpeg-devel wrote: mailman2 has no good way to deal with that in a more reasonable way. Mailman3 is already set up, and can be migrated to at a moments notice. The only problem with it is

[FFmpeg-devel] [PATCH] avcodec/sanm: mv and oob fixes (PR #20284)

2025-08-19 Thread Manuel Lauss via ffmpeg-devel
ofs + l + w) = *(db + ofs + l + w + mvofs); @@ -1571,8 +1572,8 @@ static int codec48_block(SANMVideoContext *ctx, uint8_t *dst, uint8_t *db, int x break; default:// copy 8x8 block from prev, c37_mv from source mvofs = c37_mv[opc * 2] + (c37_mv[opc * 2 + 1] * w); -

Re: [FFmpeg-devel] Mailman3 Upgrade

2025-08-18 Thread James Almer via ffmpeg-devel
On 8/18/2025 7:08 PM, Timo Rothenpieler via ffmpeg-devel wrote: Hi! As you might have noticed, a bunch of big Mail-Hosters have introduced new, even stricter, requirements. Primarily it's Microsoft, but others seem to already have followed suit. So we had to configure the list to sen

[FFmpeg-devel] [PATCH] avcodec/svq1enc: restrict Altivec acceleration to big-endian POWER configurations (backported to release/7.1) (PR #20285)

2025-08-19 Thread Sean McGovern via ffmpeg-devel
HAVE_ALTIVEC */ +#endif /* HAVE_ALTIVEC && HAVE_BIGENDIAN */ } -- 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] FFmpeg 5.1.7 and 6.1.3

2025-08-16 Thread Michael Niedermayer via ffmpeg-devel
to go on forever, its just that you wont like living in it. -- Hiranya Peiri signature.asc Description: PGP signature _______ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link a

[FFmpeg-devel] [PATCH] avformat/tls_gnutls: add dtls support (PR #20254)

2025-08-16 Thread Jack Lau via ffmpeg-devel
;= ~AVIO_FLAG_NONBLOCK; -c->tls_shared.tcp->flags |= h->flags & AVIO_FLAG_NONBLOCK; + uc->flags &= ~AVIO_FLAG_NONBLOCK; +uc->flags |= h->flags & AVIO_FLAG_NONBLOCK; ret = gnutls_record_recv(c->session, buf, size); if (ret > 0) return ret; @@ -261,10 +706,12 @@ static int tls_read(URLContext *h, uint8_t *buf, int size) static int tls_write(URLContext *h, const uint8_t *buf, int size) { TLSContext *c = h->priv_data; +URLContext *uc = c->tls_shared.is_dtls ? c->tls_shared.udp + : c->tls_shared.tcp; int ret; // Set or clear the AVIO_FLAG_NONBLOCK on c->tls_shared.tcp -c->tls_shared.tcp->flags &= ~AVIO_FLAG_NONBLOCK; -c->tls_shared.tcp->flags |= h->flags & AVIO_FLAG_NONBLOCK; +uc->flags &= ~AVIO_FLAG_NONBLOCK; +uc->flags |= h->flags & AVIO_FLAG_NONBLOCK; ret = gnutls_record_send(c->session, buf, size); if (ret > 0) return ret; @@ -309,3 +756,24 @@ const URLProtocol ff_tls_protocol = { .flags = URL_PROTOCOL_FLAG_NETWORK, .priv_data_class = &tls_class, }; + +static const AVClass dtls_class = { +.class_name = "dtls", +.item_name = av_default_item_name, +.option = options, +.version= LIBAVUTIL_VERSION_INT, +}; + +const URLProtocol ff_dtls_protocol = { +.name = "dtls", +.url_open2 = dtls_open, +.url_handshake = dtls_handshake, +.url_read = tls_read, +.url_write = tls_write, +.url_close = tls_close, +.url_get_file_handle = tls_get_file_handle, +.url_get_short_seek = tls_get_short_seek, +.priv_data_size = sizeof(TLSContext), +.flags = URL_PROTOCOL_FLAG_NETWORK, +.priv_data_class = &dtls_class, +}; -- 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".

[FFmpeg-devel] [PATCH] avfilter/whisper: correct option formatting (PR #20255)

2025-08-16 Thread Gyan Doshi via ffmpeg-devel
}, 2, HOURS, .flags = FLAGS }, { "use_gpu", "Use GPU for processing", OFFSET(use_gpu), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, .flags = FLAGS }, { "gpu_device", "GPU device to use", OFFSET(gpu_device), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MA

[FFmpeg-devel] [PATCH] vf_colordetect: add ability to detect fully opaque alpha planes (PR #20257)

2025-08-16 Thread Niklas Haas via ffmpeg-devel
1, m1, m1 +kortestb k1, k1 +setnz tmpb +%else +ptest m6, m3 +setnc tmpb ; CF = !(~m6 & m3) +%endif +or retb, tmpb + add colorq, color_strideq add alphaq, alpha_strideq dec heightq jg .lineloop -xor eax, eax + mov eax, retd RET .found: -mo

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

2025-08-19 Thread Drew Dunne via ffmpeg-devel
ot;Set all input color properties together", OFFSET(user_iall), AV_OPT_TYPE_INT, { .i64 = CS_UNSPECIFIED }, CS_UNSPECIFIED, CS_NB - 1, FLAGS, .unit = "all" }, -- 2.51.0.rc1.167.g924127e9c0-goog _______ ffmpeg-devel mailing list

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

2025-08-19 Thread Drew Dunne via ffmpeg-devel
OFFSET(clamp_trc), AV_OPT_TYPE_BOOL, { .i64 = 0}, + 0, 1, FLAGS }, + { "iall", "Set all input color properties together", OFFSET(user_iall), AV_OPT_TYPE_INT, { .i64 = CS_UNSPECIFIED }, CS_UNSPECIFIED, CS_NB - 1, FLAGS, .unit = "all"

[FFmpeg-devel] [PATCH] avcodec/d3d12va_encode: add max_frame_size option (PR #20287)

2025-08-19 Thread Tong Wu via ffmpeg-devel
LAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM) static const AVOption d3d12va_encode_hevc_options[] = { HW_BASE_ENCODE_COMMON_OPTIONS, +D3D12VA_ENCODE_COMMON_OPTIONS, D3D12VA_ENCODE_RC_OPTIONS, { "qp", "Constant QP (for P-frames; scaled by qfactor/qoffset for I/B)", -- 2.49.1

Re: [FFmpeg-devel] Patches to add libomt OpenMediaTransport support to FFmpeg

2025-08-19 Thread Jacob Lifshay via ffmpeg-devel
On August 19, 2025 1:45:01 AM PDT, ffmpeg--- via ffmpeg-devel wrote: > We have have already completed implementation of this protocol into FFMPEG 7 > and I enclose patches to add this to the current FFmpeg origin/master. > > > If the .eml patches dont make it through the

Re: [FFmpeg-devel] FFmpeg 8.0 Release

2025-08-19 Thread Michael Niedermayer via ffmpeg-devel
orgejo/CODEOWNERS and MAINTAINERS thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I have never wished to cater to the crowd; for what I know they do not approve, and what they approve I do not know. -- Epicurus signature.asc Description: PGP signature _

Re: [FFmpeg-devel] FFmpeg 8.0 Release

2025-08-19 Thread Michael Niedermayer via ffmpeg-devel
blem). On any real computer, always possible as a real computer has a finite number of states N, and will either halt in less than N cycles or never halt. signature.asc Description: PGP signature _______ ffmpeg-devel mailing list [email protected] h

[FFmpeg-devel] FFmpeg 8.0 Name

2025-08-19 Thread Michael Niedermayer via ffmpeg-devel
your dictator signature.asc Description: PGP signature ___ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject

Re: [FFmpeg-devel] FFmpeg 8.0 Release

2025-08-19 Thread Michael Niedermayer via ffmpeg-devel
ptotically faster algorithms should always be preferred if you have asymptotical amounts of data signature.asc Description: PGP signature _______________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe,

[FFmpeg-devel] [PATCH] forgejo/CODEOWNERS: add myself (PR #20289)

2025-08-19 Thread Jacob Lifshay via ffmpeg-devel
format/mccenc.* @programmerjake libavformat/pp_bnk.* @zane libavformat/scd.* @zane @@ -102,3 +110,7 @@ doc/.* @GyanD # == .*d3d12va.* @jianhuaw .*vulkan.* @lynne + +# tests +# = +tests/ref/fate/sub-mcc.* @programmerjake -- 2.49.1 _______

Re: [FFmpeg-devel] FFmpeg 8.0 Name

2025-08-19 Thread Jacob Lifshay via ffmpeg-devel
On August 19, 2025 2:27:12 PM PDT, Michael Niedermayer via ffmpeg-devel wrote: > Hi all > > what name should we give 8.0 ? IDK if it's a very good suggestion, but Hachi? It's both the Japanese number 8, as well as a common nickname. There's a famously loyal do

[FFmpeg-devel] [PATCH v2] libavfilter/vf_remap_opencl: make kernel handle subsampled chroma

2025-09-05 Thread Matthias Welwarsky via ffmpeg-devel
++; + +CL_SET_KERNEL_ARG(ctx->kernel, kernel_arg, cl_int4, &(ctx->plane[plane].swizzle)); +kernel_arg++; + err = ff_opencl_filter_work_size_from_image(avctx, global_work, output, plane, 0); if (err < 0) -- 2.51.0 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-09-06 Thread Leon Grutters via ffmpeg-devel
On 2025-09-05 17:16:02+0200, Rémi Denis-Courmont via ffmpeg-devel wrote: Doesn't this ML have a plain text policy? I suppose that this is a problem with FFFjo rather than OP, but still. The mail you're replying to seemingly wasn't sent to the ML, but (probably) only you.

[FFmpeg-devel] [PATCH] vc1_parser: Reset unesc_index after extracting header with complete frames (PR #20445)

2025-09-05 Thread DE-AI via ffmpeg-devel
s, avctx, unesc_buffer, unesc_index); +unesc_index = 0; break; } if (unesc_index >= UNESCAPED_THRESHOLD && !start_code_found) { -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscri

[FFmpeg-devel] [PATCH] avcodec/decode: treat orientation 1 as valid displaymatrix (PR #20447)

2025-09-05 Thread Leo Izen via ffmpeg-devel
ROR_INVALIDDATA; ret = ff_frame_new_side_data(avctx, frame, AV_FRAME_DATA_DISPLAYMATRIX, sizeof(int32_t) * 9, &sd); if (ret < 0) { -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/mjpegdec: ignore APPx stubs unless AV_EF_EXPLODE is set (PR #20422)

2025-09-04 Thread Ramiro Polla via ffmpeg-devel
out; } + if (8 * len > get_bits_left(&s->gb)) return AVERROR_INVALIDDATA; id = get_bits_long(&s->gb, 32); -len -= 6; +len -= 4; if (s->avctx->debug & FF_DEBUG_STARTCODE) av_log(s->avctx, AV_LOG_DEBUG, "APPx (%s / %8X) len=%d\n", -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] configure: remove openssl version check for whip (PR #20452)

2025-09-05 Thread Jack Lau via ffmpeg-devel
if enabled gcrypt; then GCRYPT_CONFIG="${cross_prefix}libgcrypt-config" if "${GCRYPT_CONFIG}" --version > /dev/null 2>&1; then -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] Add Windows.Graphics.Capture based video source filter (PR #20455)

2025-09-06 Thread Timo Rothenpieler via ffmpeg-devel
PR #20455 opened by Timo Rothenpieler (BtbN) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20455 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20455.patch Captures windows and monitors with the respective WinRt API. The filter itself is written in C++, since interacting with WinRt with

[FFmpeg-devel] [PATCH] configure: Improve the check for schannel DTLS constants (PR #20444)

2025-09-07 Thread Martin Storsjö via ffmpeg-devel
IN32 makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo enabled makeinfo \ -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] libavfilter/vf_remap_opencl: make kernel handle subsampled chroma

2025-09-07 Thread Matthias Welwarsky via ffmpeg-devel
rnel_arg, cl_float4, &(ctx- >plane[plane].scale)); +kernel_arg++; + +CL_SET_KERNEL_ARG(ctx->kernel, kernel_arg, cl_int4, &(ctx- >plane[plane].swizzle)); +kernel_arg++; + err = ff_opencl_filter_work_size_from_image(avctx, global_work,

[FFmpeg-devel] [PATCH] avformat/whip: make time measure more precise (PR #20391)

2025-09-01 Thread Jack Lau via ffmpeg-devel
init:%d,offer:%d,answer:%d,udp:%d,ice:%d,dtls:%d,srtp:%d)\n", -whip->state, buffer_size, max_packet_size, ELAPSED(whip->whip_starttime, av_gettime()), + "elapsed=%.2fms(init:%.2f,offer:%.2f,answer:%.2f,udp:%.2f,ice:%.2f,dtls:%.2f,srtp:%.2f)\n", +whip->state, buffer_size, max_packet_size, ELAPSED(whip->whip_starttime, av_gettime_relative()), ELAPSED(whip->whip_starttime, whip->whip_init_time), ELAPSED(whip->whip_init_time, whip->whip_offer_time), ELAPSED(whip->whip_offer_time, whip->whip_answer_time), -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avformat/movenc: remove mvex from final mp4 in hybrid_fragmented mode (PR #20385)

2025-09-01 Thread Zhao Zhili via ffmpeg-devel
ata/lavf/lavf.mov_hybrid_frag +358436 tests/data/lavf/lavf.mov_hybrid_frag tests/data/lavf/lavf.mov_hybrid_frag CRC=0xbb2b949b -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avfilter/x86/vf_colordetect: fix alpha detect tail handling (PR #20387)

2025-09-01 Thread Niklas Haas via ffmpeg-devel
ht, \ + p, q, k); \ } #if HAVE_X86ASM -- 2.49.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: support global_quality without qscale (PR #20382)

2025-08-31 Thread Zhao Zhili via ffmpeg-devel
lity = FFMIN(avctx->global_quality / factor, 1.0f); CFNumberRef quality_num = CFNumberCreate(kCFAllocatorDefault, kCFNumberFloat32Type, &quality); -- 2.49.1 ____

[FFmpeg-devel] [PATCH] .forgejo/CODEOWNERS: add myself for various files (PR #20380)

2025-08-31 Thread Zhao Zhili via ffmpeg-devel
til/hwcontext_mediacodec.* @quink libavutil/iamf.* @jamrial libavutil/integer.* @michaelni libavutil/lfg.* @michaelni -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] [PATCH] lavc/codec_desc: add lossless flags for hevc and av1 (PR #20378)

2025-08-31 Thread Gyan Doshi via ffmpeg-devel
= AV_CODEC_PROP_LOSSY, +.props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_LOSSLESS, .profiles = NULL_IF_CONFIG_SMALL(ff_av1_profiles), }, { -- 2.49.1 ___________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] avcodec/aarch64/vvc: optimised alf_classify function 8/10/12bit of vvc codec for aarch64

2025-08-31 Thread George Zaguri via ffmpeg-devel
and I can take another look at it. In that form you don't > need to send the patches to the mailing list at all, and only interact > with the review through the Forgejo tool. > > // Martin > > _______ ffmpeg-devel mailing list -- ffmpe

[FFmpeg-devel] Re: [PATCH] avformat/wavdec: support loop_start and loop_end from 'smpl' chunk

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
On Sat, Aug 30, 2025 at 04:27:25PM -0700, Spencer Alves via ffmpeg-devel wrote: > The 'smpl' chunk is used for sampling music synthesizers, and includes > things like the pitch of the sample and how to loop it. This exposes the > loop points as "loop_start" and "

[FFmpeg-devel] Re: [PATCH] fftools/ffmpeg: fix gracefully shutdown

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
Hi Patrick On Fri, Aug 29, 2025 at 02:58:16AM +0800, Patrick Wang via ffmpeg-devel wrote: > d119ae2fd82a494d9430ff4d4fc262961a68c598 removed the loop-breaking condition > received_sigterm. > Thus, signals no longer gracefully shutdown ffmpeg. > > Fixes: #10834 > > Signed

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

2025-09-03 Thread Michael Niedermayer via ffmpeg-devel
On Wed, Aug 27, 2025 at 01:06:42PM +0200, Maryla Ustarroz via ffmpeg-devel wrote: > On Mon, Aug 11, 2025 at 2:01 PM Maryla Ustarroz wrote: > > > > On Mon, Aug 11, 2025 at 1:57 PM Maryla Ustarroz-Calonge > > wrote: > > > > > > Signed-off-by: Maryla U

[FFmpeg-devel] [PATCH] cehckasm: sw_ops: Avoid division by zero (PR #20397)

2025-09-03 Thread Martin Storsjö via ffmpeg-devel
2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-09-02 Thread Drew Dunne via ffmpeg-devel
Sure, I can submit it there. Is there documentation on how to submit a 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 v

[FFmpeg-devel] [PATCH] swscale/ops: fix build with msvc (PR #20395)

2025-09-02 Thread Zhao Zhili via ffmpeg-devel
, W} }, \ ); #define DECL_CONVERT(EXT, FROM, TO) \ -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

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

2025-09-02 Thread Michael Niedermayer via ffmpeg-devel
On Tue, Sep 02, 2025 at 10:39:12AM -0300, James Almer via ffmpeg-devel wrote: > On 9/2/2025 10:30 AM, Michael Niedermayer via ffmpeg-devel wrote: > > On Wed, Aug 27, 2025 at 01:06:42PM +0200, Maryla Ustarroz via ffmpeg-devel > > wrote: > > > On Mon, Aug 11, 2025 at 2:01 P

[FFmpeg-devel] [PATCH] avcodec/pcm: use stricter conditional expressions for compilation (PR #20394)

2025-09-02 Thread Zhao Zhili via ffmpeg-devel
to_ulaw, ulaw2linear, 0xff); } #endif -#if CONFIG_PCM_VIDC_DECODER || CONFIG_PCM_VIDC_ENCODER +#if CONFIG_PCM_VIDC_ENCODER static void pcm_vidc_tableinit(void) { build_xlaw_table(linear_to_vidc, vidc2linear, 0xff); -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

[FFmpeg-devel] Re: [PATCH] doc/examples/vaapi_encode: fix invalid check on fwrite (PR #20396)

2025-09-03 Thread Zhao Zhili via ffmpeg-devel
> On Sep 3, 2025, at 11:30, mypopy--- via ffmpeg-devel > wrote: > > On Tue, Sep 2, 2025 at 6:13 PM Zhao Zhili via ffmpeg-devel > mailto:[email protected]>> wrote: >> >> PR #20396 opened by Zhao Zhili (quink) >> URL: https://code.ffmpeg.org/FFmpeg

[FFmpeg-devel] [PATCH] vp9: Add 8bpc intra prediction AVX2 asm (PR #20386)

2025-09-01 Thread Henrik Gramner via ffmpeg-devel
gnr m2, m3, 15 +add dstq, r3 +pslldq m3, 1 +decr2d +jg .loop +RET +%endif + ; FIXME 127, 128, 129 ? -- 2.49.1 ___ ffmpeg-devel mailing list -- [email protected] To unsubscr

[FFmpeg-devel] Re: [PATCH] avformat/demux: avoid unconditional ID3v2 tag consumption

2025-09-03 Thread Kyle Swanson via ffmpeg-devel
Hi, On Tue, Sep 2, 2025 at 9:41 AM Kyle Swanson wrote: > > On Wed, Aug 20, 2025 at 2:09 PM Kyle Swanson wrote: > > > > Hi, > > > > On Wed, Jul 23, 2025 at 10:51 AM Nil Fons Miret via ffmpeg-devel > > wrote: > > > Pinging this patch from a couple we

[FFmpeg-devel] [PATCH] Fix alpha_modes deprecation warning in ffplay (PR #20440)

2025-09-04 Thread Niklas Haas via ffmpeg-devel
}, -{ "alpha_modes", "set the supported alpha modes", OFFSET(alpha_modes), AV_OPT_TYPE_BINARY, .flags = FLAGS | AV_OPT_FLAG_DEPRECATED }, #endif { "pixel_formats", "array of supported pixel formats", OFFSET(pixel_formats), -- 2.49.1 ______

[FFmpeg-devel] [PATCH] avformat/whip: fix SDP ICE candidates parsing (PR #20423)

2025-09-04 Thread Jack Lau via ffmpeg-devel
from %s\n", ret, i, line, whip->sdp_answer); ret = AVERROR(EIO); -- 2.49.1 _______ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]

<    22   23   24   25   26   27   28   29   30   31   >